/* =========================================
   GESTIÓN DE RESIDUOS ECOLÓGICOS - STYLE.CSS
   Eco-Friendly Design with Green Palette
   ========================================= */

:root {
    --primary: #003333;
    /* Dark Teal */
    --primary-light: #027c68;
    /* Teal */
    --accent: #027c68;
    /* Teal Accent */
    --accent-hover: #003333;
    --accent-light: #05a88a;
    /* Light Teal */
    --text-main: #1f2937;
    /* Gray 800 */
    --text-light: #6b7280;
    /* Gray 500 */
    --white: #ffffff;
    --bg-body: #FFFFF0;
    /* Ivory */
    --bg-white: #ffffff;
    --success: #027c68;
    --warning: #f59e0b;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    width: 100%;
}

/* ========================================= 
   HEADER & NAVIGATION
   ========================================= */
.menu-toggle {
    display: none !important;
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    max-width: 1280px;
    margin: 0 auto;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.cta-phone {
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.cta-phone:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-modern {
    padding: 10rem 5% 6rem;
    background: linear-gradient(135deg, var(--primary) 0%, #027c68 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 124, 104, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.pill-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #b2dfdb;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pill-badge i {
    color: var(--accent-light);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(135deg, #05a88a 0%, #40e0d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: #e0f2f1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(2, 124, 104, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.avatars {
    display: flex;
}

.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    margin-right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
}

.trust-text p {
    font-size: 0.9rem;
    color: #b2dfdb;
    margin: 0;
}

.trust-text strong {
    color: var(--white);
}

.stars {
    color: var(--warning);
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 550px;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    filter: brightness(0.9);
}

.floating-status {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-hover);
    animation: floatHero 6s ease-in-out infinite;
    max-width: 280px;
}

.status-icon {
    width: 40px;
    height: 40px;
    background: #b2dfdb;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.status-info {
    display: flex;
    flex-direction: column;
}

.status-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.status-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

@keyframes floatHero {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* =========================================
   QUIENES SOMOS SECTION
   ========================================= */
.quienes-somos {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.content-text {
    max-width: 600px;
}

.tagline {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.content-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.highlight-box {
    background: #e0f2f1;
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin: 2rem 0;
}

.highlight-box i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 3px;
}

.highlight-box strong {
    color: var(--primary);
}

.content-image {
    position: relative;
    height: 500px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-hover);
}

.image-badge i {
    font-size: 1.5rem;
    color: var(--accent-light);
}

/* =========================================
   SERVICIOS SECTION
   ========================================= */
.servicios {
    background: var(--bg-body);
    padding: 6rem 5%;
}

.section-header {
    margin: 0 auto 4rem;
    text-align: center;
    max-width: 700px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.servicio-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(2, 124, 104, 0.08);
    line-height: 1;
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(2, 124, 104, 0.2);
    border-bottom-color: var(--accent);
}

.servicio-icon {
    width: 64px;
    height: 64px;
    background: #b2dfdb;
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.servicio-card:hover .servicio-icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.servicio-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.servicio-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.servicio-card:hover .service-link {
    gap: 0.8rem;
    color: var(--primary);
}

/* =========================================
   POR QUÉ SECTION
   ========================================= */
.por-que {
    padding: 6rem 5%;
    background: var(--bg-white);
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(2, 124, 104, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #e0f2f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-size: 2rem;
    color: var(--accent);
    border: 1px solid rgba(2, 124, 104, 0.1);
}

.benefit-card:hover .benefit-icon {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(2, 124, 104, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}


/* =========================================
   SERVICIOS SECTION - MODERN GREEN CARDS
   ========================================= */
.servicios {
    padding: 6rem 5%;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-body) 100%);
    position: relative;
    overflow: hidden;
}

.servicios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at 50% 0%, rgba(2, 124, 104, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.servicios .container {
    position: relative;
    z-index: 1;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.servicio-card {
    background: linear-gradient(135deg, #e8f5f3 0%, #f0f9f7 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid rgba(2, 124, 104, 0.15);
    box-shadow: 0 8px 30px rgba(2, 124, 104, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(2, 124, 104, 0.15) 0%, transparent 100%);
    border-radius: 0 0 100% 0;
    transition: all 0.5s ease;
}

.servicio-card:hover::before {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(2, 124, 104, 0.25) 0%, transparent 100%);
}

.servicio-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(2, 124, 104, 0.2);
    border-color: rgba(2, 124, 104, 0.4);
    background: linear-gradient(135deg, #d4f1ec 0%, #e0f7f3 100%);
}

.servicio-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(2, 124, 104, 0.12) 0%, rgba(2, 124, 104, 0.04) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    transition: all 0.5s ease;
    z-index: 0;
}

.servicio-card:hover .servicio-number {
    background: linear-gradient(135deg, rgba(2, 124, 104, 0.25) 0%, rgba(2, 124, 104, 0.12) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transform: scale(1.15) rotate(-5deg);
}

.servicio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(2, 124, 104, 0.25);
    position: relative;
    z-index: 1;
}

.servicio-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(8px);
}

.servicio-card:hover .servicio-icon {
    transform: scale(1.2) rotate(12deg);
    box-shadow: 0 15px 35px rgba(2, 124, 104, 0.4);
}

.servicio-card:hover .servicio-icon::after {
    opacity: 0.6;
}

.servicio-card h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0 0 0;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.servicio-card:hover h3 {
    color: var(--accent);
}

.servicio-card p {
    color: #2d5f56;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.servicio-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.servicio-card:hover::after {
    transform: scaleX(1);
}

/* =========================================
   FAQ SECTION - ACCORDION STYLE
   ========================================= */
.faq {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--bg-body) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at 50% 0%, rgba(2, 124, 104, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.faq-card {
    background: linear-gradient(135deg, #e8f5f3 0%, #f0f9f7 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid rgba(2, 124, 104, 0.15);
    box-shadow: 0 8px 30px rgba(2, 124, 104, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Decorative corner accent */
.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(2, 124, 104, 0.15) 0%, transparent 100%);
    border-radius: 0 0 100% 0;
    transition: all 0.5s ease;
}

.faq-card:hover::before {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(2, 124, 104, 0.25) 0%, transparent 100%);
}

.faq-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(2, 124, 104, 0.2);
    border-color: rgba(2, 124, 104, 0.4);
    background: linear-gradient(135deg, #d4f1ec 0%, #e0f7f3 100%);
}

.faq-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(2, 124, 104, 0.12) 0%, rgba(2, 124, 104, 0.04) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    transition: all 0.5s ease;
    z-index: 0;
}

.faq-card:hover .faq-number {
    background: linear-gradient(135deg, rgba(2, 124, 104, 0.25) 0%, rgba(2, 124, 104, 0.12) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transform: scale(1.15) rotate(-5deg);
}

.faq-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(2, 124, 104, 0.25);
    position: relative;
    z-index: 1;
}

.faq-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(8px);
}

.faq-card:hover .faq-icon {
    transform: scale(1.2) rotate(12deg);
    box-shadow: 0 15px 35px rgba(2, 124, 104, 0.4);
}

.faq-card:hover .faq-icon::after {
    opacity: 0.6;
}

.faq-card h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0 0 0;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.faq-card:hover h3 {
    color: var(--accent);
}

.faq-card p {
    color: #2d5f56;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Bottom decorative line */
.faq-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.faq-card:hover::after {
    transform: scaleX(1);
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: linear-gradient(135deg, #e8f5f3 0%, #f0f9f7 100%);
    border-radius: 16px;
    border: 2px solid rgba(2, 124, 104, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(2, 124, 104, 0.3);
    box-shadow: 0 8px 20px rgba(2, 124, 104, 0.1);
}

.faq-item.active {
    background: linear-gradient(135deg, #d4f1ec 0%, #e0f7f3 100%);
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(2, 124, 104, 0.05);
}

.faq-number-small {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    min-width: 40px;
}

.faq-question-text {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}

.faq-item.active .faq-question-text {
    color: var(--accent);
}

.faq-icon-toggle {
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    min-width: 20px;
}

.faq-item.active .faq-icon-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 2rem 2rem 5.25rem;
    margin: 0;
    color: #2d5f56;
    font-size: 1rem;
    line-height: 1.8;
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary) 0%, #027c68 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    display: inline-block;
}

.stat-number-text {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.stat-plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light);
    display: inline-block;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    color: #b2dfdb;
    margin-top: 0.3rem;
}

/* =========================================
   COOKIE BANNER - POPUP MODAL
   ========================================= */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 51, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 2rem;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    max-width: 600px;
    width: 100%;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--accent);
    position: relative;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.cookie-banner.show .cookie-content {
    transform: scale(1);
}

.cookie-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent);
    animation: cookieBounce 2s ease-in-out infinite;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(2, 124, 104, 0.2);
}

@keyframes cookieBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}

