/* ========================================
   AUTOFORROS WILL - Landing Page Styles
   Colores de marca:
   - Verde principal: #3CB54A
   - Verde oscuro: #1E6F2D
   - Verde claro/glow: #6AFF7A
   - Gris metálico: #CFCFCF
   - Blanco: #FFFFFF
   - Negro: #000000
   - Fondo digital: #0E0E0E
======================================== */

/* ===== Variables ===== */
:root {
    --verde-principal: #3CB54A;
    --verde-oscuro: #1E6F2D;
    --verde-claro: #6AFF7A;
    --gris-metalico: #CFCFCF;
    --blanco: #FFFFFF;
    --negro: #000000;
    --fondo-digital: #0E0E0E;
    --fondo-seccion: #111111;
    --texto-gris: #B0B0B0;
    
    --header-height: 5.5rem;
    --font-primary: 'Poppins', sans-serif;
    
    --shadow-sm: 0 2px 10px rgba(60, 181, 74, 0.1);
    --shadow-md: 0 5px 25px rgba(60, 181, 74, 0.15);
    --shadow-lg: 0 10px 40px rgba(60, 181, 74, 0.2);
    --shadow-neon: 0 0 30px rgba(60, 181, 74, 0.4), 0 0 60px rgba(60, 181, 74, 0.2);
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--fondo-digital);
    color: var(--blanco);
    line-height: 1.6;
    overflow-x: hidden;
    font-display: swap;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--verde-principal);
    position: relative;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--fondo-digital);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__inner {
    text-align: center;
}

.preloader__logo {
    width: 150px;
    height: auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(60, 181, 74, 0.5));
}

.preloader__bar {
    width: 200px;
    height: 3px;
    background: rgba(60, 181, 74, 0.2);
    border-radius: 10px;
    margin-top: 2rem;
    overflow: hidden;
}

.preloader__progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--verde-principal), var(--verde-claro));
    border-radius: 10px;
    animation: preloaderBar 1.5s ease-in-out forwards;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(60, 181, 74, 0.5)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 40px rgba(60, 181, 74, 0.8)); }
}

@keyframes preloaderBar {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn--primary {
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-oscuro));
    color: var(--blanco);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
    background: linear-gradient(135deg, var(--verde-claro), var(--verde-principal));
}

.btn--secondary {
    background: transparent;
    color: var(--blanco);
    border: 2px solid var(--verde-principal);
}

.btn--secondary:hover {
    background: var(--verde-principal);
    color: var(--blanco);
    box-shadow: var(--shadow-md);
}

.btn--light {
    background: var(--blanco);
    color: var(--verde-oscuro);
}

.btn--light:hover {
    background: var(--verde-claro);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(106, 255, 122, 0.3);
}

.btn--glow {
    position: relative;
    overflow: hidden;
}

.btn--glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== Section Headers ===== */
.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__subtitle {
    display: inline-block;
    color: var(--verde-principal);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blanco);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scroll-header {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    background: rgba(14, 14, 14, 0.95);
    border-bottom: 1px solid rgba(60, 181, 74, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav__logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 65px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(60, 181, 74, 0.3));
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(60, 181, 74, 0.6));
    transform: scale(1.05);
}

.nav__list {
    display: flex;
    gap: 2.5rem;
}

.nav__link {
    color: var(--gris-metalico);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 1.05rem;
}

.nav__link:hover,
.nav__link.active {
    color: var(--verde-principal);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--verde-principal), var(--verde-claro));
    transition: var(--transition);
    border-radius: 2px;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: var(--blanco);
    cursor: pointer;
}

