/* Font Faces */
@font-face {
    font-family: 'Work Sans';
    src: url('./Tipografias/Work Sans/WorkSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./Tipografias/Work Sans/WorkSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./Tipografias/Work Sans/WorkSans-Medium(1).ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('./Tipografias/Work Sans/WorkSans-SemiBold(1).ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('./Tipografias/Lora/Lora-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('./Tipografias/Lora/Lora-Italic(1).ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('./Tipografias/Lora/Lora-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'La Belle Aurore';
    src: url('./Tipografias/La Belle Aurore/LaBelleAurore-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from brand guidelines */
    --color-white: #FFFFFF;
    --color-niebla: #EBE7E4;
    --color-piedra: #D1CEC9;
    --color-tierra: #B1A086;
    --color-agua: #4D5C61;
    --color-verde: #A59C7F;
    --color-negro: #000000;
    
    /* Typography */
    --font-primary: 'Work Sans', sans-serif;
    --font-secondary: 'Lora', serif;
    --font-accent: 'La Belle Aurore', cursive;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;
    
    /* Animations */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-natural: cubic-bezier(0.4, 0.0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-agua);
    background-color: var(--color-white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-agua);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

h4 {
    font-size: 1.3rem;
    font-weight: 500;
}

p {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-agua);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    text-align: center;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--color-agua);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(77, 92, 97, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-negro);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(77, 92, 97, 0.4);
}

/* Enhanced visibility for hero section */
.hero .btn-primary {
    background-color: var(--color-agua);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero .btn-primary:hover {
    background-color: var(--color-tierra);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-agua);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Override for hero section buttons */
.hero .btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-agua);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-tierra);
    margin: 0 auto 2rem;
}

/* Navigation */
.navbar {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(77, 92, 97, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-agua);
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-tierra);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-agua);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(rgba(77, 92, 97, 0.8), rgba(77, 92, 97, 0.8)),
        url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(177, 160, 134, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(77, 92, 97, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}


.hero-content h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-niebla);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.transparency-highlight {
    background: linear-gradient(135deg, var(--color-niebla) 0%, var(--color-piedra) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--color-tierra);
    position: relative;
}

.transparency-highlight::before {
    content: '💎';
    position: absolute;
    top: -10px;
    left: 20px;
    background-color: var(--color-white);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(77, 92, 97, 0.1);
}

.transparency-highlight p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--color-agua);
    line-height: 1.7;
}

.transparency-highlight strong {
    color: var(--color-agua);
    font-weight: 600;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-niebla);
    border-radius: 8px;
}

.stat h3 {
    font-size: 2rem;
    color: var(--color-agua);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    color: var(--color-agua);
    margin-bottom: 0;
}

/* Mission Section */
.mission {
    padding: var(--section-padding);
    background-color: var(--color-niebla);
}

.mission-content {
    text-align: center;
}

.mission-content h2 {
    margin-bottom: 2rem;
}

.mission-text {
    font-size: 1.3rem;
    color: var(--color-agua);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.point {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(77, 92, 97, 0.1);
    transition: transform 0.3s ease;
}

.point:hover {
    transform: translateY(-5px);
}

.point-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-agua);
}

.point-icon svg {
    width: 36px;
    height: 36px;
}

.point h4 {
    margin-bottom: 1rem;
    color: var(--color-agua);
}

