/* ================================================================
   ESTILO PROFESIONAL - ABZ ASSISTÈNCIA
   Tipografía: Poppins (Moderna y Legible)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --brand-yellow: #f8e71c;
    --action-color: #2c2e31;
    --white: #ffffff;
    --white-off: #f8f9fa;
    --black: #0f0f0f;
    --gray-dark: #111111;
    --gray-topbar: #1a1a1a;
    --gray-light: #e5e7eb;
    --gray-border: #d1d5db;
    --text-gray: #6b7280;
    --text-dark: #1f2937;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif;
}

html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 140px;
}

body { 
    background-color: var(--white); 
    color: var(--text-dark); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

/* ================================================================
   TOP BAR
   ================================================================ */
.top-bar {
    background-color: var(--gray-topbar);
    color: #9ca3af;
    font-size: 0.85rem;
    padding: 10px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid #374151;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.top-info { 
    display: flex; 
    gap: 30px; 
    align-items: center;
}

.info-item { 
    display: flex; 
    align-items: center; 
    gap: 8px;
}

.info-item i { 
    color: var(--brand-yellow);
    font-size: 0.9rem;
}

/* ================================================================
   HEADER & LOGO
   ================================================================ */
header {
    position: fixed; 
    top: 40px; 
    width: 100%; 
    height: 80px;
    background: var(--white); 
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0 5%; 
    z-index: 1000; 
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

header.scrolled {
    height: 70px;
    top: 35px;
    box-shadow: var(--shadow-md);
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.logo-img { 
    height: 55px; 
    object-fit: contain;
}

.logo-text { 
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase; 
    font-size: 1.6rem; 
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--black);
    line-height: 1;
}

.yellow { 
    color: var(--brand-yellow); 
}

.menu-btn { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    cursor: pointer; 
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 6px;
    transition: var(--transition);
}

.menu-btn:hover {
    background: var(--white-off);
}

.hamburger .bar { 
    width: 22px; 
    height: 2.5px; 
    background-color: var(--black); 
    margin: 4px 0;
    transition: var(--transition);
}

/* ================================================================
   SIDE NAVIGATION
   ================================================================ */
.side-nav {
    position: fixed; 
    top: 0; 
    right: -320px; 
    width: 320px; 
    height: 100vh;
    background: var(--white);
    z-index: 1100; 
    transition: var(--transition);
    padding: 30px; 
    box-shadow: var(--shadow-lg);
    display: flex; 
    flex-direction: column;
    border-left: 1px solid var(--gray-light);
}

.side-nav.active { 
    right: 0; 
}

.close-btn { 
    font-size: 2rem; 
    cursor: pointer; 
    text-align: right; 
    margin-bottom: 30px;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--brand-yellow);
    transform: rotate(90deg);
}

/* SELECTOR DE IDIOMA MEJORADO - VISIBLE ARRIBA */
.lang-selector-top {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--gray-light);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: var(--white-off);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.lang-option:hover {
    background: var(--white);
    border-color: var(--brand-yellow);
    transform: translateX(5px);
}

.lang-option.active {
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
}

.lang-option img {
    border-radius: 4px;
    width: 24px;
    height: auto;
}

.lang-option i {
    margin-left: auto;
    color: var(--brand-yellow);
    opacity: 0;
    transition: var(--transition);
}

.lang-option.active i {
    opacity: 1;
}

.side-nav ul { 
    list-style: none; 
    flex-grow: 1; 
}

.side-nav li { 
    margin: 12px 0; 
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
}

.side-nav a { 
    text-decoration: none; 
    color: var(--text-dark); 
    font-weight: 600; 
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: block;
    display: flex;
    align-items: center;
    gap: 12px;
}

.side-nav a i {
    width: 24px;
    font-size: 1.1rem;
    color: var(--brand-yellow);
    transition: var(--transition);
}

.side-nav a:hover { 
    color: var(--brand-yellow);
    padding-left: 8px;
}

.side-nav a:hover i {
    transform: translateX(5px);
}

/* ================================================================
   HERO SECTION - SIN ANIMACIONES DE ZOOM
   ================================================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center; 
    padding: 0 20px; 
    margin-top: 120px;
    overflow: hidden;
    background: var(--black);
}

/* Slider de Imágenes */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Transición suave SIN zoom */
}

.hero-slide.active {
    opacity: 0.7;  /* Imagen más visible */
}

/* Overlay más suave */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 15, 0.5) 0%,
        rgba(44, 46, 49, 0.4) 100%
    );
    z-index: 1;
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 900px; 
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 20px 0;
    letter-spacing: -0.03em;
}

.highlight-text { 
    color: var(--brand-yellow); 
}

.hero-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    font-weight: 300;
    margin: 30px auto 45px;
    max-width: 700px;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--brand-yellow);
    font-weight: 600;
}

.hero-actions { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
}