/* ===== Hero — Video Background ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--fondo-digital);
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

/* En móviles, ocultar video del hero y usar fondo negro */
@media screen and (max-width: 768px) {
    .hero__video {
        display: none;
    }
    
    .hero {
        background-color: #0a0a0a;
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: 
        linear-gradient(180deg, rgba(14, 14, 14, 0.7) 0%, rgba(14, 14, 14, 0.4) 40%, rgba(14, 14, 14, 0.8) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(60, 181, 74, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(106, 255, 122, 0.08) 0%, transparent 50%);
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--verde-claro);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
    filter: blur(1px);
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.hero__data {
    max-width: 800px;
}

/* Hero Logo */
.hero__logo-showcase {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: heroLogoEntry 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__logo-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 75%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(10px);
}

.hero__logo-main {
    width: 220px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(60, 181, 74, 0.6)) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
    animation: logoGlow 3s ease-in-out infinite;
}

.hero__logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(60, 181, 74, 0.3) 0%, rgba(60, 181, 74, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes heroLogoEntry {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(60, 181, 74, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(60, 181, 74, 0.8)) drop-shadow(0 0 80px rgba(106, 255, 122, 0.3));
    }
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.hero__badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(60, 181, 74, 0.12);
    border: 1px solid rgba(60, 181, 74, 0.25);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--verde-claro);
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease 0.5s both;
}

.hero__badge-top--centered {
    display: flex;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(60, 181, 74, 0.15);
    border: 2px solid rgba(60, 181, 74, 0.4);
    box-shadow: 0 0 30px rgba(60, 181, 74, 0.2);
}

.hero__badge-top i {
    color: var(--verde-principal);
}

/* Hero Title — Stacked Lines */
.hero__title {
    margin-bottom: 1.5rem;
}

.hero__title-line {
    display: block;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero__title-line:first-child {
    font-size: 3.5rem;
    color: var(--blanco);
    animation: titleReveal 0.8s ease 0.6s both;
}

.hero__title-line--accent {
    font-size: 4.5rem;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-claro));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 0.8s ease 0.8s both;
    filter: drop-shadow(0 0 20px rgba(60, 181, 74, 0.3));
}

.hero__title-sub {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--gris-metalico);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    animation: titleReveal 0.8s ease 1s both;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero__description {
    font-size: 1.1rem;
    color: var(--texto-gris);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 1.1s both;
}

.hero__features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gris-metalico);
    font-size: 0.9rem;
}

.hero__feature i {
    color: var(--verde-principal);
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 1.3s both;
}

.hero__trust {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease 1.4s both;
}

.hero__trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--verde-principal);
}

.trust-label {
    font-size: 0.8rem;
    color: var(--texto-gris);
}

.hero__trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero__scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--verde-principal);
    font-size: 0.85rem;
}

.hero__scroll i {
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== Why Upholstery Section ===== */
.why-upholstery {
    background: linear-gradient(180deg, #0a1a0d 0%, var(--fondo-seccion) 100%);
}

/* ===== Video Showcase Section ===== */
.video-showcase {
    background: linear-gradient(180deg, var(--fondo-seccion) 0%, #0a0a0a 50%, var(--fondo-seccion) 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(60, 181, 74, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(106, 255, 122, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.video-showcase__wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.video-showcase__player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(60, 181, 74, 0.15);
}

.video-showcase__player video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-showcase__glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-claro), var(--verde-oscuro));
    z-index: -1;
    opacity: 0.6;
    filter: blur(2px);
    animation: glowRotate 8s linear infinite;
}

@keyframes glowRotate {
    0% { filter: blur(2px) hue-rotate(0deg); }
    100% { filter: blur(2px) hue-rotate(360deg); }
}

.video-showcase__controls {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.video-showcase__controls:hover {
    background: rgba(0, 0, 0, 0.3);
}

.video-showcase__controls.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-showcase__play {
    width: 100px;
    height: 100px;
    border: 3px solid var(--verde-principal);
    background: rgba(60, 181, 74, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-claro);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.video-showcase__play:hover {
    background: var(--verde-principal);
    color: var(--blanco);
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(60, 181, 74, 0.5);
}

.video-showcase__play i {
    margin-left: 5px;
}

.video-showcase__text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blanco);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-showcase__info {
    padding: 1rem 0;
}

.video-showcase__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(60, 181, 74, 0.1);
    border: 1px solid rgba(60, 181, 74, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--verde-claro);
    margin-bottom: 1.5rem;
}

.video-showcase__badge i {
    color: var(--verde-principal);
}

