/* style.css */
:root {
    --primary: #ea580c; /* Orange 600 */
    --primary-dark: #c2410c; /* Orange 700 */
    --secondary: #dc2626; /* Red 600 */
    --secondary-dark: #991b1b;
    --accent: #facc15; /* Yellow 400 */
    --accent-dark: #eab308; /* Yellow 500 */
    --text-main: #1f2937; /* Gray 800 */
    --text-muted: #4b5563; /* Gray 600 */
    --text-light: #f9fafb;
    --bg-main: #ffffff;
    --bg-light: #f3f4f6;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-yellow: 0 10px 25px -5px rgba(250, 204, 21, 0.4);
    --radius-sm: 0.375rem;
    --radius: 0.75rem;
    --radius-lg: 1.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-dark { color: var(--text-main); }
.mt-4 { margin-top: 2rem; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm { max-width: 800px; }
.container-md { max-width: 1000px; }

/* Top Header System */
.top-header-system {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 4px solid var(--accent);
}

.alert-strip {
    background-color: var(--accent);
    color: var(--text-main);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.3rem 0;
    letter-spacing: 0.05em;
}

.main-red-strip {
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 1rem 0;
}

.main-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.slots-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.restam-text {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.slots-box {
    background: white;
    color: var(--secondary);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.slots-box svg {
    width: 28px;
    height: 28px;
}

.vagas-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.vagas-word {
    color: white;
    font-weight: 800;
    font-size: 1rem;
}

.vagas-loc {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
}

.viewing-strip {
    background-color: #7f1d1d; /* Very dark red */
    color: white;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    padding-top: 2rem;
    overflow: hidden;
}

.hero-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.eye-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.eye-icon-small {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.hero h1 {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.location-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 6rem; /* space for wave */
}

/* Form Card */
.hero-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
    transform: translateY(0);
    transition: var(--transition);
}

.hero-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.card-header p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
}

.input-wrapper input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
    background-color: var(--bg-light);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.98);
}

.privacy-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

/* Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

.hidden { display: none; }

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

.form-message {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    min-height: 20px;
}
.form-message.success { color: #16a34a; }
.form-message.error { color: #dc2626; }

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.02);
}

.badge-float {
    position: absolute;
    bottom: -20px;
    left: 50%;
    background: var(--accent);
    color: var(--text-main);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    border: 4px solid white;
}

.badge-float h3 {
    font-size: 1rem;
    font-weight: 600;
}

.badge-float .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
    display: block;
    margin: 0.25rem 0;
}

.badge-float p {
    font-size: 0.875rem;
    font-weight: 500;
}

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

/* Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    margin-bottom: -1px;
}

/* Benefits */
.benefits {
    padding: 5rem 0;
    background-color: var(--bg-main);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.benefit-card:hover {
    background: white;
    border-color: var(--accent);
    box-shadow: var(--shadow-yellow);
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(250, 204, 21, 0.1);
    color: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.benefit-card:hover .icon-wrapper {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-muted);
}

.center-btn {
    text-align: center;
}

.btn-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--text-main);
    padding: 1.25rem 2.5rem;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: var(--shadow-yellow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-yellow:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(250, 204, 21, 0.5);
}

.btn-yellow.btn-large {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.25rem;
}

/* Urgency Card */
.urgency {
    padding: 3rem 0;
    margin-top: -2rem;
}

.urgency-card {
    background: linear-gradient(to bottom, #fef3c7, #fffbeb);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.urgency-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.resta-apenas, .vagas-disponiveis {
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

.slots-available {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--secondary);
    margin: 1rem 0;
}

.slots-available .number {
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1;
}

.valido-apenas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #b45309;
    font-weight: 600;
    background: rgba(250, 204, 21, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    margin: 1rem 0 2rem;
}

.sub-alert {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.watching-now {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* Social Proof */
.social-proof {
    padding: 4rem 0;
    background-color: white;
}

.highlight-text {
    color: var(--secondary);
    font-size: 2.5rem;
}

.video-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 9/16;
    background: #000;
    cursor: pointer;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
}

.video-wrapper:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.video-wrapper:hover .play-btn {
    background: var(--secondary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.badges-scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-dark {
    display: inline-block;
    background: var(--text-main);
    color: white;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Verified */
.verified-project {
    padding: 5rem 0;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pill-badge {
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.verified-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.clinic-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.clinic-image {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
}

.cta-card {
    background: var(--secondary);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.3);
}

.cta-card h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-card .btn-yellow {
    margin-top: 1rem;
}

/* FAQ */
.faq-section {
    padding: 4rem 0 5rem;
    background-color: white;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    transition: var(--transition);
}

.accordion-header[aria-expanded="true"] {
    background: var(--primary);
    color: white;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-light);
}

.accordion-content p {
    padding: 1.5rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: var(--text-main);
    color: white;
    padding: 3rem 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo svg {
    width: 32px;
    height: 32px;
    color: white;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

/* Modals & Toasts */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-card {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.modal-overlay.hidden .modal-card {
    transform: scale(0.9);
}

.modal-icon {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.modal-card h2 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.modal-card p {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Toast Container */
.toast-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 99;
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    pointer-events: none;
}

.toast-card {
    background: white;
    border: 2px solid #10b981;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    animation: slideInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    min-width: 280px;
    max-width: 350px;
}

.toast-card.fadeOut {
    animation: fadeOut 0.5s forwards;
}

.toast-icon {
    color: #10b981;
    display: flex;
    align-items: center;
    margin-top: 0.25rem;
}

.toast-content {
    flex: 1;
}

.toast-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.toast-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1f2937;
}

.toast-badge {
    background: #d1fae5;
    color: #065f46;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
}

.toast-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.toast-text {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

@keyframes slideInLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@media (max-width: 768px) {
    .toast-container {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        align-items: center;
    }
    .toast-card {
        min-width: unset;
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .badge-float {
        bottom: -20px;
        left: 50%;
    }
    
    .benefits {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 0.75rem 0;
        line-height: 1.4;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-form-card {
        padding: 1.5rem;
    }
    
    .card-header h2 {
        font-size: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }

    .video-testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .highlight-text {
        font-size: 1.75rem;
    }
    
    .urgency-card {
        padding: 2rem 1.25rem;
    }
    
    .slots-available .number {
        font-size: 3.5rem;
    }
    
    .badges-scroll {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .verified-project {
        padding: 3rem 0;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-card {
        padding: 2rem 1.25rem;
    }

    .cta-card h3 {
        font-size: 1.5rem;
    }
    
    .accordion-header {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .accordion-content p {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .badge-float {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        transform: translateY(-10px);
        margin: 0 auto 1.5rem;
        width: 90%;
        max-width: 250px;
        padding: 1rem;
        animation: none;
    }
    
    .badge-float .number {
        font-size: 2rem;
    }
    
    .btn-yellow, .btn-primary, .btn-dark {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .urgency-card {
        padding: 1.5rem 1rem;
    }
    
    .slots-available .number {
        font-size: 3rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .toast-container {
        pointer-events: auto;
    }
    
    .toast-card {
        padding: 0.75rem 1rem;
    }
    
    .toast-name {
        font-size: 0.9rem;
    }
    
    .toast-text {
        font-size: 0.8rem;
    }
    
    .modal-card {
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-card h2 {
        font-size: 1.25rem;
    }
}
