* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Azul oscuro como en la presentación */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2a4a6b 50%, #1a365d 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-image-placeholder {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 20px;
    margin: 40px auto;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
}

.hero-image-placeholder img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Investment Process Section - Fondo claro */
.investment-process {
    padding: 100px 0;
    background: #f7fafc;
}

.investment-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a365d;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-left: 4px solid #2a4a6b;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.process-number {
    background: linear-gradient(135deg, #1a365d, #2a4a6b);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1a365d;
}

.process-card p {
    color: #4a5568;
}

.image-placeholder {
    background: #edf2f7;
    border: none;
    padding: 0;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Tourist Attractions Section - Fondo blanco */
.attractions {
    padding: 100px 0;
    background: white;
}

.attractions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a365d;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 60px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.attraction-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.attraction-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-left: 4px solid #2a4a6b;
}

.attraction-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a365d;
    padding: 0 25px;
}

.attraction-card ul {
    list-style: none;
    padding: 0 25px 25px;
}

.attraction-card li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 20px;
    color: #4a5568;
}

.attraction-card li:before {
    content: "✓";
    color: #2a4a6b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.distance {
    background: linear-gradient(135deg, #2a4a6b, #1a365d);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin: 0 25px 15px;
    box-shadow: 0 2px 10px rgba(26, 54, 93, 0.3);
}

.attraction-content {
    padding: 25px;
}

.image-placeholder.large {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf2f7;
    border: 2px dashed #a0aec0;
    color: #718096;
}

/* CTA Section - Azul oscuro como el hero */
.cta {
    background: linear-gradient(135deg, #1a365d, #2a4a6b);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #2a4a6b, #1a365d);
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #1a365d, #2a4a6b);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a365d;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

/* About Us Section */
.about-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a365d, #2a4a6b, #1a365d);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 30px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2a4a6b, #1a365d);
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
    text-align: justify;
}

.about-features {
    display: grid;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.15);
}

.feature-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
    background: linear-gradient(135deg, #2a4a6b, #1a365d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature h3 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(42, 74, 107, 0.1));
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Rincón del Cielo Section */
.rincon-del-cielo {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.rincon-del-cielo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2a4a6b, #1a365d, #2a4a6b);
}

.rincon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rincon-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.rincon-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.rincon-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1), rgba(42, 74, 107, 0.1));
    z-index: 1;
}

.rincon-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    min-height: 400px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rincon-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.rincon-text h2 {
    font-size: 3rem;
    color: #1a365d;
    margin-bottom: 10px;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rincon-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2a4a6b, #1a365d);
    border-radius: 2px;
}

.location-subtitle {
    font-size: 1.2rem;
    color: #2a4a6b;
    margin-bottom: 30px;
    font-weight: 600;
    opacity: 0.9;
}

.rincon-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
    text-align: justify;
}

.rincon-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.rincon-features .feature {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #2a4a6b;
}

.rincon-features .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.2);
}

.rincon-features .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.rincon-features .feature h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 600;
}

.rincon-features .feature p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Project Details Section */
.project-details {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2a4a6b 100%);
    color: white;
    position: relative;
}

.project-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="40" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.project-details .container {
    position: relative;
    z-index: 1;
}

.project-details h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.details-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.details-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.details-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    min-height: 500px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.details-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.details-info {
    padding: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.detail-number {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #1a365d;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
    flex-shrink: 0;
}

.detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffd700;
    font-weight: 600;
}

.detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.detail-content strong {
    color: #ffd700;
    font-weight: 700;
}

.detail-content em {
    color: rgba(255,255,255,0.7);
    font-style: italic;
}

.project-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,215,0,0.3);
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(255,215,0,0.1);
    border-color: #ffd700;
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.highlight-text h4 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 5px;
    font-weight: 600;
}

.highlight-text p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 1rem;
}

.project-note {
    margin-top: 30px;
    padding: 15px;
    background: rgba(255,215,0,0.1);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.project-note p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Project Features Section */
.project-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    position: relative;
}

.project-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #ffed4a, #ffd700);
}