.video-showcase__info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--blanco) 0%, var(--gris-metalico) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-showcase__info p {
    color: var(--texto-gris);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.video-showcase__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.video-showcase__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gris-metalico);
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    background: rgba(60, 181, 74, 0.05);
    border: 1px solid rgba(60, 181, 74, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.video-showcase__features li:hover {
    border-color: var(--verde-principal);
    background: rgba(60, 181, 74, 0.1);
}

.video-showcase__features li i {
    color: var(--verde-principal);
    font-size: 0.9rem;
}

@media screen and (max-width: 968px) {
    .video-showcase__wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .video-showcase__info h3 {
        font-size: 1.8rem;
    }
    
    .video-showcase__features {
        grid-template-columns: 1fr;
    }
    
    .video-showcase__play {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .video-showcase__info h3 {
        font-size: 1.5rem;
    }
    
    .video-showcase__info p {
        font-size: 0.95rem;
    }
    
    .video-showcase__play {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .video-showcase__text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .video-showcase__badge {
        font-size: 0.8rem;
    }
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit__card {
    background: linear-gradient(145deg, rgba(60, 181, 74, 0.05), rgba(14, 14, 14, 0.8));
    border: 1px solid rgba(60, 181, 74, 0.15);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.benefit__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--verde-principal), var(--verde-claro));
    transform: scaleX(0);
    transition: var(--transition);
}

.benefit__card:hover {
    transform: translateY(-5px);
    border-color: var(--verde-principal);
    box-shadow: 0 20px 40px rgba(60, 181, 74, 0.15);
}

.benefit__card:hover::before {
    transform: scaleX(1);
}

.benefit__card--featured {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(60, 181, 74, 0.1), rgba(30, 111, 45, 0.15));
    border-color: rgba(60, 181, 74, 0.3);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.benefit__card--featured .benefit__icon {
    width: 120px;
    height: 120px;
    font-size: 3rem;
}

.benefit__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-oscuro));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--blanco);
    margin-bottom: 1rem;
}

.benefit__card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--blanco);
}

.benefit__card p {
    color: var(--texto-gris);
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefit__card p strong {
    color: var(--verde-claro);
}

/* ===== Services ===== */
.services {
    background: var(--fondo-seccion);
}

.services__main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.services__grid--secondary {
    grid-template-columns: repeat(3, 1fr);
}

.service__card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-slow);
    border: 1px solid rgba(60, 181, 74, 0.1);
    position: relative;
    overflow: hidden;
}

.service__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(60, 181, 74, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service__card:hover::after {
    opacity: 1;
}

.service__card--large {
    padding: 3rem;
}

.service__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-oscuro));
    color: var(--blanco);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.service__card:hover {
    transform: translateY(-10px);
    border-color: var(--verde-principal);
    box-shadow: var(--shadow-lg);
}

.service__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-oscuro));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--blanco);
    position: relative;
    z-index: 2;
}

.service__icon--large {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
}

.service__icon--image {
    overflow: hidden;
    padding: 0;
    background: none;
    border: 3px solid var(--verde-principal);
    box-shadow: 0 0 20px rgba(60, 181, 74, 0.3);
}

.service__icon--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    image-rendering: -webkit-optimize-contrast;
}

.service__card:hover .service__icon--image img {
    transform: scale(1.1);
}

.service__icon--image.service__icon--large {
    width: 180px;
    height: 180px;
    border-width: 4px;
}

.service__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--blanco);
    position: relative;
    z-index: 2;
}

