/* ========================================
   ALF Abogados - Sistema de Diseño Premium
   Inspirado en LawTrades
   ======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ========================================
   Variables - Sistema de Diseño
   ======================================== */
:root {
    /* Colores Principales */
    --primary-color: #1A1F2C;
    --accent-color: #C5A059;
    --accent-hover: #D4AF37;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --border-color: #E5E7EB;

    /* Colores Secundarios */
    --success: #10B981;
    --topbar-bg: #E5E5E5;
    --topbar-text: #333333;

    /* Tipografía */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Inter', -apple-system, sans-serif;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* Bordes */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 50px;

    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Layout
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--topbar-bg);
    padding: 14px 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    color: var(--topbar-text);
    font-weight: 500;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--topbar-text);
    font-weight: 500;
}

.top-bar-phone:hover {
    color: var(--accent-color);
}

.top-bar-phone svg {
    fill: var(--accent-color);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(26, 31, 44, 0.08);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--accent-color);
    color: var(--white);
}

.top-bar-social a svg {
    fill: currentColor;
    width: 14px;
    height: 14px;
}

/* ========================================
   Header & Navigation
   ======================================== */
header {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

header.scrolled {
    top: 0;
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-color) !important;
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: var(--radius-full);
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.35);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ========================================
   Glassmorphism Effect (Reusable)
   ======================================== */
.glass-effect {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(197, 160, 89, 0.15);
    border-radius: 16px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    background-color: #F9F7F2;
    background-image:
        radial-gradient(ellipse at 80% 20%, rgba(197, 160, 89, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(26, 31, 44, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right center, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
}

.hero-text {
    flex: 1;
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: #8B7355;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.12);
}

.hero-badge::before {
    content: '\2696';
    font-size: 1.1rem;
    color: var(--accent-color);
}

.hero h1 {
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--accent-color);
    font-weight: 700;
}

.hero-subheadline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.hero-context {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 520px;
}

/* Hero Buttons - Inside Card */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 16px 24px;
    font-size: 1rem;
}

.hero-buttons .btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.hero-buttons .btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-number span {
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 6px;
    font-weight: 500;
}

/* Hero Visual (Right Column) */
.hero-visual {
    flex: 1;
    max-width: 480px;
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(197, 160, 89, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.hero-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.hero-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 26px;
    height: 26px;
    background: rgba(197, 160, 89, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    color: var(--accent-color);
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(197, 160, 89, 0.25);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.hero-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
}

.float-1 {
    top: -10px;
    right: 20px;
    animation: float 4s ease-in-out infinite;
}

.float-1::after {
    content: '✓';
    margin-left: 8px;
    color: var(--accent-color);
}

.float-2 {
    bottom: 30px;
    left: -40px;
    animation: float 4s ease-in-out infinite 1.5s;
}

.float-2::after {
    content: '⏱';
    margin-left: 8px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   Solutions Carousel
   ======================================== */
.solutions-carousel {
    background: transparent;
    padding: 0;
    overflow: visible;
    position: relative;
    z-index: 10;
}

.carousel-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.2);
    max-width: 900px;
    margin: -40px auto 60px auto;
    padding: 30px;
    position: relative;
    z-index: 10;
}

.carousel-slides {
    position: relative;
    height: 130px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transform: translateX(60px);
    transition: var(--transition-slow);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.slide-problem {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--text-light);
}

.slide-arrow {
    color: var(--accent-color);
    animation: pulseArrow 1.5s ease-in-out infinite;
}

.slide-arrow svg {
    width: 40px;
    height: 40px;
}

@keyframes pulseArrow {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(12px); opacity: 0.6; }
}

.slide-solution {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--primary-color);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(26, 31, 44, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicators .indicator.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

.carousel-indicators .indicator:hover {
    background: rgba(26, 31, 44, 0.3);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 24px;
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits {
    background: var(--white);
    padding: 100px 0;
}

.benefits-category {
    margin-bottom: 56px;
}

.benefits-category:last-child {
    margin-bottom: 0;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--accent-color);
}

.category-title i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

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

.benefit-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    border-radius: 4px 0 0 4px;
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(197, 160, 89, 0.2);
}

.benefit-card:hover::before {
    transform: scaleY(1);
}

.benefit-card:hover .benefit-card-icon {
    background: rgba(197, 160, 89, 0.2);
}

.benefit-card:hover .benefit-card-icon i {
    transform: scale(1.1);
}

.benefit-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.benefit-card-icon i {
    font-size: 28px;
    color: var(--accent-color);
    transition: var(--transition);
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Exterior Section
   ======================================== */
.exterior {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D3548 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.exterior::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
}

.exterior-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.exterior-text .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.exterior-text h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.exterior-subheadline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.exterior-benefits {
    list-style: none;
    margin-bottom: 36px;
}

.exterior-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.exterior-benefits .benefit-icon {
    background: rgba(197, 160, 89, 0.25);
    color: var(--accent-color);
}

.exterior-testimonial .testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exterior-testimonial .testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-family: var(--font-display);
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
}

.exterior-testimonial .testimonial-text {
    color: var(--white);
    font-style: italic;
    margin-bottom: 24px;
}

.exterior-testimonial .testimonial-info h4 {
    color: var(--white);
}

.exterior-testimonial .testimonial-info p {
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--bg-light);
    padding: 100px 0;
}

