/* ================================================
   DOGUII RESORT — Design System
   Premium pet resort website
   ================================================ */

/* ============ CSS VARIABLES ============ */
:root {
    /* Brand Colors */
    --blue-primary: #0055CC;
    --blue-dark: #003D99;
    --blue-light: #3388FF;
    --green-primary: #00CC66;
    --green-dark: #00A352;
    --green-light: #33FF88;
    --orange-cta: #FF6600;
    --orange-hover: #FF8533;
    --yellow-accent: #FFD700;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Semantic */
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-400);
    --border: var(--gray-200);

    /* Calendar */
    --cal-available: #22C55E;
    --cal-limited: #F59E0B;
    --cal-full: #EF4444;
    --cal-selected: var(--blue-primary);
    --cal-range: rgba(0, 85, 204, 0.1);

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============ TYPOGRAPHY ============ */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--blue-primary), var(--green-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-primary);
    background: rgba(0, 85, 204, 0.08);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-cta), #FF4500);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

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

.btn-whatsapp:hover {
    background: #20BD5C;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    color: var(--gray-800);
}

.logo-accent {
    color: var(--blue-primary);
}

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

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-primary);
    background: rgba(0, 85, 204, 0.06);
}

.nav-cta {
    background: linear-gradient(135deg, var(--orange-cta), #FF4500);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    margin-left: 8px;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--orange-hover), #FF5A1A);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #0d2847 40%, #0f3060 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 25, 44, 0.85) 0%, rgba(11, 25, 44, 0.7) 50%, rgba(11, 25, 44, 0.9) 100%),
        url('../images/doguii-hero.png') center/cover no-repeat;
    animation: heroPulse 8s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 100px;
}

.hero-badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--yellow-accent);
    background: rgba(255, 215, 0, 0.12);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 215, 0, 0.25);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, var(--yellow-accent), var(--green-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============ SERVICES CHOICE ============ */
.services-choice {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.choice-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--green-primary));
    transform: scaleX(0);
    transition: var(--transition);
}

/* Training card accent color */
.choice-card #choice-adestramento::before,
#choice-adestramento::before {
    background: linear-gradient(90deg, #8b5cf6, #a855f7) !important;
}

.training-icon {
    color: #8b5cf6 !important;
}

#choice-adestramento:hover {
    border-color: #8b5cf6;
}

#choice-adestramento:hover::before,
#choice-adestramento.selected::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, #8b5cf6, #a855f7) !important;
}

.choice-card:hover {
    border-color: var(--blue-primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

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

.choice-card.selected {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(0, 85, 204, 0.15), var(--shadow-lg);
}

.choice-card.selected::before {
    transform: scaleX(1);
}

.choice-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 85, 204, 0.08), rgba(0, 204, 102, 0.08));
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--blue-primary);
    transition: var(--transition);
}

.choice-card:hover .choice-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 85, 204, 0.15), rgba(0, 204, 102, 0.15));
}

.choice-badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-dark);
    background: rgba(0, 204, 102, 0.1);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.choice-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.choice-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.choice-features {
    text-align: left;
    margin-bottom: 24px;
}

.choice-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.choice-features li i {
    color: var(--green-primary);
    font-size: 0.8rem;
}

.choice-btn {
    width: 100%;
}

/* ============ SECTION DETAIL (Hotel/Escola) ============ */
.section-detail {
    padding: var(--section-padding) 0;
}

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

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

.detail-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 85, 204, 0.08), rgba(0, 204, 102, 0.08));
    border-radius: var(--radius-sm);
    color: var(--blue-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--gray-800);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* Price Card */
.price-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
}

.price-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-primary);
    background: rgba(0, 85, 204, 0.08);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.price-value span {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.price-value small {
    font-size: 1rem;
    color: var(--gray-400);
}

.price-includes {
    text-align: left;
    margin-bottom: 24px;
}

.price-includes li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-100);
}

.price-includes li:last-child {
    border: none;
}

.price-includes li i {
    color: var(--green-primary);
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.requirements-box {
    margin-top: 20px;
    background: rgba(255, 152, 0, 0.06);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
}

.requirements-box h4 {
    font-size: 0.95rem;
    color: #E65100;
    margin-bottom: 12px;
}

.requirements-box li {
    padding: 4px 0;
    font-size: 0.88rem;
    color: var(--gray-600);
    padding-left: 16px;
    position: relative;
}

.requirements-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E65100;
}

/* ============ ESCOLA / PROGRAMS ============ */
.programs-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 24px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}

.tab-btn.active {
    background: var(--blue-primary);
    color: var(--white);
    border-color: var(--blue-primary);
}

.program-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.program-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-header {
    text-align: center;
    margin-bottom: 32px;
}

.program-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.program-header p {
    color: var(--text-secondary);
}

