/* ========================================
   FibraYA — Styles
   Light theme ISP landing page
   ======================================== */

/* --- Design Tokens --- */
:root {
    --blue: #2E3FA0;
    --blue-dark: #1a2666;
    --blue-light: #4a5cc4;
    --blue-glow: rgba(46, 63, 160, 0.12);
    --orange: #F57C1F;
    --orange-light: #ff9642;
    --orange-dark: #d96a10;
    --orange-glow: rgba(245, 124, 31, 0.15);
    --bg: #ffffff;
    --bg-alt: #f4f6fb;
    --bg-dark: #0f1629;
    --bg-dark-light: #182040;
    --text: #334155;
    --text-heading: #0f172a;
    --text-muted: #64748b;
    --text-light: #e2e8f0;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.06);
    --shadow-blue: 0 4px 20px rgba(46, 63, 160, 0.2);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

/* --- Section --- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header-light h2 {
    color: #fff;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-glow);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header-light .section-badge {
    color: var(--orange-light);
    background: var(--orange-glow);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.section-header-light .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-light);
    border-color: var(--orange-light);
    box-shadow: 0 4px 16px rgba(245, 124, 31, 0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

.logo-img {
    height: 30px;
    width: auto;
    transition: filter var(--transition);
}

.navbar:not(.scrolled) .logo-img {
    filter: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.navbar.scrolled .nav-link {
    color: var(--text);
}

.navbar.scrolled .nav-link:hover {
    color: var(--blue);
    background: var(--blue-glow);
}

.btn-nav-cta {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.navbar:not(.scrolled) .btn-nav-cta {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-heading);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 22, 41, 0.65) 0%,
        rgba(46, 63, 160, 0.55) 50%,
        rgba(26, 38, 102, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-text h1 {
    font-size: 3.25rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-item i {
    font-size: 1.1rem;
    color: var(--orange);
}

.badge-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Plans --- */
.section-plans {
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}

.section-plans::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(46, 63, 160, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 124, 31, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(46, 63, 160, 0.15) 0%, transparent 40%);
}

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

.section-plans .section-header h2 {
    color: #fff;
}

.section-plans .section-badge {
    color: var(--orange-light);
    background: var(--orange-glow);
}

.section-plans .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.plan-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition);
}

.plan-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.plan-featured {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(245, 124, 31, 0.3);
}

.plan-featured:hover {
    transform: scale(1.04) translateY(-4px);
    border-color: var(--orange);
    background: var(--orange);
    box-shadow: 0 12px 40px rgba(245, 124, 31, 0.4);
}

.plan-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 50px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-featured .plan-name {
    color: rgba(255, 255, 255, 0.85);
}

.plan-speed {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.plan-speed span {
    font-size: 1.1rem;
    font-weight: 600;
}

.plan-featured .plan-speed {
    color: #fff;
}

.plan-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-featured .plan-price {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    vertical-align: super;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.plan-featured .price-amount {
    color: #fff;
}

.price-period {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.plan-featured .price-period {
    color: rgba(255, 255, 255, 0.7);
}

.plan-features {
    text-align: left;
    margin-bottom: 28px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.75);
}

.plan-featured .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

.plan-features li i {
    color: var(--orange);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.plan-card .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.plan-card .btn-outline:hover {
    background: #fff;
    color: var(--bg-dark);
    border-color: #fff;
}

.plan-featured .btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--orange);
}

.plan-featured .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

/* --- Cobertura --- */
.cobertura-map {
    margin-bottom: 40px;
}

.cobertura-zones-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.zone-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-glow);
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(46, 63, 160, 0.15);
    transition: all var(--transition);
}

.zone-chip:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.zone-chip i {
    font-size: 0.85rem;
}

.cobertura-cta-center {
    text-align: center;
}

.cobertura-cta-center p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}


.cobertura-cta {
    display: flex;
    align-items: center;
}

.cobertura-cta-box {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    width: 100%;
}

.cobertura-cta-box i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.cobertura-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cobertura-cta-box p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    line-height: 1.6;
}

.cobertura-cta-box .btn-primary {
    background: var(--orange);
    border-color: var(--orange);
}

/* --- Pillars (Why FibraYA) --- */
.section-pillars {
    position: relative;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
}

.section-pillars::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 22, 41, 0.88) 0%, rgba(46, 63, 160, 0.82) 100%);
}

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

.section-pillars .section-header h2 {
    color: #fff;
}

.section-pillars .section-badge {
    color: var(--orange-light);
    background: var(--orange-glow);
}

.section-desc-light {
    color: rgba(255, 255, 255, 0.7) !important;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition);
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: var(--orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.5rem;
}

.pillar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* --- Contact --- */
.section-contact {
    position: relative;
    background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
}

.section-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 22, 41, 0.92) 0%, rgba(26, 38, 102, 0.88) 50%, rgba(15, 22, 41, 0.92) 100%);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.contact-form-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-title i {
    color: var(--orange);
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    font-family: var(--font);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px var(--orange-glow);
}

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