.cookie-text h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0 0 0.8rem 0;
    font-weight: 800;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(2, 124, 104, 0.3);
}

.btn-cookie-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(2, 124, 104, 0.5);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid #e5e7eb;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-reject:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(2, 124, 104, 0.05);
}

.cookie-policy-link {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
    display: block;
    margin-top: 0.5rem;
}

.cookie-policy-link:hover {
    color: var(--primary);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
    padding: 6rem 5%;
    background: var(--bg-body);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #b2dfdb;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.info-content a,
.info-content p {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.info-content a:hover {
    color: var(--accent);
}

.contact-form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(2, 124, 104, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.form-legal {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.form-legal a {
    color: var(--accent);
    text-decoration: underline;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-content h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-content p {
    color: #b2dfdb;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-links a {
    color: #b2dfdb;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* =========================================
   WHATSAPP FLOAT BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* =========================================
   MODALS
   ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    box-shadow: var(--shadow-hover);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.modal-content p {
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.close {
    color: var(--text-light);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {

    /* =========================================
   RESPONSIVE DESIGN
   ========================================= */
    @media (max-width: 1024px) {

        .hero-wrapper,
        .content-wrapper {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .hero-visual {
            order: -1;
        }

        .image-container {
            max-width: 400px;
            height: 450px;
            margin: 0 auto;
        }

        .floating-status {
            left: 20px;
            bottom: 20px;
        }

        .contact-wrapper {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
    }

    @media (max-width: 768px) {
        .menu-toggle {
            display: block !important;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            z-index: 1001;
        }

        .desktop-only {
            display: none !important;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 280px;
            background: var(--bg-white);
            flex-direction: column;
            padding: 6rem 2rem 2rem;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            gap: 1.5rem;
        }

        .nav-links.active {
            right: 0;
        }

        .mobile-only {
            display: block !important;
        }

        .hero-modern {
            padding: 8rem 5% 4rem;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }

        .hero-description {
            font-size: 1.1rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .servicios-grid {
            grid-template-columns: 1fr;
        }

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

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .curiosidades-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 2rem;
        }

        .section-title {
            font-size: 1.75rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .stat-number,
        .stat-number-text {
            font-size: 2.5rem;
        }

        .whatsapp-float {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            bottom: 20px;
            right: 20px;
        }

        .modal-content {
            padding: 2rem;
            margin: 10% auto;
        }

        .cookie-content {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            padding: 1.5rem 5%;
        }

        .cookie-icon {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            margin: 0 auto;
        }

        .cookie-text {
            text-align: center;
        }

        .cookie-actions {
            justify-content: center;
        }

        .cookie-content {
            padding: 2rem;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 2rem;
        }

        .section-title {
            font-size: 1.75rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .stat-number,
        .stat-number-text {
            font-size: 2.5rem;
        }

        .whatsapp-float {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            bottom: 20px;
            right: 20px;
        }

        .modal-content {
            padding: 2rem;
            margin: 10% auto;
        }

        .cookie-content {
            padding: 1.5rem;
        }
    }
}