/* =============================================
   GoEasy Web Pública — Estilos Premium
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
    --orange: #f26522;
    --orange-dark: #de5613;
    --orange-light: rgba(242, 101, 34, 0.1);
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --success: #059669;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Animaciones ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0.6rem 2rem;
}
.navbar-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 100;
}
.navbar-logo-premium {
    height: 48px; /* Tamaño minimalista */
    max-width: 180px;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    object-fit: contain;
}
.navbar.scrolled .navbar-logo-premium {
    height: 38px;
    padding: 4px 10px;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.navbar-links a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}
.navbar.scrolled .navbar-links a { color: var(--gray-700); }
.navbar-links a:hover { background: rgba(255,255,255,0.15); }
.navbar.scrolled .navbar-links a:hover { background: var(--gray-100); }

.btn-nav-login {
    padding: 0.5rem 1.25rem !important;
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}
.navbar.scrolled .btn-nav-login {
    background: var(--gray-100) !important;
    border-color: var(--gray-300) !important;
    color: var(--gray-700) !important;
}

.btn-nav-wa {
    padding: 0.5rem 1.25rem !important;
    background: #25D366 !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}
.btn-nav-wa:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(37,211,102,0.4); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--gray-700); }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Espacio extra para que no esté apretado con la barra superior */
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(26,26,46,0.7), rgba(26,26,46,0.85)),
                url('../img/hero-bg.png') center/cover no-repeat;
    background-attachment: fixed;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26,26,46,0.95));
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}
.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}
.hero-content h1 .highlight {
    color: var(--orange);
    position: relative;
}
.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 2rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(242,101,34,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(242,101,34,0.5); }
.btn-secondary {
    padding: 0.9rem 2rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: var(--white); transform: translateY(-3px); }

/* ── Pain Points ── */
.pain-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
    animation: fadeInUp 1s ease 0.4s both;
}
.pain-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition);
}
.pain-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-5px); }
.pain-card .icon-professional {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--orange);
    background: linear-gradient(135deg, #f26522, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.pain-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 600; }

/* ── Sections base ── */
.section {
    padding: 5rem 2rem;
}
.section-dark {
    background: linear-gradient(rgba(15,23,42,0.93), rgba(15,23,42,0.96)),
                url('../img/casos/tractor.png') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
}
.section-dark h2 { color: var(--white); text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }
.section-premium {
    background: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.95)),
                url('../img/leasing-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
}
.section-premium h2 { color: var(--white); }
.section-premium .section-header p { color: rgba(255,255,255,0.6); }

.section-premium::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 10% 10%, rgba(242,101,34,0.05), transparent 40%);
    pointer-events: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    border-radius: 4px;
}
.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Qué es un Leasing ── */
.leasing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.leasing-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}
.leasing-text p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.section-premium .leasing-text h3 { color: var(--white); }
.section-premium .leasing-text p { color: rgba(255,255,255,0.7); }
.section-premium .benefit-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.section-premium .benefit-item h4 { color: var(--white); }
.section-premium .benefit-item p { color: rgba(255,255,255,0.5); }


.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.benefit-item:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--orange);
    flex-shrink: 0;
}
.benefit-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
}
.benefit-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.15rem;
}
.leasing-visual {
    position: relative;
}
.leasing-visual .visual-card {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 32px;
    padding: 3.5rem;
    color: var(--white);
    text-align: center;
    box-shadow: 0 30px 80px rgba(242,101,34,0.4);
    position: relative;
    overflow: hidden;
}
.leasing-visual .visual-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.visual-card .big-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}
.visual-card .big-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.5rem;
}
.visual-card .stats-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.stat-item .stat-num { font-size: 1.8rem; font-weight: 800; }
.stat-item .stat-label { font-size: 0.8rem; opacity: 0.8; }