.point p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--color-agua);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: linear-gradient(rgba(209, 206, 201, 0.95), rgba(209, 206, 201, 0.95)), url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1926&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-agua);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-niebla);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(77, 92, 97, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-agua);
    background: linear-gradient(135deg, rgba(77, 92, 97, 0.1) 0%, rgba(177, 160, 134, 0.1) 100%);
    border-radius: 20px;
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-card h3 {
    color: var(--color-agua);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-card h4 {
    color: var(--color-tierra);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: var(--color-agua);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Projects Section */
.projects {
    padding: var(--section-padding);
    background: 
        linear-gradient(rgba(235, 231, 228, 0.95), rgba(235, 231, 228, 0.95)),
        url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2073&q=80') center/cover no-repeat;
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.project-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(77, 92, 97, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(77, 92, 97, 0.15);
}

.project-header {
    margin-bottom: 1.5rem;
}

.project-header h3 {
    color: var(--color-agua);
    margin-bottom: 0.5rem;
}

.project-type {
    background-color: var(--color-tierra);
    color: var(--color-white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-content p {
    margin-bottom: 1rem;
    color: var(--color-agua);
}

.project-benefit {
    background-color: var(--color-niebla);
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid var(--color-tierra);
    font-style: italic;
    margin-bottom: 0 !important;
}

.project-details {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.detail-item {
    background-color: var(--color-niebla);
    color: var(--color-agua);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-primary);
}

.detail-item:first-child {
    background-color: var(--color-agua);
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.roi-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--color-white);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.roi-badge.expected {
    background: linear-gradient(135deg, var(--color-tierra) 0%, var(--color-verde) 100%);
    box-shadow: 0 2px 8px rgba(177, 160, 134, 0.3);
}

/* Project Funding */
.project-funding {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background-color: var(--color-niebla);
    border-radius: 8px;
    border-left: 4px solid var(--color-tierra);
}

.funding-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.funding-label {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--color-agua);
    font-size: 1rem;
}

.funding-percentage {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-agua);
    font-size: 1.1rem;
}

.funding-bar {
    height: 8px;
    background-color: rgba(77, 92, 97, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.funding-progress {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.funding-progress.completed {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.funding-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.funding-status {
    font-size: 0.9rem;
    color: var(--color-verde);
    font-weight: 500;
    margin-bottom: 0;
    font-family: var(--font-primary);
}

.investors-count {
    font-size: 0.85rem;
    color: var(--color-agua);
    font-weight: 600;
    background-color: rgba(77, 92, 97, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-family: var(--font-primary);
}

/* Project Sections */
.project-section {
    margin-bottom: 4rem;
}

.project-section-title {
    font-size: 1.5rem;
    color: var(--color-agua);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

/* Project Status Badges */
.project-status {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 2px solid transparent;
    transition: all 0.3s var(--ease-out);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 100px;
    text-align: center;
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.status-badge:hover::before {
    left: 100%;
}

.status-badge.completed {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.status-badge.completed:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.status-badge.in-progress {
    background: linear-gradient(135deg, var(--color-agua) 0%, var(--color-tierra) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(77, 92, 97, 0.4);
    animation: pulse 2s infinite;
}

.status-badge.in-progress:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 92, 97, 0.5);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(77, 92, 97, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(77, 92, 97, 0.6);
    }
}

/* Project Cards Variants */
.project-card {
    position: relative;
}

.project-completed {
    border: 2px solid #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}


.project-in-progress {
    border: 2px solid var(--color-tierra);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: 
        linear-gradient(rgba(77, 92, 97, 0.95), rgba(77, 92, 97, 0.95)),
        url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2058&q=80') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--color-white);
}

.testimonials .divider {
    background-color: var(--color-tierra);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    overflow: hidden;
    border-radius: 12px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.testimonial-content {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 4rem;
    color: var(--color-tierra);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.testimonial-text {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-agua);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--color-agua);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-author span {
    color: var(--color-tierra);
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-nav {
    background-color: var(--color-white);
    border: none;
    color: var(--color-agua);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-nav:hover {
    background-color: var(--color-tierra);
    color: var(--color-white);
    transform: translateY(-2px);
}

.testimonial-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.testimonial-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--color-tierra);
    transform: scale(1.2);
}

/* Background decoration */
.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(177, 160, 134, 0.1) 0%, rgba(177, 160, 134, 0.05) 100%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(177, 160, 134, 0.1) 0%, rgba(177, 160, 134, 0.05) 100%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-container {
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--color-agua);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    margin-bottom: 0.3rem;
    color: var(--color-agua);
}

.contact-item a {
    color: var(--color-tierra);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-agua);
}

.contact-note {
    background-color: var(--color-niebla);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--color-niebla);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--color-agua);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid transparent;
    border-radius: 5px;
    background-color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-agua);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-tierra);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--color-agua);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: var(--color-niebla);
    margin-bottom: 0;
}

.footer-links h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-niebla);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-contact h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-contact p {
    color: var(--color-niebla);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(235, 231, 228, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-niebla);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: var(--color-white);
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s var(--ease-out);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, var(--color-agua) 0%, var(--color-verde) 100%);
    color: var(--color-white);
    padding: 2rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
}

.close {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    padding: 0.25rem;
    border-radius: 50%;
}

.close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    line-height: 1.7;
    color: var(--color-agua);
}

.modal-body h3 {
    color: var(--color-agua);
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-niebla);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.modal-body ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: none;
}

.modal-body li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

.modal-body li::before {
    content: "•";
    color: var(--color-tierra);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.modal-body strong {
    color: var(--color-agua);
    font-weight: 600;
}

/* Service card clickable styling */
.service-card.clickable {
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card.clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(77, 92, 97, 0.2);
}

.learn-more-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-tierra) 0%, var(--color-verde) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s var(--ease-out);
}

.service-card.clickable:hover .learn-more-indicator {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .mission-points {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .testimonials-container {
        max-width: 100%;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-navigation {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .investment-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .investment-option {
        padding: 1.5rem;
    }
    
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s var(--ease-natural), transform 1.2s var(--ease-natural);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-fade {
    opacity: 0;
    transition: opacity 1.4s var(--ease-smooth);
}

.scroll-animate-fade.animate-in {
    opacity: 1;
}

.scroll-animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1.3s var(--ease-natural), transform 1.3s var(--ease-natural);
}

.scroll-animate-slide-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1.3s var(--ease-natural), transform 1.3s var(--ease-natural);
}

.scroll-animate-slide-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.4s var(--ease-natural), transform 1.4s var(--ease-natural);
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations for grouped elements */
.stagger-animation .scroll-animate:nth-child(1) { transition-delay: 0.05s; }
.stagger-animation .scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.stagger-animation .scroll-animate:nth-child(3) { transition-delay: 0.15s; }
.stagger-animation .scroll-animate:nth-child(4) { transition-delay: 0.2s; }
.stagger-animation .scroll-animate:nth-child(5) { transition-delay: 0.25s; }
.stagger-animation .scroll-animate:nth-child(6) { transition-delay: 0.3s; }

/* Investment Solutions Section */
.investment-solutions {
    padding: var(--section-padding);
    background: linear-gradient(rgba(235, 231, 228, 0.95), rgba(235, 231, 228, 0.95)), url('https://images.unsplash.com/photo-1551836022-deb4988cc6c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1926&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-agua);
}

.investment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.investment-option {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(77, 92, 97, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.investment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(77, 92, 97, 0.15);
    border-color: var(--color-tierra);
}

.option-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-agua);
    background-color: rgba(77, 92, 97, 0.1);
    border-radius: 50%;
}

.option-icon svg {
    width: 32px;
    height: 32px;
}

.investment-option h4 {
    color: var(--color-agua);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.investment-option p {
    color: var(--color-agua);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.partners-info {
    background-color: var(--color-niebla);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--color-tierra);
}

.partners-info p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--color-agua);
}