.service__description {
    color: var(--texto-gris);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service__description strong {
    color: var(--gris-metalico);
}

.service__features {
    text-align: left;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.service__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--texto-gris);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service__features i {
    color: var(--verde-principal);
    font-size: 0.8rem;
}

/* ===== Showcase / Gallery ===== */
.showcase {
    background: linear-gradient(180deg, var(--fondo-seccion), #0a1a0d, var(--fondo-digital));
    padding: 6rem 0;
}

/* Featured Showcase */
.showcase__featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.showcase__featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(60, 181, 74, 0.2);
    box-shadow: var(--shadow-neon);
    cursor: pointer;
    transition: var(--transition-slow);
}

.showcase__featured-image:hover {
    border-color: var(--verde-principal);
    box-shadow: 0 0 40px rgba(60, 181, 74, 0.4), 0 0 80px rgba(60, 181, 74, 0.15);
    transform: scale(1.02);
}

.showcase__featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.showcase__featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.showcase__featured-image:hover .showcase__featured-overlay {
    opacity: 1;
}

.showcase__tag {
    background: rgba(60, 181, 74, 0.2);
    border: 1px solid var(--verde-principal);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--verde-claro);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.showcase__featured-info {
    padding: 1rem 0;
}

.showcase__featured-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--blanco), var(--gris-metalico));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase__featured-info p {
    color: var(--texto-gris);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.showcase__points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.showcase__point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    background: rgba(60, 181, 74, 0.08);
    border: 1px solid rgba(60, 181, 74, 0.15);
    border-radius: 12px;
    color: var(--gris-metalico);
    font-size: 0.9rem;
    transition: var(--transition);
}

.showcase__point:hover {
    border-color: var(--verde-principal);
    background: rgba(60, 181, 74, 0.15);
}

.showcase__point i {
    color: var(--verde-principal);
    font-size: 1.1rem;
}

/* Gallery Grid */
.showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.showcase__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(60, 181, 74, 0.15);
    aspect-ratio: 16/10;
    cursor: pointer;
    transition: var(--transition-slow);
}

.showcase__item:hover {
    border-color: var(--verde-principal);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.showcase__item img,
.showcase__item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.showcase__item:hover img {
    transform: scale(1.05);
}

.showcase__item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.showcase__item:hover .showcase__item-overlay {
    opacity: 1;
}

.showcase__item-overlay span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blanco);
}

/* Video controls */
.showcase__video-controls {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(0,0,0,0.5);
    transition: var(--transition);
    z-index: 2;
}

.showcase__item--video:hover .showcase__video-controls {
    background: rgba(0,0,0,0.3);
}

.showcase__play-btn {
    width: 60px;
    height: 60px;
    border: 2px solid var(--verde-principal);
    background: rgba(60, 181, 74, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-claro);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.showcase__play-btn:hover {
    background: var(--verde-principal);
    color: var(--blanco);
    box-shadow: var(--shadow-neon);
    transform: scale(1.1);
}

.showcase__play-btn.playing i::before {
    content: "\f04c";
}

.showcase__video-controls span {
    font-size: 0.85rem;
    color: var(--gris-metalico);
    font-weight: 500;
}

.showcase__video-controls.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Extended Gallery */
.showcase__extended {
    margin-top: 4rem;
}

.showcase__extended-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gris-metalico);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.showcase__extended-title i {
    color: var(--verde-principal);
}

.showcase__masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.showcase__item--gallery {
    aspect-ratio: 1/1;
    border-radius: 12px;
}

.showcase__item--gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1200px) {
    .showcase__masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .showcase__masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .showcase__masonry {
        grid-template-columns: 1fr;
    }
    
    .showcase__item--gallery {
        aspect-ratio: 16/10;
    }
}

/* ===== About ===== */
.about {
    background: var(--fondo-digital);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__description {
    color: var(--texto-gris);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.about__stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--verde-principal);
}

.stat__label {
    font-size: 0.85rem;
    color: var(--texto-gris);
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gris-metalico);
}

.feature i {
    color: var(--verde-principal);
}

.about__image {
    display: flex;
    justify-content: center;
}

.about__image-wrapper {
    position: relative;
}

.about-logo {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(60, 181, 74, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.about__badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-oscuro));
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.about__badge i {
    font-size: 1.5rem;
}

/* ===== Why Us ===== */
.why-us {
    background: linear-gradient(180deg, var(--fondo-seccion), var(--fondo-digital));
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-us__card {
    padding: 2rem;
    border-radius: 15px;
    background: rgba(60, 181, 74, 0.05);
    border: 1px solid rgba(60, 181, 74, 0.1);
    transition: var(--transition-slow);
}

.why-us__card:hover {
    background: rgba(60, 181, 74, 0.1);
    border-color: var(--verde-principal);
    transform: translateY(-5px);
}

.why-us__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--verde-principal);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.why-us__card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-us__card p {
    color: var(--texto-gris);
    font-size: 0.9rem;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-oscuro));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta__content {
    position: relative;
    z-index: 2;
}