/* ── Casos de Éxito ── */
.casos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.caso-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.caso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.caso-card:hover::before { transform: scaleX(1); }
.caso-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.caso-card .caso-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.caso-card .caso-image {
    width: calc(100% + 3.5rem);
    margin: -1.75rem -1.75rem 1.25rem -1.75rem;
    height: 180px;
    overflow: hidden;
}
.caso-card .caso-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.caso-card:hover .caso-image img {
    transform: scale(1.1);
}
.caso-card .caso-cat {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    background: var(--orange-light);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}
.caso-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.caso-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── Cotizador Público ── */
.cotizador-section {
    background: linear-gradient(rgba(22,33,62,0.85), rgba(26,26,46,0.9)),
                url('../img/fleet-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}
.cotizador-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(242,101,34,0.1), transparent 70%),
                radial-gradient(circle at 80% 50%, rgba(242,101,34,0.08), transparent 70%);
}
.cotizador-wrapper {
    position: relative;
    z-index: 2;
}
.cotizador-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.cotizador-form {
    background: rgba(17, 24, 39, 0.85); /* Fondo oscuro mucho más sólido */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.cotizador-form label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.cotizador-form input,
.cotizador-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.cotizador-form input::placeholder { color: rgba(255,255,255,0.3); }
.cotizador-form input:focus,
.cotizador-form select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242,101,34,0.2);
}
.cotizador-form select option { background: var(--dark); color: var(--white); }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.btn-calcular {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(242,101,34,0.4);
}
.btn-calcular:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(242,101,34,0.5); }

.results-panel {
    background: rgba(17, 24, 39, 0.85); /* Fondo oscuro mucho más sólido */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.result-row:last-child { border-bottom: none; }
.result-row .label { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; }
.result-row .value { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.result-highlight {
    background: linear-gradient(135deg, rgba(242,101,34,0.15), rgba(242,101,34,0.08));
    border: 1px solid rgba(242,101,34,0.3);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
.result-highlight .label { color: rgba(255,255,255,0.7); font-size: 0.85rem; display: block; margin-bottom: 0.25rem; }
.result-highlight .value { color: var(--orange); font-size: 2rem; font-weight: 800; font-family: 'Outfit', sans-serif; }
.tax-box {
    background: rgba(5,150,105,0.1);
    border: 1px solid rgba(5,150,105,0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
}
.tax-box .tax-title {
    color: #34d399;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.tax-row { display: flex; justify-content: space-between; align-items: center; padding: 0.3rem 0; }
.tax-row .label { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.tax-row .value { color: #34d399; font-weight: 700; font-size: 0.95rem; }
.legal-notes-pub {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.06);
}
.legal-notes-pub li {
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    margin-bottom: 0.3rem;
    padding-left: 0.8rem;
    position: relative;
}
.legal-notes-pub li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
}
.save-msg-pub {
    display: none;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

/* ── Contacto ── */
.contacto-section {
    background: linear-gradient(135deg, rgba(242,101,34,0.92), rgba(222,86,19,0.95)),
                url('../img/contact-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}
.contacto-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 50%);
}
.contacto-wrapper {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.contacto-wrapper h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}
.contacto-wrapper h2::after { display: none; }
.contacto-wrapper p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.contacto-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
.contacto-form input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--gray-800);
    outline: none;
    transition: var(--transition);
}
.contacto-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.5); }
.btn-contacto {
    grid-column: 1 / -1;
    padding: 0.9rem;
    .section-dark {
    background: linear-gradient(rgba(15,23,42,0.92), rgba(15,23,42,0.95)),
                url('../img/casos/tractor.png') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
}    background: var(--dark);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.btn-contacto:hover { background: var(--gray-900); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.contacto-msg {
    display: none;
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* ── Footer ── */
.footer {
    background: var(--gray-900);
    padding: 3rem 2rem 1.5rem;
    color: rgba(255,255,255,0.5);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo img { height: 36px; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 0.8rem; width: 100%; text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }


/* ── WhatsApp flotante ── */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-float svg { width: 32px; height: 32px; fill: var(--white); }


/* ── Responsive ── */
@media (max-width: 992px) {
    .pain-points { grid-template-columns: 1fr; max-width: 400px; }
    .leasing-grid { grid-template-columns: 1fr; gap: 2rem; }
    .casos-grid { grid-template-columns: repeat(2, 1fr); }
    .cotizador-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .navbar-links { 
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        gap: 0.5rem;
    }
    .navbar-links.open { display: flex; }
    .navbar-links a { color: var(--gray-700) !important; padding: 0.75rem 1rem; }
    .hamburger { display: flex; }
    .hero-content h1 { font-size: 2rem; }
    .casos-grid { grid-template-columns: 1fr; }
    .contacto-form { grid-template-columns: 1fr; }
    .section { padding: 3rem 1.25rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .pain-points { grid-template-columns: 1fr 1fr 1fr; max-width: 100%; }
    .pain-card p { font-size: 0.78rem; }
}
@media (max-width: 480px) {
    .pain-points { grid-template-columns: 1fr; max-width: 300px; }
    .form-row { grid-template-columns: 1fr; }
}
