/* =========================================
   CSS Variables & Theme Setup
   ========================================= */
:root {
    /* Primary Colors */
    --primary-color: #0D1B2A;
    /* Deep Blue */
    --primary-light: #1A365B;
    --primary-dark: #060D14;

    /* Secondary & Backgrounds */
    --secondary-color: #ffffff;
    /* White */
    --bg-light: #f8fafc;
    --bg-gray: #E5E7EB;

    /* Accents & UI */
    --accent-color: #c9a66b;
    /* Gold */
    --accent-hover: #b8955a;
    --whatsapp-color: #25d366;
    --whatsapp-hover: #1ebd5a;

    /* Typography Colors */
    --text-main: #334155;
    --text-light: #64748b;
    --text-heading: #0f172a;

    /* Google Branding */
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC05;
    --google-green: #34A853;
    --google-star: #fbaf08;

    /* Layout Variables */
    --container-max-width: 1200px;
    --header-height: 90px;
    /* Aumentado para acomodar logo más grande */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;

    /* Transitions & Shadows */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --box-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(16px, 1vw + 12px, 18px);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* =========================================
   Typography & Utilities
   ========================================= */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    gap: 8px;
    text-align: center;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
    border-radius: var(--border-radius-sm);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-md);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 166, 107, 0.7);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(201, 166, 107, 0);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 166, 107, 0);
        transform: scale(1);
    }
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(201, 166, 107, 0.4);
    animation: none;
    /* Stop pulsing on hover */
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: var(--secondary-color);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-md);
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo,
.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
    /* Mayor espaciado por el tamaño grande */
    color: var(--secondary-color);
    transition: color var(--transition-normal);
}

.logo-shield {
    height: 90px; /* Tamaño ligeramente aumentado */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); /* Mejorar contraste */
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-size: 1.8rem;
    /* Vertiqo con gran peso y tamaño */
    font-weight: 800;
    line-height: 1;
}

.logo-slogan {
    font-size: 0.75rem;
    /* Slogan mucho más pequeño / secundario */
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-top: 4px;
}

.navbar.scrolled .logo,
.navbar.scrolled .logo-container {
    color: var(--primary-color);
}

.navbar.scrolled .logo-title {
    color: var(--primary-color);
}

.navbar.scrolled .logo-slogan {
    color: var(--text-light);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
    padding: 8px 0;
}

.navbar.scrolled .nav-link {
    color: var(--text-heading);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--secondary-color);
    cursor: pointer;
}

.navbar.scrolled .menu-toggle {
    color: var(--primary-color);
}

/* =========================================
   Hero Section with Slider
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    color: var(--secondary-color);
    z-index: 10;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--accent-color);
}

.hero-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.hero-cert-badge i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--secondary-color);
    text-wrap: balance;
    max-width: 100%;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 600px;
    opacity: 0.9;
    text-wrap: balance;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Trust Bar
   ========================================= */
.trust-bar {
    background-color: var(--primary-color);
    padding: 40px 0;
    color: var(--secondary-color);
    position: relative;
    z-index: 10;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 250px;
}

.trust-item.cert-highlight {
    background-color: var(--primary-light);
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.trust-text h4 {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.trust-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   Services Section
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--secondary-color);
    padding: 30px 24px; /* Más compacto */
    border-radius: var(--border-radius-md); /* Menos exagerado */
    border: 1px solid var(--bg-gray);
    transition: all 0.4s ease;
}

.service-card h3 {
    font-size: 1.25rem; /* Más compacto */
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem; /* Más compacto */
}

/* Additional Services Section */
.additional-services {
    margin-top: 60px;
    text-align: center;
}

.additional-services-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.additional-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.additional-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-main);
    font-weight: 500;
    transition: all 0.3s ease;
}

.additional-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.additional-card:hover {
    background: var(--bg-gray);
}

/* =========================================
   Projects Section
   ========================================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Más angosto */
    gap: 20px; /* Menos espacio */
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    border-radius: var(--border-radius-md); /* Más pequeño */
    overflow: hidden;
    background-color: var(--secondary-color);
    box-shadow: var(--box-shadow-sm);
    transition: all 0.3s ease;
}

.project-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9; /* Más horizontal/compacto */
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.project-category {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.project-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================
   Work Process
   ========================================= */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    position: relative;
}