.btn-action {
    padding: 18px 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    font-size: 1rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.btn-whatsapp-now { 
    background: #25D366; 
    color: var(--white);
}

.btn-whatsapp-now:hover { 
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-call-now { 
    background: transparent; 
    color: var(--brand-yellow); 
    border: 2px solid var(--brand-yellow);
}

.btn-call-now:hover { 
    background: var(--brand-yellow);
    color: var(--black);
    transform: translateY(-2px);
}

/* Indicadores del slider */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider-dot.active {
    background: var(--brand-yellow);
    width: 30px;
    border-radius: 6px;
    border-color: var(--white);
}

.hero-slider-dot:hover {
    background: var(--white);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        margin-top: 105px;
        min-height: auto;
        padding: 80px 20px 100px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-slider-dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
}

/* ================================================================
   SECCIONES COMUNES - HEADERS
   ================================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--black);
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ================================================================
   STEPS SECTION
   ================================================================ */
.steps-section {
    background: var(--white-off);
    padding: 100px 5%;
    position: relative;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: var(--brand-yellow);
    z-index: 0;
}

.step-item {
    flex: 1;
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 20px;
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-badge {
    background: var(--action-color);
    color: var(--brand-yellow);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px 28px;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.step-item h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 15px;
}

.step-arrow {
    color: var(--text-gray);
    font-size: 1.5rem;
    margin-top: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* ================================================================
   SERVICES SECTION (GRID CLÁSICO)
   ================================================================ */
.services-section {
    padding: 100px 5%;
    background: var(--white);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--gray-border);
    border: 1px solid var(--gray-border);
}

.service-card {
    background: var(--white);
    padding: 40px 35px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    background: var(--white-off);
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--brand-yellow);
}

.service-card p {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    margin-top: 20px;
}

.service-card.full-width {
    grid-column: 1 / -1;
    text-align: center;
    background: var(--action-color);
}

.service-card.full-width h3,
.service-card.full-width p {
    color: var(--white);
}

.service-card.full-width h3::after {
    background: var(--brand-yellow);
    left: 50%;
    transform: translateX(-50%);
}

/* ================================================================
   🎠 CARRUSEL DE SERVICIOS - OPTIMIZADO MÓVIL
   ================================================================ */

.carousel-section {
    padding: 80px 5%;
    background: var(--white-off);
    position: relative;
    overflow: hidden;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
    cursor: grab;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-wrapper:active {
    cursor: grabbing;
}

.carousel-card {
    flex: 0 0 350px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-border);
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--action-color);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.carousel-card:hover::before {
    opacity: 1;
}

.carousel-card:hover .card-content h3,
.carousel-card:hover .card-content p {
    color: var(--white);
}

.carousel-card:hover .card-button {
    background: var(--brand-yellow);
    color: var(--black);
}

.carousel-card:hover .card-button i {
    color: var(--black);
}

.card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    pointer-events: none;
    -webkit-user-drag: none;
}

.carousel-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 30px 25px;
    position: relative;
    z-index: 2;
    background: var(--white);
    transition: background 0.4s ease;
}

.carousel-card:hover .card-content {
    background: transparent;
}

.card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 25px;
    transition: color 0.4s ease;
}

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #e85035;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.card-button:hover {
    background: #d64025;
    transform: translateY(-2px);
}

.card-button:hover i {
    transform: translateX(3px);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-border);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--brand-yellow);
    width: 30px;
    border-radius: 5px;
}

.carousel-dot:hover {
    background: var(--action-color);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
}

.carousel-section:hover .carousel-nav {
    opacity: 1;
    pointer-events: auto;
}

.carousel-nav:hover {
    background: var(--action-color);
    border-color: var(--action-color);
    color: var(--brand-yellow);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

.carousel-nav i {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.carousel-nav:hover i {
    color: var(--brand-yellow);
}

/* ================================================================
   📞 CTA SECTION - LLAMADA A LA ACCIÓN
   ================================================================ */

.cta-section {
    background: var(--brand-yellow);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(248, 231, 28, 0.95) 0%,
        rgba(255, 235, 59, 0.95) 100%
    );
    z-index: 0;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--action-color);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 45px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 250px;
}

