﻿/* ==========================================================================
   0. PRELOADER
   ========================================================================== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(160deg, #0e1a26 0%, #162636 40%, #20364d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 160px;
}

.preloader-logo {
    width: 80px;
    height: auto;
    filter: brightness(1.15) drop-shadow(0 0 20px rgba(171, 151, 140, 0.35));
    animation: preloaderFadeIn 0.8s ease forwards, preloaderPulse 2s ease-in-out 0.8s infinite;
    opacity: 0;
}

.preloader-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(171, 151, 140, 0.9);
    border-right-color: rgba(171, 151, 140, 0.3);
    animation: preloaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.preloader-ring::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(233, 230, 231, 0.5);
    border-left-color: rgba(233, 230, 231, 0.15);
    animation: preloaderSpin 1.8s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}

.preloader-ring::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-bottom-color: rgba(171, 151, 140, 0.4);
    animation: preloaderSpin 2.4s linear infinite;
}

@keyframes preloaderSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderFadeIn {
    0%   { opacity: 0; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); filter: brightness(1.15) drop-shadow(0 0 20px rgba(171, 151, 140, 0.35)); }
    50%      { transform: scale(1.06); filter: brightness(1.25) drop-shadow(0 0 30px rgba(171, 151, 140, 0.55)); }
}

/* ==========================================================================
   1. VARIABLES GLOBALES (Urban Slate Palette)
   ========================================================================== */
:root {
    /* Paleta Urban Slate */
    --color-light: #E9E6E7;      
    --color-dark: #5E5653;       
    --color-slate: #7B7F8A;      
    --color-taupe: #AB978C;      
    --color-primary: #20364d;    

    /* Colores extra de apoyo */
    --color-white: #FFFFFF;
    --color-bg-light: #F4F2F3;   
    
    /* Tipografía */
    --font-primary: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    
    /* Layout y Sombras */
    --container-width: 1100px;
    --shadow-sm: 0 4px 6px rgba(94, 86, 83, 0.1);
    --shadow-md: 0 10px 20px rgba(94, 86, 83, 0.15);
    --transition: all 0.3s ease;
}

/* ==========================================================================
   2. RESET Y BASES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
}

h1, h2, h3 {
    color: var(--color-dark);
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--color-bg-light);
}

/* ==========================================================================
   3. BOTONES
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #162b3f 100%);
    color: var(--color-white);
    box-shadow: 
        0 6px 20px rgba(32, 54, 77, 0.3),
        0 3px 8px rgba(32, 54, 77, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #162b3f 0%, var(--color-slate) 100%);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(32, 54, 77, 0.4),
        0 6px 15px rgba(32, 54, 77, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    backdrop-filter: blur(5px);
    box-shadow: 
        0 4px 15px rgba(32, 54, 77, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, #162b3f 100%);
    color: var(--color-white);
    border-color: transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(32, 54, 77, 0.35),
        0 4px 12px rgba(32, 54, 77, 0.25);
}

/* ==========================================================================
   4. HEADER Y NAVEGACIÓN
   ========================================================================== */
.main-header {
    background: 
        linear-gradient(135deg, 
            rgba(32, 54, 77, 0.95) 0%, 
            rgba(22, 43, 63, 0.97) 20%,
            rgba(32, 54, 77, 0.95) 40%,
            rgba(18, 38, 57, 0.96) 60%,
            rgba(32, 54, 77, 0.95) 80%,
            rgba(22, 43, 63, 0.97) 100%
        ),
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.03) 0%,
            transparent 50%,
            rgba(255, 255, 255, 0.03) 100%
        );
    box-shadow: 
        0 8px 32px rgba(32, 54, 77, 0.35),
        0 4px 16px rgba(32, 54, 77, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        inset 0 -1px 1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 5%;
    backdrop-filter: blur(15px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        ),
        radial-gradient(
            circle at 20% 50%,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(255, 255, 255, 0.06) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 1;
    animation: headerShimmer 20s ease-in-out infinite;
}

@keyframes headerShimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

.main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 25%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 75%,
        transparent 100%
    );
    z-index: 2;
}

.main-header > * {
    position: relative;
    z-index: 3;
}