/* Connecting line (hidden on mobile) */
@media (min-width: 1024px) {
    .process-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 50px;
        right: 50px;
        height: 2px;
        background-color: var(--bg-gray);
        z-index: 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: 0.4s;
    }

    .process-steps.revealed::before {
        transform: scaleX(1);
    }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 24px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow, opacity;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    border: 6px solid var(--secondary-color);
    box-shadow: 0 0 0 2px var(--bg-gray);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials-grid {
    display: flex; /* Changed from grid to flex for slider */
    gap: 32px;
    align-items: stretch;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 40px;
}

.slider-track {
    overflow: hidden;
}

.testimonial-card {
    flex: 0 0 100%; /* Default 1 card per slide on mobile */
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    border: 1px solid var(--bg-gray);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 16px); /* 2 cards on tablet */
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 21.33px); /* 3 cards on desktop */
    }
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--bg-gray);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.slider-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}


.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--bg-gray);
    line-height: 1;
}

.testimonial-stars {
    color: var(--google-star);
    font-size: 1.1rem;
    display: flex;
    gap: 2px;
}

/* Google Review Header/Summary */
.reviews-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    background: var(--secondary-color);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--bg-gray);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.summary-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.summary-google {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-left: 2rem;
    border-left: 2px solid var(--bg-gray);
}

.google-logo-mini {
    height: 32px;
}

.google-text-info {
    display: flex;
    flex-direction: column;
}

.google-name {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 1.1rem;
}

.google-review-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Specific Google Card Elements */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/c/c1/Google_%22G%22_logo.svg') no-repeat center;
    background-size: contain;
    opacity: 0.8;
}

.author-meta {
    display: flex;
    flex-direction: column;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--google-green);
    font-weight: 600;
    margin-top: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-google {
    background: white;
    color: #5f6368;
    border: 1px solid #dadce0;
    box-shadow: 0 1px 2px rgba(60,64,67, 0.3), 0 1px 3px 1px rgba(60,64,67, 0.15);
}

.btn-google:hover {
    background-color: #f8f9fa;
    box-shadow: 0 1px 2px rgba(60,64,67, 0.3), 0 2px 6px 2px rgba(60,64,67, 0.15);
    transform: translateY(-1px);
}

.btn-google-text {
    font-weight: 500;
    letter-spacing: 0.25px;
}


.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 32px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--bg-gray);
    padding-top: 24px;
    margin-top: auto;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* =========================================
   Contact Section
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
}

.contact-info-panel {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px;
}

.contact-info-panel h2 {
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-size: 2.2rem;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-form-panel {
    padding: 60px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--bg-gray);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    background-color: var(--bg-light);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.1);
    background-color: var(--secondary-color);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--primary-dark);
    color: var(--secondary-color);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* =========================================
   Mobile Sticky CTA
   ========================================= */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

/* =========================================
   Floating WhatsApp Button
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.floating-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(37, 211, 102, 0.5);
}

/* =========================================
   Reveal Animations
   ========================================= */
.reveal-item {
    opacity: 0;
}

.reveal-item.revealed {
    animation: revealFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revealFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step:nth-child(2).revealed {
    animation-delay: 0.15s;
}

.process-step:nth-child(3).revealed {
    animation-delay: 0.3s;
}

.process-step:nth-child(4).revealed {
    animation-delay: 0.45s;
}

/* =========================================
   Media Queries
   ========================================= */
/* Large Desktop */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

/* Laptop / iPad Pro */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 40px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet / Mobile Menu Trigger */
@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: max-content;
        background-color: var(--secondary-color);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--box-shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-link {
        color: var(--text-heading);
        padding: 16px 24px;
        border-bottom: 1px solid var(--bg-gray);
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .trust-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .trust-item {
        width: 100%;
        min-width: unset;
    }

    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mobile-sticky-cta {
        display: block;
    }

    .floating-whatsapp {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    /* Adjust body padding so sticky button doesn't hide footer content */
    body {
        padding-bottom: 80px;
    }

    .logo-shield {
        height: 48px;
        /* Excelente tamaño para móviles sin romper navbar */
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.2rem);
    }

    .trust-item {
        min-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .contact-form-panel {
        padding: 30px 20px;
    }
}

/* =========================================
   Work Zones Section
   ========================================= */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.zone-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-normal);
    border-bottom: 3px solid transparent;
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
    border-color: var(--accent-color);
}

.zone-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.zone-card h3 {
    margin-bottom: 12px;
}

.map-illustration {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.8;
}

.map-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
}

/* =========================================
   About Us Section
   ========================================= */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-lg);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.8;
}

.about-logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-box {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    border: 1px solid var(--bg-gray);
}

.about-logo {
    max-width: 100%;
    height: auto;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(201, 166, 107, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-logo-container {
        order: 2;
    }
}