/* Pricing Table */
.pricing-table {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table th {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 16px 20px;
    background: var(--gray-800);
    color: var(--white);
    text-align: left;
}

.pricing-table td {
    padding: 16px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-table tr:last-child td {
    border: none;
}

.pricing-table tr.highlight {
    background: rgba(0, 204, 102, 0.06);
}

.pricing-table tr:hover {
    background: var(--gray-50);
}

.price-cell {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--blue-primary);
    font-size: 1.05rem !important;
}

/* Aulas Grid */
.aulas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.aula-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.aula-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.aula-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.aula-horario {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.aula-prices {
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.aula-prices div {
    padding: 4px 0;
}

.aula-prices strong {
    color: var(--blue-primary);
    font-family: 'Poppins', sans-serif;
}

/* Aulão */
.aulao-single {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    max-width: 400px;
    margin: 0 auto;
}

.big-price {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue-primary);
    margin-bottom: 4px;
}

.price-highlight {
    margin-bottom: 24px;
    color: var(--text-secondary);
}

/* Alert Box */
.alert-box {
    display: inline-block;
    background: rgba(255, 152, 0, 0.08);
    color: #E65100;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-top: 12px;
}

/* Benefits */
.escola-benefits {
    margin-top: 60px;
    text-align: center;
}

.escola-benefits h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-600);
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.benefit i {
    font-size: 1.5rem;
    color: var(--blue-primary);
}

/* ============ BOOKING SECTION ============ */
.booking-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--gray-50) 100%);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

/* Service Toggle */
.service-toggle {
    display: flex;
    background: var(--gray-100);
    padding: 6px;
    border-radius: 0;
}

.toggle-btn {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px;
    border: none;
    background: transparent;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.toggle-btn.active {
    background: var(--white);
    color: var(--blue-primary);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-sm);
}

/* Calendar */
.calendar-wrapper {
    padding: 28px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cal-nav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-600);
    font-size: 0.9rem;
}

.cal-nav:hover {
    background: var(--gray-50);
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}

.cal-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.available {
    background: var(--cal-available);
}

.dot.limited {
    background: var(--cal-limited);
}

.dot.full {
    background: var(--cal-full);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}

.cal-weekdays span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    padding: 8px 0;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    color: var(--gray-700);
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--cal-range);
}

.cal-day.empty {
    cursor: default;
}

.cal-day.disabled {
    color: var(--gray-300);
    cursor: not-allowed;
}

.cal-day.available::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cal-available);
}

.cal-day.limited::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cal-limited);
}

.cal-day.full::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cal-full);
}

.cal-day.selected {
    background: var(--cal-selected);
    color: var(--white);
}

.cal-day.selected::after {
    background: var(--white);
}

.cal-day.in-range {
    background: var(--cal-range);
}

.cal-day.today {
    border: 2px solid var(--blue-primary);
}

.selected-dates {
    margin-top: 20px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.price-highlight-inline {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--blue-primary);
    font-size: 1.1rem;
}

/* Booking Form */
.booking-form {
    padding: 28px;
    border-top: 1px solid var(--gray-200);
}

.form-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-title i {
    color: var(--blue-primary);
}

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

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(0, 85, 204, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-summary {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 16px;
    margin: 20px 0;
    font-size: 0.9rem;
}

/* Success */
.booking-success {
    padding: 60px 28px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--green-primary);
    margin-bottom: 20px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.booking-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.success-code {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--blue-primary);
    margin-bottom: 12px;
}

.success-message {
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ DIFFERENTIALS ============ */
.differentials {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

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

.diff-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: var(--transition);
}

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

.diff-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 85, 204, 0.08), rgba(0, 204, 102, 0.08));
    border-radius: 50%;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--blue-primary);
}

.diff-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.diff-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: var(--section-padding) 0;
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

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

.testimonial-card p {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-primary), var(--green-primary));
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============ CONTACT ============ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 85, 204, 0.08), rgba(0, 204, 102, 0.08));
    border-radius: var(--radius-sm);
    color: var(--blue-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--blue-primary);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

/* ============ FOOTER ============ */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 24px;
}

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

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--white);
    font-size: 1.8rem;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

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

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.08);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ============ ANIMATIONS ============ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============ LOADING SPINNER ============ */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s ease infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        position: static;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        overflow-y: auto;
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 14px 20px;
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

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

    .choice-grid {
        grid-template-columns: 1fr;
    }

    .aulas-grid {
        grid-template-columns: 1fr;
    }

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

    .diff-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-stats {
        gap: 24px;
    }

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

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

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

    .success-actions {
        flex-direction: column;
    }

    .cal-day {
        font-size: 0.8rem;
    }

    .pricing-table {
        overflow-x: auto;
    }

    .pricing-table table {
        min-width: 500px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-stats {
        gap: 16px;
    }

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

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .calendar-wrapper {
        padding: 16px;
    }

    .booking-form {
        padding: 16px;
    }

    .package-tabs {
        flex-direction: column;
    }

    .pkg-options {
        grid-template-columns: 1fr;
    }

    .pkg-options.single-option {
        grid-template-columns: 1fr;
    }

    .selected-package {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============ ESCOLA PACKAGE SELECTOR ============ */
.escola-packages {
    padding: 28px;
}

.packages-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 24px;
}

.packages-title i {
    color: var(--blue-primary);
    margin-right: 8px;
}

.package-tabs {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.pkg-tab {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.pkg-tab:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}

.pkg-tab.active {
    background: var(--blue-primary);
    color: var(--white);
    border-color: var(--blue-primary);
}

.pkg-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.pkg-content.active {
    display: block;
}

.pkg-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pkg-alert {
    text-align: center;
    background: rgba(255, 152, 0, 0.08);
    color: #E65100;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.pkg-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.pkg-options.single-option {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
}

.pkg-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.pkg-card:hover {
    border-color: var(--blue-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pkg-card.selected {
    border-color: var(--blue-primary);
    background: rgba(0, 85, 204, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 85, 204, 0.12);
}

.pkg-card.popular {
    border-color: var(--green-primary);
}

.pkg-card.popular:hover {
    border-color: var(--green-dark);
}

.pkg-card.popular.selected {
    border-color: var(--green-primary);
    background: rgba(0, 204, 102, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 204, 102, 0.12);
}

.pkg-popular-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--green-primary);
    color: var(--white);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pkg-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.pkg-freq {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.pkg-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue-primary);
}

.pkg-price.large {
    font-size: 1.8rem;
}

.pkg-price small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-500);
}