/* Header específico para página de licitaciones */
.page-licitaciones .main-header {
    background: 
        linear-gradient(135deg, 
            rgba(171, 151, 140, 0.95) 0%, 
            rgba(157, 138, 127, 0.97) 20%,
            rgba(171, 151, 140, 0.95) 40%,
            rgba(145, 128, 115, 0.96) 60%,
            rgba(171, 151, 140, 0.95) 80%,
            rgba(157, 138, 127, 0.97) 100%
        ),
        linear-gradient(
            to right,
            rgba(255, 255, 255, 0.03) 0%,
            transparent 50%,
            rgba(255, 255, 255, 0.03) 100%
        );
    box-shadow: 
        0 8px 32px rgba(171, 151, 140, 0.35),
        0 4px 16px rgba(171, 151, 140, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        inset 0 -1px 1px rgba(0, 0, 0, 0.1);
}

/* Paleta de colores específica para página de licitaciones */
.page-licitaciones .distributor-card {
    border-top-color: #ab978c;
}

.page-licitaciones .distributor-card:nth-child(2) {
    border-top-color: #8b7865;
}

.page-licitaciones .about-text h2,
.page-licitaciones .services-section h2,
.page-licitaciones .service-subcategory h4,
.page-licitaciones .service-card:nth-child(odd) {
    color: #ab978c;
    border-top-color: #ab978c;
}

.page-licitaciones .about-list {
    border-left-color: #ab978c;
}

.page-licitaciones .service-category-card:nth-child(2) {
    border-top-color: #ab978c;
}

.page-licitaciones .que-hacemos-card:nth-child(1):hover {
    border-top-color: #ab978c;
}

.page-licitaciones .timeline-dot {
    background: linear-gradient(135deg, #ab978c 0%, #9d8a7f 100%);
}

.page-licitaciones .timeline-content {
    border-left-color: #ab978c;
}

.page-licitaciones .btn-primary {
    background: linear-gradient(135deg, #ab978c 0%, #9d8a7f 100%);
    box-shadow: 
        0 6px 20px rgba(171, 151, 140, 0.3),
        0 3px 8px rgba(171, 151, 140, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.page-licitaciones .btn-primary:hover {
    background: linear-gradient(135deg, #9d8a7f 0%, #8b7865 100%);
    box-shadow: 
        0 10px 30px rgba(171, 151, 140, 0.4),
        0 6px 15px rgba(171, 151, 140, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.page-licitaciones .methodology-footer,
.page-licitaciones .cta-section {
    background: linear-gradient(135deg, #ab978c 0%, #9d8a7f 100%);
}

.page-licitaciones .icon-box {
    background: linear-gradient(135deg, #ab978c 0%, #9d8a7f 100%);
    box-shadow: 
        0 8px 16px rgba(171, 151, 140, 0.2),
        0 3px 6px rgba(171, 151, 140, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.page-licitaciones .contact-item:hover .icon-box {
    box-shadow: 
        0 12px 24px rgba(171, 151, 140, 0.25),
        0 6px 12px rgba(171, 151, 140, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.page-licitaciones .destacado-final {
    background: linear-gradient(135deg, #ab978c 0%, #9d8a7f 100%);
}

.page-licitaciones .contact-form-container {
    border-top-color: #ab978c;
}

.page-licitaciones .contact-form h3::after {
    background: linear-gradient(90deg, #ab978c, #9d8a7f);
}

.page-licitaciones .form-group input:focus,
.page-licitaciones .form-group select:focus,
.page-licitaciones .form-group textarea:focus {
    border-color: #ab978c;
    box-shadow: 
        0 0 0 4px rgba(171, 151, 140, 0.15),
        inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.logo-container a {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-img {
    height: 120px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container a:hover .logo-img {
    opacity: 0.85;
    transform: translateY(-1px);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: -1;
}

.main-nav a:hover {
    color: var(--color-white);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.main-nav a:hover::before {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Botón Hamburguesa oculto en PC */
.mobile-menu-btn {
    display: none;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 1.8rem;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.mobile-menu-btn:hover {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 
        0 6px 18px rgba(0, 0, 0, 0.25),
        0 3px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.mobile-menu-btn:hover::before {
    width: 100px;
    height: 100px;
}

/* Botón de cambio de idioma ES / EN */
.lang-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    padding: 5px 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.lang-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.55);
    color: rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
}

.lang-toggle-btn .lang-sep {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.lang-toggle-btn .lang-es,
.lang-toggle-btn .lang-en {
    transition: color 0.2s ease;
}

.lang-toggle-btn .lang-active {
    color: #ffffff;
    font-weight: 800;
}

/* ==========================================================================
   5. HOME / DISTRIBUIDOR (index.html)
   ========================================================================== */
.distributor-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.distributor-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.distributor-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cards-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.distributor-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 50%,
        rgba(249, 249, 249, 0.98) 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    box-shadow: 
        0 10px 30px rgba(94, 86, 83, 0.12),
        0 4px 12px rgba(32, 54, 77, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-top: 6px solid var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 6px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.distributor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(32, 54, 77, 0.08), 
        transparent);
    transition: left 0.6s ease;
}

.distributor-card:nth-child(2) {
    border-top-color: var(--color-taupe);
}

.distributor-card h3 {
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.distributor-card p {
    color: var(--color-slate);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.distributor-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(94, 86, 83, 0.18),
        0 10px 20px rgba(32, 54, 77, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.8);
}

.distributor-card:hover::before {
    left: 100%;
}

/* ==========================================================================
   6. HERO SECTIONS (Internas)
   ========================================================================== */
.hero-section {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 6rem 2rem 24rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video de fondo en el hero */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay oscuro sobre el video para legibilidad */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Contenido del hero sobre el video */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-section h1 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-lead {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.1rem !important;
    color: var(--color-taupe); /* Usamos el color arena para bajarle el peso visual */
    margin-bottom: 2.5rem !important;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    border: 2px solid var(--color-light);
    color: var(--color-light);
}

/* ==========================================================================
   X. SECCIÓN SOBRE NOSOTROS
   ========================================================================== */
.about-section {
    padding: 5rem 2rem;
    background-color: #2f4254;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Fondos profesionales mejorados */
.professional-bg {
    background: linear-gradient(160deg,
        #2f4254 0%,
        #253647 50%,
        #2f4254 100%);
    position: relative;
    overflow: hidden;
}

.professional-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(171, 151, 140, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.professional-bg > .container {
    position: relative;
    z-index: 2;
}

.services-bg {
    background-image: url('../assets/seccion.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

@media (min-width: 769px) {
    .services-bg {
        overflow: hidden;
    }
}

.services-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
    pointer-events: none;
}

.services-bg > .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
}

.about-list {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 16px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 6px solid #AB978C;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(32, 54, 77, 0.06), 
        transparent);
    transition: left 0.6s ease;
}

.about-list:hover {
    transform: translateX(8px);
    box-shadow:
        0 16px 50px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.about-list:hover::before {
    left: 100%;
}

.about-list > * {
    position: relative;
    z-index: 1;
}

.about-list h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.custom-list {
    padding: 0;
}

.custom-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #AB978C;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.custom-list li i {
    color: #AB978C;
    font-size: 1.2rem;
}

/* Ajuste Responsive para esta sección */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr; /* Pasa a 1 sola columna en pantallas chicas */
        gap: 2rem;
    }
}

/* ==========================================================================
   6.5. SECCIÓN QUÉ HACEMOS (Mejorada)
   ========================================================================== */
.que-hacemos-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.98) 50%,
        rgba(249, 249, 249, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 25px rgba(94, 86, 83, 0.1),
        0 3px 10px rgba(32, 54, 77, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

.que-hacemos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(32, 54, 77, 0.06), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.que-hacemos-card > * {
    position: relative;
    z-index: 2;
}

.que-hacemos-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 16px 40px rgba(94, 86, 83, 0.16),
        0 8px 20px rgba(32, 54, 77, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.7);
}

.que-hacemos-card:hover::before {
    left: 100%;
}

.que-hacemos-card:hover .card-icon {
    transform: scale(1.15) rotate(-5deg);
}

.que-hacemos-card .card-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(32, 54, 77, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.que-hacemos-card:nth-child(1):hover {
    border-top-color: var(--color-primary);
}

.que-hacemos-card:nth-child(2):hover {
    border-top-color: var(--color-taupe);
}

.que-hacemos-card:nth-child(3):hover {
    border-top-color: var(--color-slate);
}

.destacado-final {
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 12px 35px rgba(32, 54, 77, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.destacado-final:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 16px 45px rgba(32, 54, 77, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.destacado-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

/* Responsive para QUÉ HACEMOS */
@media (max-width: 768px) {
    .que-hacemos-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .que-hacemos-card {
        padding: 2rem !important;
    }
    
    .destacado-final {
        padding: 2rem !important;
    }
    
    .section-header h2 {
        font-size: 2.2rem !important;
    }
    
    .section-header p {
        font-size: 1.15rem !important;
    }
}

/* ==========================================================================
   7. SECCIONES DE SERVICIOS (Detallado)
   ========================================================================== */
.services-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 901px) {
    .services-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
    .services-wrapper .service-category-card {
        flex: 1 1 0;
        min-width: 0;
    }
}

.service-category-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.97) 0%, 
        rgba(255, 255, 255, 0.94) 50%,
        rgba(249, 249, 249, 0.97) 100%);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 
        0 12px 35px rgba(94, 86, 83, 0.12),
        0 5px 15px rgba(32, 54, 77, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 6px solid var(--color-taupe);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) {
    .service-category-card {
        padding: 3rem;
        overflow: hidden;
    }
    .service-category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(171, 151, 140, 0.06), 
            transparent);
        transition: left 0.6s ease;
    }
    .service-category-card:hover {
        transform: translateY(-8px);
        box-shadow: 
            0 18px 45px rgba(94, 86, 83, 0.16),
            0 8px 20px rgba(32, 54, 77, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        border-color: rgba(255, 255, 255, 0.6);
    }
    .service-category-card:hover::before {
        left: 100%;
    }
    .service-category-card > * {
        position: relative;
        z-index: 1;
    }
}

.service-category-card:nth-child(2) {
    border-top-color: var(--color-primary);
}

.service-category-card > h3 {
    color: var(--color-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--color-light);
    padding-bottom: 0.8rem;
}

@media (min-width: 769px) {
    .service-category-card > h3 {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        gap: 12px;
        padding-bottom: 1rem;
    }
}

.service-subcategory-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 769px) {
    .service-subcategory-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

/* ===== TOGGLE SERVICIOS ===== */
.btn-toggle-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem auto 0;
    padding: 10px 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #162b3f 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(32, 54, 77, 0.25);
    width: 100%;
    max-width: 250px;
}

@media (min-width: 769px) {
    .btn-toggle-services {
        font-size: 0.95rem;
        margin: 1.2rem auto 0;
        width: auto;
    }
}

.btn-toggle-services:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 54, 77, 0.35);
}

.btn-toggle-services i {
    transition: transform 0.35s ease;
    font-size: 0.8rem;
}

.btn-toggle-services.open i {
    transform: rotate(180deg);
}

.services-collapsible {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.4s ease;
    margin-top: 0;
}

.services-collapsible.expanded {
    max-height: 2000px;
    opacity: 1;
    margin-top: 1.5rem;
}

/* ===== FLIP CARD — DESKTOP (3D flip) ===== */
@media (min-width: 769px) {
    .service-flip-card {
        perspective: 1000px;
        cursor: pointer;
    }
    .flip-inner {
        display: grid;
        width: 100%;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        transform-style: preserve-3d;
    }
    .service-flip-card.flipped .flip-inner {
        transform: rotateY(180deg);
    }
    .flip-front,
    .flip-back {
        grid-area: 1 / 1;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        border-radius: 14px;
        padding: 1.8rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .flip-back {
        transform: rotateY(180deg);
        justify-content: flex-start;
        padding-top: 1.4rem;
        overflow-y: visible;
    }
    .flip-hint {
        font-size: 0.72rem;
        opacity: 0.5;
        margin-top: auto;
        padding-top: 0.6rem;
        letter-spacing: 0.3px;
    }
}

/* ===== FLIP CARD — MOBILE (expand, no 3D) ===== */
@media (max-width: 768px) {
    .service-flip-card {
        cursor: pointer;
        min-height: 0;
        border-radius: 12px;
        border: 1px solid rgba(32, 54, 77, 0.12);
        box-shadow: 0 4px 12px rgba(94, 86, 83, 0.06);
    }
    .flip-inner {
        position: relative;
        width: 100%;
        min-height: 0;
    }
    .flip-front,
    .flip-back {
        position: static;
        width: 100%;
        height: auto;
        border-radius: 0;
    }
    .flip-front {
        padding: 1.2rem 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 0.8rem;
        border-radius: 12px;
    }
    .flip-front i {
        font-size: 1.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .flip-front h4 {
        font-size: 0.95rem;
        margin: 0;
    }
    .flip-front .flip-hint {
        display: none;
    }
    /* Arrow indicator for expand */
    .flip-front::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.7rem;
        color: var(--color-slate);
        margin-left: auto;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    .service-flip-card.flipped .flip-front::after {
        transform: rotate(180deg);
    }
    .flip-back {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0 1rem;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
        background: linear-gradient(145deg, var(--color-primary), #162b3f);
        border-radius: 0 0 12px 12px;
        transform: none;
    }
    .service-flip-card.flipped .flip-front {
        border-radius: 12px 12px 0 0;
    }
    .service-flip-card.flipped .flip-back {
        max-height: 500px;
        opacity: 1;
        padding: 1rem;
    }
    .flip-back h4 {
        display: none;
    }
    .flip-back .flip-hint {
        display: none;
    }
}

/* ===== FLIP CARD — Shared styles ===== */
.flip-front {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(249,249,249,0.96));
    border: 1px solid rgba(32, 54, 77, 0.12);
    box-shadow: 0 6px 20px rgba(94,86,83,0.08);
}

.flip-front i {
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

@media (min-width: 769px) {
    .flip-front i {
        font-size: 2.4rem;
        margin-bottom: 0.8rem;
    }
    .service-flip-card:hover .flip-front i {
        transform: scale(1.15);
    }
}

.flip-front h4 {
    color: var(--color-primary);
    line-height: 1.3;
}

@media (min-width: 769px) {
    .flip-front h4 {
        font-size: 1.1rem;
    }
}

.flip-back {
    background: linear-gradient(145deg, var(--color-primary), #162b3f);
    color: #fff;
}

.flip-back h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    width: 100%;
}

.flip-back ul {
    text-align: left;
    width: 100%;
    list-style: none;
    padding: 0;
}

.flip-back ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.4;
}

.flip-back ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}

.flip-hint i {
    font-size: 0.7rem;
    margin-right: 3px;
}

.flip-back .flip-hint {
    color: rgba(255,255,255,0.5);
}

.service-subcategory h4 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-subcategory ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-slate);
}

.service-subcategory ul li::before {
    content: "■";
    color: var(--color-taupe);
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 4px;
}

.columns-2 {
    column-count: 2;
    column-gap: 2rem;
}

.corporate-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-light);
    font-weight: 500;
    color: var(--color-dark);
    text-align: center;
}

@media (max-width: 768px) {
    .columns-2 {
        column-count: 1;
    }
    .services-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    .corporate-footer {
        margin-top: 1rem;
        padding-top: 1rem;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   7.5. TARJETAS DE SERVICIOS SIMPLES (Grilla Licitaciones)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.97) 0%, 
        rgba(255, 255, 255, 0.94) 50%,
        rgba(249, 249, 249, 0.97) 100%);
    padding: 2.5rem;
    border-radius: 14px;
    box-shadow: 
        0 10px 30px rgba(94, 86, 83, 0.12),
        0 4px 12px rgba(32, 54, 77, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(32, 54, 77, 0.06), 
        transparent);
    transition: left 0.6s ease;
}

/* Intercalamos colores en el borde superior para darle un toque de diseño único */
.service-card:nth-child(odd) {
    border-top-color: var(--color-primary);
}
.service-card:nth-child(even) {
    border-top-color: var(--color-taupe);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 
        0 16px 40px rgba(94, 86, 83, 0.16),
        0 8px 20px rgba(32, 54, 77, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
}

.service-card:hover::before {
    left: 100%;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: var(--color-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-light);
    padding-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: var(--color-slate);
    font-size: 1.05rem;
}

/* Ajustes para las listas dentro de las tarjetas */
.service-card ul {
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Si la tarjeta es más alta, empuja el párrafo final hacia abajo */
}

.service-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-slate);
    font-size: 1rem;
}

.service-card ul li::before {
    content: "✔"; /* Reemplazamos los bullets normales por un tilde sutil */
    color: var(--color-taupe);
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 3px;
}

/* ==========================================================================
   8. SECCIÓN CÓMO TRABAJAMOS (Timeline)
   ========================================================================== */
.methodology-section {
    padding: 0;
    background-image: url('../assets/seccion.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.methodology-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(20, 32, 44, 0.72);
    z-index: 0;
    pointer-events: none;
}

.methodology-content-full {
    padding: 5rem 4rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Layout dos columnas para "A quién asesoramos" */
.who-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 100vh;
    align-items: stretch;
}

.who-content-col {
    padding: 4rem 3rem;
    background: var(--color-bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-video-col {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    height: 100vh;
    max-height: 100vh;
}

.methodology-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.methodology-section::before {
    /* handled above */
    display: block;
}

/* Carrusel de pasos - reemplaza steps-grid */

/* Barra de progreso con números */
.steps-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
    gap: 0;
}

.progress-item {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.progress-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.55);
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease, border-color 0.4s ease, box-shadow 0.3s ease;
    user-select: none;
}

.progress-item:hover .progress-dot {
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}

.progress-item.active .progress-dot {
    background: #fff;
    color: var(--color-primary);
    transform: scale(1.2);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.progress-line-segment {
    flex: 1;
    height: 2px;
    background: rgba(32, 54, 77, 0.2);
    min-width: 30px;
    max-width: 90px;
}

/* Wrapper del carrusel */
.steps-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.steps-carousel-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
}

.steps-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Cada tarjeta del carrusel */
.step-card-item {
    flex: 0 0 38%;
    background: var(--step-color, var(--color-primary));
    color: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    opacity: 0.4;
    transform: scale(0.88);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    cursor: pointer;
    min-height: 210px;
}

.step-card-item::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.step-card-item.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
    cursor: default;
}

.step-number {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.step-card-item i {
    font-size: 2.4rem;
    opacity: 0.9;
}

.step-card-item h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Flechas de navegación */
.carousel-arrow {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid rgba(32, 54, 77, 0.2);
    color: var(--color-primary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-arrow:hover:not(:disabled) {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(32, 54, 77, 0.3);
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.methodology-footer {
    margin-top: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(32, 54, 77, 0.12);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    color: var(--color-dark);
}

.methodology-footer:hover::before {
    left: 100%;
}

.methodology-footer > * {
    position: relative;
    z-index: 1;
}

/* Video de fondo para secciones */
.section-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay oscuro sobre el video para legibilidad */
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(94, 86, 83, 0.35) 0%, rgba(94, 86, 83, 0.25) 100%);
    z-index: 2;
}

/* Contenido de secciones con video sobre el fondo */
.methodology-section > .container,
.why-and-who-section > .container {
    position: relative;
    z-index: 3;
}

/* Textos sobre fondo con foto */
.methodology-section .text-center h2,
.methodology-section .text-center p {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Mejoras al footer de metodología */
.methodology-section .methodology-footer p {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

/* Mejoras a la sección why-and-who */
.why-and-who-section .check-list li {
    font-weight: 500;
    font-size: 1.05rem;
}

.why-and-who-section .check-list li i {
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 5px;
}

.methodology-section .check-list li {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--color-dark) !important;
}

.methodology-section .check-list li i {
    font-weight: 600;
    color: var(--color-primary) !important;
    margin-right: 8px;
}

.why-and-who-section .quote-card {
    background: rgba(255, 255, 255, 0.97);
}

/* ==========================================================================
   7.5. SECCIÓN CTA (CALL TO ACTION)
   ========================================================================== */
.cta-section {
    position: relative;
    padding: 8rem 2rem;
    overflow: hidden;
    background-color: var(--color-primary);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(32, 54, 77, 0.85) 0%, 
        rgba(94, 86, 83, 0.8) 50%,
        rgba(32, 54, 77, 0.9) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-white);
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.cta-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-light);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    min-width: 180px;
    padding: 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta-feature i {
    font-size: 2.2rem;
    color: var(--color-light);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-feature:hover i {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 220px;
}

.cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cta-section .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive para CTA */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-lead {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-features {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-feature {
        min-width: 140px;
    }
    
    .cta-feature i {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .btn-large {
        min-width: 200px;
        padding: 14px 28px;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
}

/* ==========================================================================
   8. FOOTER Y BOTÓN WHATSAPP
   ========================================================================== */
.main-footer {
    background: linear-gradient(160deg,
        #161e27 0%,
        #1a2636 40%,
        #20364d 100%);
    color: var(--color-light);
    padding: 4rem 2rem 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.25);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--color-taupe) 30%,
        var(--color-light) 50%,
        var(--color-taupe) 70%,
        transparent 100%);
}

/* Footer grid layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.3fr;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 64px;
    width: auto;
    filter: brightness(1.1) drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(233, 230, 231, 0.7);
    max-width: 280px;
}

.footer-location {
    font-size: 0.85rem;
    color: var(--color-taupe);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-taupe);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links li a {
    font-size: 0.9rem;
    color: rgba(233, 230, 231, 0.75);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links li a::before {
    content: '›';
    color: var(--color-taupe);
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.footer-links li a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer-links li a:hover::before {
    transform: translateX(3px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: rgba(233, 230, 231, 0.75);
}

.footer-contact-list li i {
    color: var(--color-taupe);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: rgba(233, 230, 231, 0.75);
    transition: color 0.25s ease;
}

.footer-contact-list li a:hover {
    color: var(--color-white);
}

/* Footer bottom bar */
.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.2rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(233, 230, 231, 0.4);
}

.main-footer a {
    color: rgba(233, 230, 231, 0.75);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-footer a:hover {
    color: var(--color-white);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.4),
        0 4px 12px rgba(37, 211, 102, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(37, 211, 102, 0.4),
            0 4px 12px rgba(37, 211, 102, 0.3),
            inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(37, 211, 102, 0.6),
            0 6px 18px rgba(37, 211, 102, 0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(37, 211, 102, 0.5),
        0 6px 18px rgba(37, 211, 102, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
    animation: none;
}

/* ==========================================================================
   9. RESPONSIVE DESIGN (Móviles)
   ========================================================================== */
@media (max-width: 768px) {
    /* Footer responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-tagline {
        max-width: 100%;
    }

    /* Mantiene el logo y el botón en la misma línea */
    .main-header {
        flex-wrap: wrap;
    }
    
    /* Muestra el botón hamburguesa */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Oculta el menú por defecto y lo prepara para desplegarse hacia abajo */
    .main-nav {
        width: 100%;
        display: none; 
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 1px solid var(--color-light);
    }
    
    /* Clase que agregará JavaScript para mostrar el menú */
    .main-nav.active {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }
    
    /* Apila los links verticalmente */
    .main-nav ul {
        flex-direction: column;
        align-items: center !important; /* Sobrescribe el estilo en línea del HTML */
        gap: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-tags {
        flex-direction: column;
        gap: 1rem;
    }
    
    .distributor-content h1 {
        font-size: 2rem;
    }

    /* Mejoras responsivas para secciones contables */
    .methodology-content-full {
        padding: 3rem 1.5rem;
    }

    .who-layout {
        grid-template-columns: 1fr;
        position: relative;
        min-height: 100vh;
        min-height: 100svh;
    }

    .who-content-col {
        position: relative;
        z-index: 2;
        padding: 3rem 1.5rem;
        background: transparent;
    }

    .steps-carousel-wrapper {
        gap: 0.5rem;
    }

    .step-card-item {
        flex: 0 0 60%;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .progress-line-segment {
        min-width: 16px;
    }

    .progress-dot {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .methodology-section .text-center h2 {
        font-size: 1.8rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .why-and-who-section .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-and-who-section .why-us-box {
        padding: 2rem !important;
    }

    .why-and-who-section .accounting-box {
        padding: 2rem !important;
    }
}

/* Animación suave para cuando se abre el menú */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   10. SECCIÓN COMBINADA (Por qué elegirnos & A quién asesoramos)
   ========================================================================== */
.why-and-who-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(125deg, 
        rgba(233, 230, 231, 0.4) 0%,
        rgba(244, 242, 243, 0.7) 25%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(244, 242, 243, 0.7) 75%,
        rgba(233, 230, 231, 0.4) 100%);
}

.why-and-who-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        conic-gradient(from 45deg at 25% 25%, 
            rgba(32, 54, 77, 0.02) 0deg,
            transparent 90deg,
            rgba(171, 151, 140, 0.02) 180deg,
            transparent 270deg),
        linear-gradient(135deg, 
            transparent 0%, 
            rgba(32, 54, 77, 0.01) 25%, 
            transparent 50%, 
            rgba(171, 151, 140, 0.01) 75%, 
            transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.why-us-box h2, .who-we-help-box h2 {
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.check-list {
    padding: 0;
}

.check-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--color-dark);
}

.check-list li i {
    color: var(--color-taupe);
    margin-top: 5px; /* Alinea el ícono con la primera línea de texto */
}

/* La caja destacada de texto */
.why-us-footer {
    margin-top: 2.5rem;
}

/* Quote card */
.quote-card {
    position: relative;
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem 2rem 1.6rem;
    box-shadow: 0 8px 32px rgba(32, 54, 77, 0.13);
    border-left: 5px solid var(--color-primary);
}

.quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    position: absolute;
    top: 0.2rem;
    left: 1.2rem;
    pointer-events: none;
}

.quote-mark-close {
    top: auto;
    left: auto;
    bottom: 0.2rem;
    right: 1.2rem;
}

.quote-body {
    padding-left: 0.5rem;
    margin-bottom: 1.4rem;
}

.quote-text {
    font-size: 1.05rem;
    color: var(--color-slate);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.quote-highlight {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.6;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(32, 54, 77, 0.1);
    padding-top: 1rem;
}

.quote-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-primary);
}

.quote-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.quote-avatar-fallback {
    display: none;
    color: #fff;
    font-size: 1.4rem;
}

.quote-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.quote-author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.quote-author-role {
    font-size: 0.82rem;
    color: var(--color-slate);
}

/* Grilla de clientes asesorados */
.who-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.who-card {
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--color-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
    width: calc(33.333% - 0.7rem);
    min-width: 130px;
    box-sizing: border-box;
}

.who-card i {
    font-size: 2rem;
    color: var(--color-taupe);
    transition: var(--transition);
}

/* Efecto al pasar el mouse por las tarjetas de clientes */
.who-card:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.who-card:hover i {
    color: var(--color-white);
}

/* Responsive para pantallas más chicas */
@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr; /* Todo en una sola columna */
        gap: 4rem;
    }
}

/* ==========================================================================
   11. SECCIÓN DE CONTACTO
   ========================================================================== */
.contact-section {
    padding: 6rem 2rem;
    background-color: #5E5653;
    color: var(--color-white);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
}

/* Fondo profesional para contacto */
.contact-bg {
    background: linear-gradient(135deg, 
        #5E5653 0%,
        #6a6360 20%,
        #5E5653 40%,
        #52524f 60%,
        #5E5653 80%,
        #4a4845 100%);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.15);
}

.contact-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.02) 35px,
            rgba(255, 255, 255, 0.02) 70px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(0, 0, 0, 0.03) 35px,
            rgba(0, 0, 0, 0.03) 70px
        ),
        radial-gradient(circle at 20% 30%, rgba(32, 54, 77, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(171, 151, 140, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    animation: subtleMove 20s ease-in-out infinite;
}

@keyframes subtleMove {
    0%, 100% { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    50% { 
        opacity: 0.95;
        transform: translateY(-5px) scale(1.01);
    }
}

.contact-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, 
            rgba(0, 0, 0, 0.05) 1px, 
            transparent 1px
        ),
        linear-gradient(
            rgba(0, 0, 0, 0.05) 1px, 
            transparent 1px
        );
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.contact-bg > .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    color: var(--color-white);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-info .lead-text {
    color: var(--color-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 400;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.icon-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 100%);
    border: 1px solid rgba(255,255,255,0.3);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: var(--color-white);
    flex-shrink: 0;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.icon-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.contact-item:hover .icon-box {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.2) 100%);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-item:hover .icon-box::before {
    left: 100%;
}

.item-text h4 {
    color: var(--color-taupe);
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-text p, .item-text a {
    color: var(--color-white);
    font-size: 1.1rem;
    margin: 0;
}

.item-text a:hover {
    color: var(--color-taupe);
}

/* Estilos del Formulario */
.contact-form-container {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 50%,
        rgba(249, 249, 249, 0.98) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid #20364d;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-container:hover {
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 15px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-3px) translateZ(0);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at center, 
            rgba(32, 54, 77, 0.03) 0%, 
            transparent 50%), 
        linear-gradient(135deg, 
            rgba(32, 54, 77, 0.02) 0%, 
            transparent 40%, 
            rgba(171, 151, 140, 0.02) 100%);
    animation: rotateGradient 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-form-container > * {
    position: relative;
    z-index: 2;
}

.contact-form h3 {
    color: var(--color-dark);
    font-size: 1.9rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #20364d, #162b3f);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(94, 86, 83, 0.15);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--color-bg-light);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #20364d;
    background-color: var(--color-white);
    box-shadow: 
        0 0 0 4px rgba(32, 54, 77, 0.15),
        inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px;
}

/* reCAPTCHA */
.g-recaptcha {
    margin-bottom: 1rem;
}

/* Feedback del formulario de contacto */
.form-feedback {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    display: none;
}
.form-feedback:not(:empty) {
    display: block;
}
.form-feedback--success {
    background: #e6f4ea;
    color: #1e7e34;
    border: 1px solid #b7dfbe;
}
.form-feedback--error {
    background: #fdecea;
    color: #c0392b;
    border: 1px solid #f5c6c4;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        padding: 2rem;
    }
}

/* ==========================================================================
   MEJORAS PROFESIONALES PARA TARJETAS Y ELEMENTOS
   ========================================================================== */

/* Efectos mejorados para tarjetas de servicios (solo desktop) */
@media (min-width: 769px) {
    .service-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(32, 54, 77, 0.05), 
            transparent);
        transition: left 0.6s ease;
    }
    .service-card:hover::before {
        left: 100%;
    }
    .service-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 
            0 20px 40px rgba(94, 86, 83, 0.15),
            0 8px 16px rgba(32, 54, 77, 0.1);
        border-color: rgba(32, 54, 77, 0.2);
    }
}

/* Mejoras para la lista destacada en about section */
.about-list {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.about-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.04) 0%, 
        transparent 50%, 
        rgba(171, 151, 140, 0.04) 100%);
    pointer-events: none;
}

/* Efectos de hover para elementos de lista */
.custom-list li,
.check-list li {
    transition: all 0.3s ease;
    border-radius: 6px;
    padding: 8px 12px;
    margin: 8px 0;
}

.custom-list li:hover,
.check-list li:hover {
    background: rgba(32, 54, 77, 0.05);
    transform: translateX(8px);
    box-shadow: 0 2px 8px rgba(32, 54, 77, 0.08);
}

.custom-list li i,
.check-list li i {
    transition: all 0.3s ease;
}

.custom-list li:hover i,
.check-list li:hover i {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Efectos para los títulos de sección */
@media (min-width: 769px) {
    .about-text h2,
    .services-section h2 {
        position: relative;
        display: inline-block;
    }
}

.about-text h2::after,
.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-primary) 0%, 
        var(--color-taupe) 50%, 
        transparent 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section:hover .about-text h2::after,
.services-section:hover h2::after {
    transform: scaleX(1);
}

/* Mejoras para texto y párrafos */
.about-text p {
    transition: all 0.3s ease;
    padding: 4px 0;
    border-radius: 4px;
}

.about-text p:hover {
    background: rgba(32, 54, 77, 0.03);
    padding-left: 8px;
    transform: translateX(4px);
}

/* Responsive para efectos profesionales */
@media (max-width: 768px) {
    .service-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .custom-list li:hover,
    .check-list li:hover {
        transform: translateX(4px);
    }
    
    .about-text p:hover {
        transform: none;
        padding-left: 4px;
    }
    
    /* Reducir efectos en móviles */
    .professional-bg::before,
    .services-bg::before,
    .methodology-section::before,
    .why-and-who-section::before,
    .contact-bg::before {
        opacity: 0.5;
    }

    /* Secciones en pantalla completa en móvil */
    .services-section,
    .about-section,
    .methodology-section,
    .why-and-who-section,
    .contact-section {
        min-height: 100vh;
        min-height: 100svh;
    }

    .who-layout {
        min-height: unset;
    }
}

/* ==========================================================================
   EFECTOS ADICIONALES PROFESIONALES
   ========================================================================== */

/* Animación sutil para elementos al hacer scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto parallax sutil para secciones (solo en desktop) */
@media (min-width: 1025px) {
    .professional-bg,
    .services-bg,
    .methodology-section,
    .why-and-who-section,
    .contact-bg {
        background-attachment: fixed;
    }
}

/* Mejoras adicionales para botones */
.btn {
    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.1), 
        transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Efecto de profundidad para tarjetas principales (solo desktop) */
@media (min-width: 769px) {
    .about-list,
    .que-hacemos-card {
        transform-style: preserve-3d;
    }
    .about-list:hover,
    .que-hacemos-card:hover {
        transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-8px);
    }
}

/* ==========================================================================
   RESPONSIVE COMPLETO PARA MÓVILES
   ========================================================================== */

/* ——— Tablets y pantallas medianas (max 900px) ——— */
@media (max-width: 900px) {
    .container {
        padding: 3rem 1.5rem;
    }

    .hero-section {
        padding: 4rem 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 1.2rem !important;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .why-and-who-section {
        padding: 4rem 1.5rem;
    }

    .who-content-col h2 {
        font-size: 2.2rem !important;
    }
}

/* ——— Móviles (max 768px) ——— */
@media (max-width: 768px) {

    /* --- Contenedores generales --- */
    .container {
        padding: 2.5rem 1.2rem;
    }

    /* --- Hero --- */
    .hero-section {
        padding: 3rem 1.2rem 18rem;
        min-height: 100vh;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-section p {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .hero-lead {
        font-size: 1.15rem !important;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* --- Servicios --- */
    .services-section {
        min-height: 100vh;
        min-height: 100svh;
    }

    .services-section h2 {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }

    .services-wrapper {
        gap: 1.5rem;
    }

    .service-category-card {
        padding: 1.2rem;
    }

    .service-category-card > h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        gap: 8px;
        padding-bottom: 0.6rem;
    }

    .service-category-card > h3 i {
        font-size: 1.2rem;
    }

    .btn-toggle-services {
        font-size: 0.85rem;
        padding: 8px 20px;
        max-width: 220px;
    }

    /* --- Sobre Nosotros --- */
    .about-section {
        padding: 2.5rem 1rem;
        min-height: 100vh;
        min-height: 100svh;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 1.85rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .about-text h2::after {
        display: none;
    }

    .about-text p {
        font-size: 1.08rem;
        margin-bottom: 0.9rem;
        text-align: left;
        line-height: 1.65;
    }

    .about-text p:hover {
        transform: none;
        padding-left: 0;
        background: none;
    }

    .about-list {
        padding: 1.5rem 1.2rem;
        border-left: 4px solid var(--color-primary);
        border-radius: 12px;
    }

    .about-list:hover {
        transform: none;
    }

    .about-list h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .custom-list li {
        font-size: 1.05rem;
        padding: 0.6rem 0.7rem;
        margin-bottom: 0.6rem;
        gap: 10px;
    }

    .custom-list li:hover {
        transform: translateX(4px);
    }

    .custom-list li i {
        font-size: 1rem;
    }

    /* --- Cómo Trabajamos (Metodología) --- */
    .methodology-section {
        min-height: 100vh;
        min-height: 100svh;
    }

    .methodology-content-full {
        padding: 2.5rem 1.2rem;
        min-height: 100vh;
        min-height: 100svh;
        justify-content: center;
    }

    .methodology-content-full .text-center h2 {
        font-size: 1.7rem !important;
    }

    .methodology-content-full .text-center p {
        font-size: 1.15rem !important;
    }

    .methodology-content-full .text-center {
        margin-bottom: 2rem !important;
    }

    .steps-progress {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .progress-dot {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .progress-line-segment {
        min-width: 12px;
        max-width: 40px;
    }

    .steps-carousel-wrapper {
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }

    .step-card-item {
        flex: 0 0 65%;
        padding: 1.8rem 1.4rem;
        min-height: 180px;
        border-radius: 16px;
    }

    .step-card-item h3 {
        font-size: 0.95rem;
    }

    .step-card-item i {
        font-size: 2rem;
    }

    .carousel-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .methodology-footer {
        padding: 1rem 1.2rem;
    }

    .methodology-footer p {
        font-size: 0.95rem !important;
    }

    /* --- A quién asesoramos --- */
    .why-and-who-section {
        padding: 0;
        min-height: unset;
    }

    .who-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        position: relative;
        overflow: hidden;
        min-height: unset;
    }

    /* Video como bloque separado con altura fija */
    .who-video-col {
        grid-row: 1;
        grid-column: 1;
        display: block;
        position: relative;
        height: 260px;
        min-height: unset;
        aspect-ratio: unset;
        overflow: hidden;
        order: unset;
        z-index: 0;
    }

    .who-video-col::after {
        display: none;
    }

    .who-content-col {
        grid-row: 2;
        grid-column: 1;
        position: relative;
        z-index: 1;
        padding: 2.5rem 1.2rem;
        justify-content: flex-start;
        background: var(--color-bg-light);
    }

    .who-content-col h2 {
        font-size: 1.7rem !important;
        margin-bottom: 1.5rem !important;
    }

    .who-grid {
        gap: 0.8rem;
    }

    .who-card {
        width: calc(50% - 0.4rem);
        min-width: 0;
        padding: 1rem 0.8rem;
        font-size: 0.8rem;
        gap: 8px;
    }

    .who-card:last-child:nth-child(odd) {
        width: 100%;
        max-width: calc(50% - 0.4rem);
        margin-left: auto;
        margin-right: auto;
    }

    .who-card i {
        font-size: 1.6rem;
        color: #AB978C;
    }

    .who-content-col h2 {
        color: inherit !important;
        text-shadow: none;
    }

    .who-video-col .methodology-video {
        transform: translateZ(0);
        will-change: transform;
        backface-visibility: hidden;
    }

    .why-us-footer {
        margin-top: 1.5rem;
    }

    .quote-card {
        padding: 1rem 1rem 0.9rem;
        border-radius: 12px;
    }

    .quote-mark {
        display: none;
    }

    .quote-body {
        padding-left: 0;
        margin-bottom: 0.9rem;
    }

    .quote-text {
        font-size: 0.85rem;
        line-height: 1.55;
        margin-bottom: 0.5rem;
    }

    .quote-highlight {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .quote-author {
        gap: 0.7rem;
        padding-top: 0.7rem;
    }

    .quote-avatar {
        width: 38px;
        height: 38px;
    }

    .quote-author-name {
        font-size: 0.82rem;
    }

    .quote-author-role {
        font-size: 0.74rem;
    }

    /* --- Contacto --- */
    .contact-section {
        padding: 3rem 1.2rem;
        min-height: 100vh;
        min-height: 100svh;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .contact-info .lead-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-details {
        gap: 1rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .icon-box {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .item-text h4 {
        font-size: 0.8rem;
    }

    .item-text p, .item-text a {
        font-size: 0.95rem;
    }

    .contact-form-container {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .btn-block {
        font-size: 1rem;
        padding: 12px;
    }

    /* --- Footer --- */
    .main-footer {
        padding: 1.5rem 1.2rem;
    }

    .footer-content p {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    /* --- WhatsApp flotante --- */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}

/* ——— Móviles pequeños (max 480px) ——— */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }

    .hero-section {
        padding: 2.5rem 1rem 16rem;
        min-height: 100vh;
    }

    .hero-section h1 {
        font-size: 1.45rem;
    }

    .hero-section p {
        font-size: 1.05rem;
    }

    .hero-lead {
        font-size: 1.1rem !important;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Servicios */
    .services-section h2 {
        font-size: 1.5rem;
    }

    .service-category-card {
        padding: 1rem;
    }

    .service-category-card > h3 {
        font-size: 1rem;
    }

    /* Sobre Nosotros */
    .about-section {
        padding: 2rem 0.8rem;
    }

    .about-text h2 {
        font-size: 1.55rem;
        margin-bottom: 0.8rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }

    .about-list {
        padding: 1rem;
        border-radius: 10px;
    }

    .about-list h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .custom-list li {
        font-size: 0.84rem;
        padding: 0.5rem 0.5rem;
        margin-bottom: 0.5rem;
        gap: 8px;
    }

    .custom-list li i {
        font-size: 0.9rem;
    }

    /* Metodología */
    .methodology-content-full .text-center h2 {
        font-size: 1.45rem !important;
    }

    .methodology-content-full .text-center p {
        font-size: 1rem !important;
    }

    .step-card-item {
        flex: 0 0 75%;
        padding: 1.5rem 1.2rem;
        min-height: 160px;
    }

    .step-card-item h3 {
        font-size: 0.88rem;
    }

    .step-card-item i {
        font-size: 1.8rem;
    }

    .progress-dot {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .progress-line-segment {
        min-width: 8px;
        max-width: 25px;
    }

    /* A quién asesoramos */
    .who-content-col {
        padding: 2rem 1rem;
    }

    .who-content-col h2 {
        font-size: 1.45rem !important;
    }

    .who-card {
        width: calc(50% - 0.4rem);
        padding: 0.8rem 0.6rem;
        font-size: 0.75rem;
        gap: 6px;
    }

    .who-card i {
        font-size: 1.3rem;
    }

    /* Contacto */
    .contact-info h2 {
        font-size: 1.45rem;
    }

    .contact-info .lead-text {
        font-size: 0.92rem;
    }

    .contact-form-container {
        padding: 1.2rem;
    }

    .contact-form h3 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    /* Footer */
    .main-footer {
        padding: 1.2rem 1rem;
    }

    .footer-content p {
        font-size: 0.85rem;
        word-break: break-word;
    }

    /* WhatsApp */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 26px;
        bottom: 16px;
        right: 16px;
    }
}