.project-features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #1a365d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    position: relative;
}

.project-features h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4a);
    border-radius: 2px;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    transform: rotate(1deg);
    transition: transform 0.3s ease;
}

.features-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.features-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 74, 0.1));
    z-index: 1;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    min-height: 500px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.features-info {
    padding: 20px;
}

.feature-category {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.08);
    border-left: 4px solid #ffd700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.12);
}

.feature-category h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f7fafc;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.feature-item:hover {
    background: #edf2f7;
}

.feature-item.full-width {
    justify-content: flex-start;
}

.feature-label {
    font-weight: 600;
    color: #1a365d;
    font-size: 1.1rem;
}

.feature-value {
    font-weight: 700;
    color: #2a4a6b;
    font-size: 1.1rem;
}

.feature-description {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.feature-highlight .feature-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.feature-highlight .feature-text h4 {
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-highlight .feature-text p {
    color: #2a4a6b;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-disclaimer {
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #1a365d, #2a4a6b);
    color: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

.project-disclaimer p {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Location Map Section */
.location-map {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.location-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a365d, #2a4a6b, #ffd700);
}

.location-map h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.location-map .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #2a4a6b;
    margin-bottom: 50px;
    font-weight: 500;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: stretch;
}

.map-info h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 30px;
    font-weight: 600;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-icon {
    font-size: 1.8rem;
    min-width: 40px;
    text-align: center;
}

.location-text h4 {
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 5px;
    font-weight: 600;
}

.location-text p {
    color: #2a4a6b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.map-embed {
    background: white;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-embed iframe {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.highlight-item .highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-item p {
    color: #2a4a6b;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Image Modal/Lightbox for Zoom Effect */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.modal-close:hover {
    color: #ffd700;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        transform: scale(0.5);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustments for image modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image-placeholder {
        max-width: 100%;
        padding: 15px;
        margin: 30px 0;
    }
    
    .hero-image-placeholder img {
        max-height: 250px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-description {
        text-align: center;
    }
    
    .about-features {
        gap: 20px;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-card .image-placeholder {
        min-height: 150px;
    }
    
    .process-card .image-placeholder img {
        height: 150px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .attraction-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .attraction-card .image-placeholder {
        min-height: 180px;
    }
    
    .attraction-card .image-placeholder img {
        height: 180px;
    }
    
    .attraction-card.featured .image-placeholder.large {
        min-height: 200px;
    }
    
    .attraction-card.featured .image-placeholder.large img {
        height: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 250px;
    }
    
    .rincon-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .rincon-image {
        transform: rotate(0deg);
        order: 1;
    }
    
    .rincon-text {
        order: 2;
    }
    
    .rincon-text h2 {
        font-size: 2.5rem;
    }
    
    .rincon-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .rincon-description {
        text-align: center;
    }
    
    .rincon-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rincon-features .feature {
        text-align: center;
        padding: 30px;
    }
    
    .project-details {
        padding: 60px 0;
    }
    
    .project-details h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    
    .details-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .details-image {
        transform: perspective(1000px) rotateY(0deg);
        order: 1;
    }
    
    .details-info {
        order: 2;
        padding: 10px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px;
    }
    
    .detail-item:hover {
        transform: translateY(-5px);
    }
    
    .detail-number {
        align-self: center;
    }
    
    .project-highlights {
        gap: 15px;
    }
    
    .highlight {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .highlight-icon {
        font-size: 2rem;
    }
    
    .project-features {
        padding: 60px 0;
    }
    
    .project-features h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-image {
        transform: rotate(0deg);
        order: 1;
    }
    
    .features-info {
        order: 2;
        padding: 10px;
    }
    
    .feature-category {
        margin-bottom: 30px;
        padding: 25px;
    }
    
    .feature-category h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }
    
    .feature-item.full-width {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .feature-highlight .feature-icon {
        font-size: 2rem;
    }
    
    /* Location Map Mobile Styles */
    .location-map h2 {
        font-size: 2rem;
    }
    
    .location-map .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-details {
        gap: 20px;
    }
    
    .location-item {
        padding: 15px;
        gap: 12px;
    }
    
    .location-icon {
        font-size: 1.5rem;
        min-width: 35px;
    }
    
    .location-text h4 {
        font-size: 1rem;
    }
    
    .location-text p {
        font-size: 0.9rem;
    }
    
    .map-embed {
        padding: 8px;
    }
    
    .map-embed iframe {
        min-height: 300px;
    }
    
    .map-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-item {
        padding: 25px 15px;
    }
    
    .highlight-item .highlight-icon {
        font-size: 2rem;
    }
    
    .highlight-item h4 {
        font-size: 1.1rem;
    }
    
    /* Project Benefits Mobile Styles */
    .project-benefits {
        padding: 60px 0;
    }
    
    .project-benefits h2 {
        font-size: 2rem;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-image {
        order: 1;
        padding: 10px;
    }
    
    .benefits-image img {
        min-height: 300px;
    }
    
    .benefits-info {
        order: 2;
        padding: 15px;
    }
    
    .benefit-category {
        margin-bottom: 30px;
    }
    
    .benefit-category h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .benefit-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .benefit-point {
        font-size: 0.95rem;
        text-align: left;
        padding-left: 20px;
    }
    
    .benefits-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .benefit-highlight {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .benefit-highlight .benefit-icon {
        font-size: 1.8rem;
        min-width: auto;
    }
    
    .benefit-highlight .benefit-text h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .benefit-highlight .benefit-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-image-placeholder {
        padding: 10px;
        margin: 20px 0;
    }
    
    .hero-image-placeholder img {
        max-height: 200px;
    }
    
    .about-us {
        padding: 60px 0;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .feature {
        padding: 15px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .investment-process, .attractions {
        padding: 60px 0;
    }
    
    .process-card, .attraction-card {
        margin-bottom: 20px;
    }
    
    .process-card .image-placeholder {
        min-height: 120px;
    }
    
    .process-card .image-placeholder img {
        height: 120px;
    }
    
    .attraction-card .image-placeholder {
        min-height: 150px;
    }
    
    .attraction-card .image-placeholder img {
        height: 150px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .rincon-del-cielo {
        padding: 60px 0;
    }
    
    .rincon-text h2 {
        font-size: 2rem;
    }
    
    .rincon-description {
        font-size: 1rem;
    }
    
    .rincon-features .feature {
        padding: 25px;
    }
    
    .rincon-features .feature-icon {
        font-size: 2rem;
    }
    
    .rincon-image img {
        min-height: 250px;
    }
    
    .project-details h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .detail-item {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .detail-content h3 {
        font-size: 1.5rem;
    }
    
    .detail-content p {
        font-size: 1rem;
    }
    
    .highlight {
        padding: 20px;
    }
    
    .highlight-icon {
        font-size: 1.8rem;
    }
    
    .highlight-text h4 {
        font-size: 1.1rem;
    }
    
    .details-image img {
        min-height: 300px;
    }
    
    .project-features h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .feature-category {
        margin-bottom: 25px;
        padding: 20px;
    }
    
    .feature-category h3 {
        font-size: 1.3rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-label,
    .feature-value {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .feature-highlight {
        padding: 20px;
    }
    
    .feature-highlight .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-highlight .feature-text h4 {
        font-size: 1rem;
    }
    
    .feature-highlight .feature-text p {
        font-size: 0.8rem;
    }
    
    .project-disclaimer {
        margin-top: 30px;
        padding: 15px;
    }
    
    .project-disclaimer p {
        font-size: 1rem;
    }
    
    /* Project Benefits Small Mobile Styles */
    .project-benefits {
        padding: 50px 0;
    }
    
    .project-benefits h2 {
        font-size: 1.8rem;
    }
    
    .benefits-content {
        gap: 25px;
    }
    
    .benefits-image {
        padding: 8px;
    }
    
    .benefits-image img {
        min-height: 250px;
    }
    
    .benefits-info {
        padding: 10px;
    }
    
    .benefit-category {
        margin-bottom: 25px;
    }
    
    .benefit-category h3 {
        font-size: 1.2rem;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
    
    .benefit-point {
        font-size: 0.9rem;
        padding-left: 15px;
    }
    
    .benefits-highlights {
        margin-top: 30px;
        gap: 12px;
    }
    
    .benefit-highlight {
        padding: 12px;
        gap: 10px;
    }
    
    .benefit-highlight .benefit-icon {
        font-size: 1.3rem;
        min-width: 35px;
    }
    
    .benefit-highlight .benefit-text h4 {
        font-size: 0.95rem;
    }
    
    .benefit-highlight .benefit-text p {
        font-size: 0.8rem;
    }
}

/* Estilos para pantallas muy grandes */
@media (min-width: 1400px) {
    .hero-image-placeholder img {
        max-height: 500px;
    }
    
    .process-card .image-placeholder {
        min-height: 220px;
    }
    
    .process-card .image-placeholder img {
        height: 220px;
    }
    
    .attraction-card .image-placeholder {
        min-height: 250px;
    }
    
    .attraction-card .image-placeholder img {
        height: 250px;
    }
    
    .attraction-card.featured .image-placeholder.large {
        min-height: 350px;
    }
    
    .attraction-card.featured .image-placeholder.large img {
        height: 350px;
    }
}

/* Estilos para pantallas muy pequeñas */
@media (max-width: 320px) {
    .hero-image-placeholder {
        padding: 8px;
        margin: 15px 0;
    }
    
    .hero-image-placeholder img {
        max-height: 150px;
    }
    
    .about-us {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
    
    .feature {
        padding: 15px;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .process-card .image-placeholder {
        min-height: 100px;
    }
    
    .process-card .image-placeholder img {
        height: 100px;
    }
    
    .attraction-card .image-placeholder {
        min-height: 120px;
    }
    
    .attraction-card .image-placeholder img {
        height: 120px;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Mejoras para orientación horizontal en móviles */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-image-placeholder img {
        max-height: 180px;
    }
    
    .process-card .image-placeholder {
        min-height: 120px;
    }
    
    .process-card .image-placeholder img {
        height: 120px;
    }
}

/* Animaciones adicionales */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-card, .attraction-card {
    animation: fadeIn 0.6s ease forwards;
}

.process-card:nth-child(even) {
    animation-delay: 0.1s;
}

.process-card:nth-child(odd) {
    animation-delay: 0.2s;
}

/* Enhanced image container styling */
.rincon-image, .details-image, .features-image {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rincon-image img, .details-image img, .features-image img {
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Project Benefits Section */
.project-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2a4a6b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.project-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #ffed4a, #ffd700);
}

.project-benefits::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.project-benefits .container {
    position: relative;
    z-index: 2;
}

.project-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.project-benefits h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4a);
    margin: 20px auto;
    border-radius: 2px;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.benefits-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.benefits-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 74, 0.1));
    z-index: 1;
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    min-height: 500px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.benefits-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.benefits-info {
    padding: 20px;
}

.benefit-category {
    margin-bottom: 40px;
}

.benefit-category h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.benefit-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-point {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 20px;
}

.benefit-point::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
}

.benefits-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-highlight:hover {
    transform: translateY(-3px);
    background: rgba(255, 215, 0, 0.2);
}

.benefit-highlight .benefit-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.benefit-highlight .benefit-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
    color: white;
}

.benefit-highlight .benefit-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Form Section */
.contact-form {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a365d;
    font-weight: 600;
}

.contact-form .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1a365d;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1a365d;
}

.contact-text p {
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a365d;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 2px;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: #1a365d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background: #2a4a6b;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-form h2 {
        font-size: 2rem;
    }
    
    .contact-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 60px 0;
    }
    
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 8px 15px;
    border: none;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #666;
}

.lang-btn:hover {
    background: rgba(26, 54, 93, 0.1);
    color: #1a365d;
}

.lang-btn.active {
    background: #1a365d;
    color: white;
}

@media (max-width: 768px) {
    .language-selector {
        top: 10px;
        right: 10px;
        padding: 8px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