.cta-whatsapp {
    background: var(--action-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-whatsapp:hover {
    background: var(--gray-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-phone {
    background: var(--action-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-phone:hover {
    background: var(--gray-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button i {
    font-size: 1.3rem;
    transition: var(--transition);
}

.cta-button:hover i {
    transform: scale(1.1);
}

/* ================================================================
   STICKY BAR - CORREGIDO (FULL WIDTH)
   ================================================================ */

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
    background: var(--white);
    border-top: 3px solid var(--brand-yellow);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.sticky-bar-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-align: center;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-phone {
    background: var(--action-color);
    color: var(--white);
}

.btn-phone:hover {
    background: var(--gray-dark);
}

.sticky-bar a i {
    font-size: 1.3rem;
}

/* RESPONSIVE - TABLET */
@media (max-width: 992px) {
    .sticky-bar a {
        padding: 14px 15px;
        font-size: 0.9rem;
    }
}

/* RESPONSIVE - MÓVIL */
@media (max-width: 768px) {
    .sticky-bar-container {
        flex-direction: column;
    }
    
    .sticky-bar a {
        padding: 14px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .sticky-bar a i {
        font-size: 1.2rem;
    }
}

/* RESPONSIVE - MÓVIL PEQUEÑO */
@media (max-width: 480px) {
    .sticky-bar a {
        padding: 12px 15px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .sticky-bar a i {
        font-size: 1.1rem;
    }
}

/* Ajuste para que el footer no quede tapado */
body {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 110px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 130px;
    }
}

/* ================================================================
   FOOTER
   ================================================================ */
.main-footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 80px 5% 120px 5%;
    border-top: 4px solid var(--brand-yellow);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
}

.footer-col h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--brand-yellow);
}

.footer-logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 20px; 
}

.footer-logo img { 
    height: 45px;
}

.footer-logo .logo-text {
    font-size: 1.4rem;
}

.footer-col p, 
.footer-col li { 
    color: #9ca3af; 
    font-size: 0.95rem; 
    font-weight: 400;
    line-height: 1.8;
}

.footer-col ul { 
    list-style: none; 
}

.footer-col li { 
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-col li i {
    color: var(--brand-yellow);
    font-size: 0.75rem;
    margin-top: 6px;
}

.footer-col a { 
    color: #9ca3af; 
    text-decoration: none; 
    transition: var(--transition);
}

.footer-col a:hover { 
    color: var(--brand-yellow); 
}

.social-links { 
    display: flex; 
    gap: 12px; 
    margin-top: 25px; 
}

.social-links a {
    width: 40px; 
    height: 40px; 
    background: #374151;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 50%; 
    color: white;
    transition: var(--transition);
    font-size: 1rem;
}

.social-links a:hover { 
    background: var(--brand-yellow); 
    color: var(--black);
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--brand-yellow);
    font-size: 1rem;
    min-width: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 60px;
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
}

.footer-bottom strong {
    color: var(--brand-yellow);
}

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */

@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .step-item {
        max-width: 350px;
        width: 100%;
    }
    
    .step-arrow {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.full-width {
        grid-column: 1;
    }
    
    .carousel-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hide-mobile { 
        display: none; 
    }
    
    header { 
        top: 35px; 
        height: 70px;
        padding: 0 4%;
    }
    
    header.scrolled {
        top: 30px;
    }
    
    .logo-img { 
        height: 48px; 
    }
    
    .logo-text { 
        font-size: 1.4rem; 
    }
    
    .hero { 
        margin-top: 105px; 
        min-height: auto; 
        padding: 80px 20px 100px; 
    }
    
    .hero h1 { 
        font-size: 2.2rem; 
    }
    
    .hero-actions { 
        flex-direction: column; 
        align-items: center;
        gap: 15px;
    }
    
    .btn-action { 
        width: 100%; 
        max-width: 300px;
        justify-content: center;
        min-height: 48px;
        padding: 15px 30px;
    }
    
    .steps-section,
    .services-section,
    .carousel-section {
        padding: 60px 4%;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .carousel-card {
        flex: 0 0 280px;
    }
    
    .carousel-wrapper {
        gap: 15px;
        padding: 15px 5px;
        touch-action: pan-x;
    }
    
    .card-button {
        min-height: 48px;
        padding: 12px 25px;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 60px 4%;
    }
    
    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
        min-height: 52px;
        padding: 18px 35px;
        font-size: 1.05rem;
    }
    
    .main-footer {
        padding: 60px 4% 100px;
    }
    
    .footer-container {
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-col li,
    .contact-info p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 8px 4%;
        font-size: 0.75rem;
    }
    
    .top-info {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .step-badge {
        font-size: 0.75rem;
        padding: 10px 22px;
    }
    
    .step-item h3 {
        font-size: 1.05rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .carousel-card {
        flex: 0 0 280px;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    .card-content h3 {
        font-size: 1.15rem;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-dot.active {
        width: 24px;
    }
    
    /* CTA Section Mobile Small */
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 16px 30px;
    }
}

/* ================================================================
   ANIMACIONES DE REVELACIÓN
   ================================================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.service-card, .step-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.active, .step-item.active {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }

.step-item:nth-child(1) { transition-delay: 0.1s; }
.step-item:nth-child(2) { transition-delay: 0.2s; }
.step-item:nth-child(3) { transition-delay: 0.3s; }
.step-item:nth-child(4) { transition-delay: 0.4s; }

/* ================================================================
   ACCESIBILIDAD
   ================================================================ */

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--brand-yellow);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html { scroll-behavior: auto; }
}

input, textarea, select {
    font-size: 16px;
}