/* Captcha */
.form-captcha {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    background: rgba(46, 63, 160, 0.06);
    border: 1px solid rgba(46, 63, 160, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.captcha-icon {
    color: var(--blue);
    font-size: 1.1rem;
}

.captcha-question {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
}

.form-captcha input {
    width: 100px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font);
    text-align: center;
    transition: var(--transition);
    margin-left: auto;
}

.form-captcha input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-captcha input.captcha-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* Success overlay */
.form-success-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    z-index: 10;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-success-overlay.visible {
    opacity: 1;
    transform: scale(1);
}

.form-success-overlay.fade-out {
    opacity: 0;
    transform: scale(0.97) translateY(8px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.success-ring {
    width: 90px;
    height: 90px;
    margin-bottom: 24px;
}

.success-ring svg {
    width: 100%;
    height: 100%;
}

.ring-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 3;
}

.ring-progress {
    fill: none;
    stroke: var(--blue);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 226;
    stroke-dashoffset: 226;
    transform: rotate(-90deg);
    transform-origin: center;
}

.visible .ring-progress {
    animation: ring-draw 0.8s ease forwards;
}

@keyframes ring-draw {
    to { stroke-dashoffset: 0; }
}

.ring-check {
    fill: none;
    stroke: #22c55e;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}

.visible .ring-check {
    animation: check-draw 0.4s 0.6s ease forwards;
}

@keyframes check-draw {
    to { stroke-dashoffset: 0; }
}

.form-success-overlay h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.form-success-overlay p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.form-success-overlay p strong {
    color: var(--blue);
}

.success-bar {
    width: 120px;
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    margin-top: 28px;
    overflow: hidden;
}

.success-bar-fill {
    height: 100%;
    width: 100%;
    background: var(--blue);
    border-radius: 3px;
}

.visible .success-bar-fill {
    animation: bar-shrink 4s linear forwards;
}

@keyframes bar-shrink {
    to { width: 0%; }
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-card h3 i {
    color: var(--orange);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.contact-list li > i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--orange-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
}

.contact-list strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-list span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    margin-bottom: 16px;
}

.whatsapp-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

/* --- Formas de Pago --- */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.payment-method-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
}

.payment-method-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.payment-method-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

.payment-method-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
}

.payment-method-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.payment-number {
    font-family: monospace;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 1px;
    margin-bottom: 8px;
    word-break: break-all;
}

.payment-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-trust {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
}

.trust-item i {
    color: var(--orange);
    font-size: 0.75rem;
}

/* --- Footer --- */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    display: inline-block;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

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

.footer-links ul li a:hover {
    color: var(--orange);
}

.footer-links ul li i {
    margin-right: 8px;
    color: var(--orange);
    font-size: 0.85rem;
}

.footer-legal-title {
    margin-top: 20px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

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

/* --- Legal Pages --- */
.legal-page {
    padding-top: 0;
    padding-bottom: 0;
}

.legal-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--blue-dark) 50%, var(--blue) 100%);
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(245, 124, 31, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(46, 63, 160, 0.2) 0%, transparent 40%);
}

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

.legal-hero-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--orange);
}

.legal-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.legal-hero .legal-updated {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.legal-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.legal-breadcrumb a:hover {
    color: var(--orange);
}

.legal-breadcrumb i {
    font-size: 0.7rem;
}

.legal-body {
    padding: 60px 0 80px;
    background: var(--bg-alt);
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 90px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.legal-toc-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.legal-toc ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal-toc ul li {
    list-style: none;
}

.legal-toc ul li a {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border-left: 2px solid transparent;
    transition: all var(--transition);
    line-height: 1.4;
}

.legal-toc ul li a:hover {
    color: var(--blue);
    background: var(--blue-glow);
    border-left-color: var(--blue);
}

.legal-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.legal-content h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-top: 36px;
    margin-bottom: 14px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
    scroll-margin-top: 100px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h2 .legal-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: var(--blue-glow);
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 50%;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 0;
}

.legal-content ul li {
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 8px;
    list-style: none;
    padding-left: 28px;
    position: relative;
}

.legal-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: var(--blue);
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--blue-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-contact-card {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 36px;
    color: #fff;
}

.legal-contact-card h2 {
    color: #fff;
    margin: 0 0 16px;
    padding: 0;
    border: none;
    font-size: 1.1rem;
}

.legal-contact-card ul li {
    color: rgba(255, 255, 255, 0.9);
}

.legal-contact-card ul li::before {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.legal-contact-card ul {
    margin-bottom: 0;
}

/* Legal responsive */
@media (max-width: 768px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .legal-toc {
        position: static;
    }

    .legal-content {
        padding: 28px 20px;
    }

    .legal-hero h1 {
        font-size: 1.75rem;
    }
}

/* --- Scroll Animations --- */
[data-anim] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-featured {
        transform: scale(1);
    }

    .plan-featured:hover {
        transform: translateY(-4px);
    }

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

    .cobertura-zones-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    /* Navbar mobile */
    .nav-toggle {
        display: flex;
    }

    .btn-nav-cta {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 4px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        transition: right var(--transition);
    }

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

    .nav-menu .nav-link {
        color: var(--text);
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }

    .nav-menu .nav-link:hover {
        color: var(--blue);
        background: var(--blue-glow);
    }

    /* Hero mobile */
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-badges {
        flex-direction: column;
        gap: 16px;
        margin-top: 40px;
    }

    .badge-divider {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    /* Plans mobile */
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Cobertura mobile */
    .cobertura-zones-row {
        grid-template-columns: 1fr 1fr;
    }

    .cobertura-map iframe {
        height: 360px;
    }

    .cobertura-cta-box {
        padding: 36px 28px;
    }

    /* Pillars mobile */
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Payment mobile */
    .payment-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

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

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .plan-card {
        padding: 28px 20px;
    }
}