.pkg-horario {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.pkg-horario i {
    margin-right: 4px;
}

.pkg-per-class {
    font-size: 0.75rem;
    color: var(--green-dark);
    background: rgba(0, 204, 102, 0.08);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-top: 8px;
}

.pkg-card.big {
    padding: 32px 24px;
}

/* Selected Package Summary */
.selected-package {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 85, 204, 0.04);
    border: 1px solid rgba(0, 85, 204, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-top: 20px;
    gap: 16px;
}

.selected-pkg-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.selected-pkg-info>i {
    color: var(--green-primary);
    font-size: 1.3rem;
}

.selected-pkg-info strong {
    display: block;
    color: var(--gray-800);
    font-size: 0.95rem;
}

.selected-pkg-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.selected-pkg-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-primary);
    white-space: nowrap;
}


/* ============ MODALS ============ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalIn 0.3s ease;
}

.modal-content.modal-sm {
    max-width: 420px;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.modal-content h2 i {
    color: var(--orange-cta);
    margin-right: 8px;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--blue-primary);
    outline: none;
}

/* Trial Type Selector */
.trial-type-selector {
    margin: 24px 0;
}

.trial-type-selector h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.trial-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.trial-option {
    cursor: pointer;
}

.trial-option input[type="radio"] {
    display: none;
}

.trial-card {
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.trial-card i {
    font-size: 2rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.trial-option.selected .trial-card {
    border-color: var(--blue-primary);
    background: rgba(0, 85, 204, 0.05);
}

.trial-option.selected .trial-card i {
    color: var(--blue-primary);
}

.trial-card strong {
    font-family: 'Poppins', sans-serif;
    display: block;
}

.trial-card span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Success Box */
.success-box {
    text-align: center;
    padding: 30px 20px;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--green-primary);
    margin-bottom: 12px;
}

.success-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.success-box p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* Error Box */
.error-box {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: #c53030;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-top: 16px;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    text-decoration: none;
    margin-top: 16px;
}

.btn-whatsapp:hover {
    background: #1eba59;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid var(--blue-primary);
    color: var(--blue-primary);
}

.btn-outline:hover {
    background: var(--blue-primary);
    color: white;
}

.btn-block {
    width: 100%;
}

.modal-footer {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.modal-footer a {
    color: var(--blue-primary);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .modal-content {
        padding: 24px;
        margin: 10px;
    }

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

    .trial-options {
        grid-template-columns: 1fr;
    }
}

/* ============ LEAD CAPTURE FORM ============ */

/* ============ SECTION SHOWCASE IMAGES ============ */
.section-showcase {
    max-width: 900px;
    margin: 0 auto 32px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.section-showcase:hover .showcase-img {
    transform: scale(1.03);
}

.lead-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
}

.lead-form-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 28px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4); }
}

.lead-form-badge i {
    font-size: 1.3rem;
}

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

.lead-form-container label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.lead-form-container label i {
    color: var(--blue-primary);
    margin-right: 4px;
}

.lead-form-container input,
.lead-form-container select,
.lead-form-container textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.lead-form-container input:focus,
.lead-form-container select:focus,
.lead-form-container textarea:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(0, 85, 204, 0.1);
    outline: none;
}

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

.lead-form-disclaimer {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.lead-form-disclaimer i {
    color: var(--green-primary);
    margin-right: 4px;
}

/* Lead Success */
.lead-success {
    text-align: center;
    padding: 20px 0;
}

.lead-success .success-icon {
    font-size: 4rem;
    color: var(--green-primary);
    margin-bottom: 16px;
}

.lead-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.lead-success p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.lead-discount-code {
    display: inline-block;
    background: rgba(0, 204, 102, 0.1);
    color: var(--green-dark);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 16px 0;
}

.lead-success .btn-whatsapp {
    margin-top: 12px;
}

@media (max-width: 600px) {
    .lead-form-container {
        padding: 24px 20px;
        margin: 0 10px;
    }
    .lead-form-container .form-row {
        grid-template-columns: 1fr;
    }
}