.cta__content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta__content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== Contact ===== */
.contact {
    background: var(--fondo-digital);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(60, 181, 74, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(60, 181, 74, 0.1);
    transition: var(--transition);
}

.contact__card:hover {
    border-color: var(--verde-principal);
    transform: translateX(5px);
}

.contact__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-oscuro));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact__data h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--verde-principal);
}

.contact__data p {
    color: var(--texto-gris);
    font-size: 0.95rem;
}

.contact__data a {
    color: var(--gris-metalico);
    transition: var(--transition);
}

.contact__data a:hover {
    color: var(--verde-principal);
}

.contact__map {
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
    border: 2px solid rgba(60, 181, 74, 0.2);
}

/* ===== Footer ===== */
.footer {
    background: #0a0a0a;
    padding: 4rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer__brand p {
    color: var(--texto-gris);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: rgba(60, 181, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-principal);
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--verde-principal);
    color: var(--blanco);
    transform: translateY(-3px);
}

.footer__links h3,
.footer__contact h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--blanco);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer__links a {
    color: var(--texto-gris);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--verde-principal);
    padding-left: 5px;
}

.footer__contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--texto-gris);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer__contact i {
    color: var(--verde-principal);
    width: 20px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer__bottom p {
    color: var(--texto-gris);
    font-size: 0.85rem;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--blanco);
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--blanco);
    color: var(--negro);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--blanco);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--verde-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--verde-oscuro);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(60, 181, 74, 0.2);
    border: 1px solid var(--verde-principal);
    border-radius: 50%;
    color: var(--blanco);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox__close:hover {
    background: var(--verde-principal);
}

.lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 60px rgba(60, 181, 74, 0.2);
    animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== Scroll Reveal Animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media screen and (max-width: 1200px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit__card--featured {
        grid-column: span 2;
    }
}

@media screen and (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(14, 14, 14, 0.98);
        backdrop-filter: blur(20px);
        padding: 5rem 2rem;
        transition: var(--transition);
        z-index: 100;
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
        font-size: 1.8rem;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .hero__badge-top--centered {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero__logo-main {
        width: 160px;
    }

    .hero__logo-glow {
        width: 220px;
        height: 220px;
    }

    .hero__title-line:first-child {
        font-size: 2.5rem;
    }
    
    .hero__title-line--accent {
        font-size: 3rem;
    }
    
    .hero__title-sub {
        font-size: 1.3rem;
        letter-spacing: 3px;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .benefits__grid {
        grid-template-columns: 1fr;
    }
    
    .benefit__card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .benefit__card--featured .benefit__icon {
        margin: 0 auto 1rem;
    }
    
    .services__main {
        grid-template-columns: 1fr;
    }
    
    .service__icon--image.service__icon--large {
        width: 150px;
        height: 150px;
    }
    
    .services__grid--secondary {
        grid-template-columns: 1fr;
    }

    .showcase__featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase__grid {
        grid-template-columns: 1fr;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about__features {
        justify-content: center;
    }
    
    .about__image {
        order: -1;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --header-height: 4.5rem;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section__title {
        font-size: 1.8rem;
    }
    
    .hero__badge-top--centered {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 0.3rem;
    }
    
    .hero__badge-top--centered span {
        line-height: 1.4;
    }
    
    .hero__logo-main {
        width: 130px;
    }
    
    .service__icon--image.service__icon--large {
        width: 130px;
        height: 130px;
    }

    .hero__logo-glow {
        width: 180px;
        height: 180px;
    }

    .hero__title-line:first-child {
        font-size: 2rem;
    }
    
    .hero__title-line--accent {
        font-size: 2.5rem;
    }

    .hero__title-sub {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__trust {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .hero__trust-divider {
        width: 40px;
        height: 1px;
    }

    .showcase__points {
        grid-template-columns: 1fr;
    }

    .showcase__featured-info h3 {
        font-size: 1.5rem;
    }
    
    .about__stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 20px;
    }

    .cta__content h2 {
        font-size: 1.8rem;
    }
}