.services .section-header h2 {
    color: var(--primary-color);
}

.services .section-header p {
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(197, 160, 89, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-number {
    opacity: 0.4;
    color: var(--accent-color);
}

.service-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Team Section
   ======================================== */
.team {
    background: var(--white);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-photo {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D3548 100%);
    padding: 48px;
    position: relative;
}

.team-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    border: 4px solid rgba(197, 160, 89, 0.4);
}

.team-info {
    padding: 32px;
}

.team-info h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.team-title {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.team-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Requirements Section
   ======================================== */
.requirements {
    background: var(--bg-light);
    padding: 100px 0;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.requirements h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.requirements > .container > .requirements-content > div > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-color);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.req-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.req-text h4 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.req-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background: var(--white);
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--text-dark);
}

.faq-item.active .faq-icon {
    background: var(--accent-color);
    color: var(--white);
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding-bottom: 26px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    background: var(--bg-light);
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 6rem;
    font-family: var(--font-display);
    color: var(--accent-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--white);
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--bg-light);
}

.contact-method-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-color);
}

.contact-method-text h4 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.contact-method-text p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   Forms
   ======================================== */
.contact-form {
    background: var(--bg-light);
    padding: 44px;
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--accent-color);
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--accent-color);
    font-weight: 500;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand .logo-img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 22px;
    font-size: 1rem;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-social a svg {
    fill: currentColor;
    width: 18px;
    height: 18px;
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 76px;
    background: var(--white);
    color: var(--text-dark);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ========================================
   Mobile Sticky Bar (Hidden on Desktop)
   ======================================== */
.mobile-sticky-bar {
    display: none;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

.hero h1 {
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero-subheadline {
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-context {
    animation: fadeInUp 0.7s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 0.7s ease-out 0.5s both;
}

.hero-stats {
    animation: fadeInUp 0.7s ease-out 0.6s both;
}

.hero-visual {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .hero {
        padding-bottom: 60px;
    }

    .hero-content {
        flex-direction: column;
        gap: 48px;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-float {
        display: none;
    }

    .services-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .requirements-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .exterior-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Hide Top Bar on Mobile */
    .top-bar {
        display: none;
    }

    header {
        top: 0;
    }

    /* Base */
    body {
        font-size: 16px;
        padding-bottom: 75px;
    }

    .container {
        padding: 0 20px;
    }

    /* ========================================
       4. REDUCCIÓN DE ESPACIOS (PADDING)
       ======================================== */
    section {
        padding: 45px 0;
    }

    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.6rem !important; }
    h3 { font-size: 1.1rem !important; }

    /* ========================================
       1. CONTRASTE DE SECCIONES (Ritmo Visual)
       ======================================== */
    .hero {
        background-color: #F9F7F2;
    }

    .solutions-carousel {
        background-color: #F9F7F2;
        padding: 0 0 40px 0;
    }

    .benefits {
        background-color: #FFFFFF;
    }

    .services {
        background-color: #F9F7F2;
    }

    .team {
        background-color: #FFFFFF;
    }

    .requirements {
        background-color: #F9F7F2;
    }

    .faq {
        background-color: #FFFFFF;
    }

    .testimonials {
        background-color: #F9F7F2;
    }

    .contact {
        background-color: #FFFFFF;
    }

    /* ========================================
       2. TARJETAS CON EFECTO "APP"
       ======================================== */
    .benefit-card,
    .service-card,
    .team-card,
    .testimonial-card {
        background: #FFFFFF;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        border-radius: 16px;
        padding: 25px;
        margin-bottom: 16px;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .benefit-card:hover,
    .service-card:hover,
    .team-card:hover,
    .testimonial-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    /* Navigation */
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        display: none;
        max-height: 70vh;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu {
        display: flex;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .logo-img {
        height: 55px;
    }

    /* Hero - Más compacto */
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-content {
        flex-direction: column;
        gap: 25px;
    }

    .hero-text {
        text-align: left;
        max-width: 100%;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .hero-context {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-visual {
        max-width: 100%;
    }

    .hero-float {
        display: none;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 12px;
        margin-bottom: 20px;
    }

    /* ========================================
       3. ESTADÍSTICAS DEL HERO (GRID 2x2)
       ======================================== */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        background: rgba(255, 255, 255, 0.6);
        padding: 20px;
        border-radius: 16px;
        margin-top: 30px;
        border: 1px solid rgba(197, 160, 89, 0.15);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .hero-stats .stat {
        text-align: center;
        padding: 10px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 12px;
    }

    .hero-stats .stat:last-child {
        grid-column: 1 / -1;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.75rem;
        margin-top: 4px;
    }

    .hero-card {
        padding: 28px 24px;
        background: #FFFFFF;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
    }

    .hero-buttons {
        margin-top: 20px;
        padding-top: 20px;
    }

    .hero-buttons .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    /* ========================================
       5. CARRUSEL EN MÓVIL (Tarjeta Flotante)
       ======================================== */
    .carousel-wrapper {
        margin: -30px 15px 40px 15px;
        padding: 25px 20px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(197, 160, 89, 0.12);
    }

    .carousel-slides {
        min-height: 140px;
    }

    .carousel-slide {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 10px;
    }

    .slide-problem,
    .slide-solution {
        font-size: 1.1rem !important;
    }

    .slide-arrow {
        transform: rotate(90deg);
    }

    .slide-arrow svg {
        width: 28px;
        height: 28px;
    }

    .carousel-indicators {
        margin-top: 20px;
    }

    /* Section Headers - Más compactos */
    .section-header {
        margin-bottom: 25px;
    }

    .section-header p {
        font-size: 0.95rem;
        margin-top: 15px;
    }

    .section-header h2::after {
        width: 40px;
        bottom: -8px;
    }

    /* ========================================
       1. BENEFICIOS - SCROLL HORIZONTAL
       ======================================== */
    .benefits-category {
        margin-bottom: 35px;
    }

    .benefits-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Ocultar scrollbar pero mantener funcionalidad */
    .benefits-grid::-webkit-scrollbar {
        height: 4px;
    }

    .benefits-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 10px;
    }

    .benefits-grid::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 10px;
    }

    .benefit-card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        margin-bottom: 0;
        margin-right: 0;
    }

    .benefit-card-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-card-icon i {
        font-size: 22px;
    }

    .benefit-card h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .category-title {
        font-size: 1.15rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .category-title i {
        font-size: 1.4rem;
    }

    /* Exterior Section - Más compacto */
    .exterior {
        padding: 45px 0;
    }

    .exterior-content {
        gap: 30px;
    }

    .exterior-text h2 {
        font-size: 1.5rem !important;
        margin-bottom: 12px;
    }

    .exterior-subheadline {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .exterior-benefits {
        margin-bottom: 25px;
    }

    .exterior-benefits li {
        padding: 8px 0;
        font-size: 0.9rem;
    }

    .exterior-benefits .benefit-icon {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .exterior-testimonial .testimonial-card {
        padding: 22px 20px;
    }

    .exterior-testimonial .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Services - Más compacto */
    .services-grid {
        gap: 15px;
    }

    .service-card {
        padding: 22px 20px;
        margin-bottom: 0;
    }

    .service-number {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .service-card h3 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Team - Scroll horizontal */
    .team-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .team-grid::-webkit-scrollbar {
        height: 4px;
    }

    .team-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 10px;
    }

    .team-grid::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 10px;
    }

    .team-card {
        min-width: 260px;
        max-width: 260px;
        flex-shrink: 0;
        scroll-snap-align: start;
        margin-bottom: 0;
        overflow: hidden;
    }

    .team-photo {
        padding: 25px;
    }

    .team-placeholder {
        width: 80px;
        height: 80px;
        font-size: 1.4rem;
    }

    .team-info {
        padding: 18px;
    }

    .team-info h3 {
        font-size: 1.05rem;
        margin-bottom: 5px;
    }

    .team-title {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .team-description {
        font-size: 0.85rem;
    }

    /* Requirements - Más compacto */
    .requirements-content {
        gap: 30px;
    }

    .requirements h2 {
        font-size: 1.5rem !important;
        margin-bottom: 12px;
    }

    .requirements-list li {
        padding: 16px 0;
    }

    .requirements-content .hero-card {
        background: #FFFFFF;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        padding: 22px 20px;
    }

    .requirements-content .hero-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .req-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .req-text h4 {
        font-size: 0.95rem;
    }

    .req-text p {
        font-size: 0.85rem;
    }

    /* FAQ - Más compacto */
    .faq-question {
        padding: 16px 0;
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding-bottom: 16px;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* ========================================
       2. TESTIMONIOS - SCROLL HORIZONTAL
       ======================================== */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .testimonials-grid::-webkit-scrollbar {
        height: 4px;
    }

    .testimonials-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 10px;
    }

    .testimonials-grid::-webkit-scrollbar-thumb {
        background: var(--accent-color);
        border-radius: 10px;
    }

    .testimonial-card {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: start;
        margin-bottom: 0;
        padding: 22px 20px;
    }

    .testimonial-card::before {
        font-size: 4rem;
        top: 10px;
        right: 15px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .testimonial-info h4 {
        font-size: 0.95rem;
    }

    .testimonial-info p {
        font-size: 0.8rem;
    }

    /* ========================================
       3. CONTACTO COMPACTO (GRID 2 COLUMNAS)
       ======================================== */
    .contact-content {
        gap: 30px;
    }

    .contact-info h2 {
        font-size: 1.5rem !important;
        margin-bottom: 12px;
    }

    .contact-info > p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .contact-method {
        padding: 12px 10px;
        border-radius: 12px;
        background: rgba(249, 247, 242, 0.8);
    }

    .contact-method-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 10px;
    }

    .contact-method-text h4 {
        font-size: 0.8rem;
    }

    .contact-method-text p {
        font-size: 0.75rem;
    }

    .contact-form {
        padding: 24px 18px;
        background: #FFFFFF;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        border-radius: 16px;
    }

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

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .form-checkbox {
        margin-bottom: 18px;
    }

    .form-checkbox label {
        font-size: 0.8rem;
    }

    /* Footer */
    footer {
        padding: 50px 0 100px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-brand .logo-img {
        height: 50px;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-social {
        justify-content: center;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 90px;
        right: 16px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* ========================================
       4. BARRA INFERIOR "LIQUID GLASS"
       ======================================== */
    .mobile-sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(26, 31, 44, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        padding: 12px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        z-index: 998;
    }

    .mobile-sticky-bar .sticky-text {
        flex: 1;
        color: var(--white);
        font-size: 14px;
        font-weight: 500;
        line-height: 1.3;
    }

    .mobile-sticky-bar .sticky-text strong {
        display: block;
        font-size: 13px;
        font-weight: 400;
        opacity: 0.8;
    }

    .mobile-sticky-bar .btn-sticky {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #25D366;
        color: white;
        padding: 12px 22px;
        border-radius: var(--radius-full);
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
        transition: var(--transition);
    }

    .mobile-sticky-bar .btn-sticky:active {
        transform: scale(0.98);
    }

    .mobile-sticky-bar .btn-sticky svg {
        width: 18px;
        height: 18px;
        fill: white;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 40px 0;
    }

    h1 { font-size: 1.7rem !important; }
    h2 { font-size: 1.4rem !important; }

    .hero {
        padding: 95px 0 45px;
    }

    .hero-stats {
        padding: 15px;
        gap: 10px;
    }

    .hero-stats .stat {
        padding: 8px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    /* Horizontal scroll cards - más pequeñas */
    .benefit-card {
        min-width: 250px;
        max-width: 250px;
        padding: 20px 16px;
    }

    .team-card {
        min-width: 230px;
        max-width: 230px;
    }

    .testimonial-card {
        min-width: 90%;
        max-width: 90%;
        padding: 18px 16px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .carousel-wrapper {
        margin: -25px 12px 35px 12px;
        padding: 20px 15px;
    }

    .slide-problem,
    .slide-solution {
        font-size: 0.95rem !important;
    }

    .contact-form {
        padding: 20px 14px;
    }

    .contact-methods {
        gap: 8px;
    }

    .contact-method {
        padding: 10px 8px;
    }

    .contact-method-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .contact-method-text h4 {
        font-size: 0.75rem;
    }

    .contact-method-text p {
        font-size: 0.7rem;
    }

    .mobile-sticky-bar {
        padding: 10px 14px;
    }

    .mobile-sticky-bar .sticky-text {
        font-size: 12px;
    }

    .mobile-sticky-bar .btn-sticky {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .top-bar,
    header,
    .whatsapp-float,
    .mobile-sticky-bar {
        display: none !important;
    }

    section {
        padding: 40px 0;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}
