* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --navy: #2c3e50;
    --navy-mid: #3b566e;
    --cyan: #00ccff;
    --cyan-dim: #00b7eb;
    --cyan-pale: #e0f8ff;
    --light: #ecf0f1;
    --mid: #34495e;
    --white: #ffffff;
    --radius: 14px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--light);
    color: var(--navy);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 48px;
}

/* ── TOOLBAR ── */
.toolbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.97);
    /*backdrop-filter: blur(8px);*/
    z-index: 1000;
    height: 49px;
}

.toolbar-container {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    height: 100%;
    align-items: center;
}

.toolbar-container a {
    color: #d1e8f0;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.toolbar-container a:hover {
    color: var(--cyan);
    background: rgba(0, 204, 255, 0.1);
}

/* ── CONTAINER ── */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── PAGE HEADER ── */
.page-header {
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 40%, #1a7fa8 80%, #009fc2 100%);
    padding: 48px 20px 40px;
    text-align: center;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 204, 255, 0.15);
    border: 1px solid rgba(0, 204, 255, 0.3);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 900;
    color: #ecf0f1;
    margin-bottom: 8px;
    line-height: 1.2;
}

.page-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* ── FAQ SECTION ── */
.faq-section {
    padding: 40px 0 56px;
    background: var(--white);
}

/* ── TABS ── */
.faq-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--light);
    border-radius: var(--radius);
    padding: 4px;
    margin-bottom: 28px;
}

.faq-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: none;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--mid);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}

.faq-tab i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-tab.active {
    background: var(--navy);
    color: var(--cyan);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

.faq-tab:not(.active):hover {
    background: rgba(44, 62, 80, 0.06);
    color: var(--navy);
}

/* ── PANELS ── */
.faq-panel {
    display: none;
}

.faq-panel.active {
    display: block;
    animation: fadeIn 0.25s ease-out both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── FAQ LIST ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── FAQ ITEM ── */
.faq-item {
    background: #fafafa;
    border: 1px solid #e4e8eb;
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(0, 204, 255, 0.35);
}

.faq-item.active {
    border-color: var(--cyan);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    gap: 16px;
    transition: color 0.2s;
}

.faq-item.active .faq-question {
    color: var(--cyan-dim);
}

.question-text {
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--cyan);
    min-width: 24px;
    text-align: center;
    transition: transform 0.25s ease;
    font-weight: 300;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 14px 20px 20px;
    color: var(--mid);
    line-height: 1.7;
    font-size: 0.9rem;
    border-top: 1px solid #eaecef;
}

/* ── CONTACT SECTION ── */
.contact-section {
    padding: 48px 20px;
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 40%, #1a7fa8 80%, #009fc2 100%);
    text-align: center;
}

.contact-section h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    font-weight: 300;
    font-size: 0.9rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 360px;
    margin: 0 auto;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-1px);
}

.contact-link i {
    font-size: 1.2rem;
    width: 22px;
    text-align: center;
}

.contact-link.whatsapp i { color: #25D366; }
.contact-link.instagram i { color: #f58529; }
.contact-link.email i { color: var(--cyan); }

/* ── FOOTER ── */
footer {
    background: #1a2838;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 20px 16px;
    font-size: 0.82rem;
    font-weight: 300;
}

/* ── RESPONSIVE 768px+ ── */
@media (min-width: 768px) {
    .page-header h1 { font-size: 2.5rem; }

    .faq-tab { font-size: 0.95rem; padding: 14px 20px; }

    .contact-links {
        flex-direction: row;
        max-width: 560px;
        justify-content: center;
    }

    .contact-link {
        flex: 1;
        justify-content: center;
    }
}

/* ── RESPONSIVE 480px ── */
@media (max-width: 480px) {
    .page-header { padding: 36px 20px 28px; }
    .page-header h1 { font-size: 1.75rem; }
    .faq-section { padding: 28px 0 48px; }
    .faq-tab { font-size: 0.8rem; padding: 10px 8px; gap: 5px; }
    .faq-question { padding: 16px; font-size: 0.9rem; }
    .faq-answer-content { font-size: 0.88rem; padding: 12px 16px 16px; }
}

/* ── RESPONSIVE 320px ── */
@media (max-width: 320px) {
    .toolbar-container { gap: 16px; }
    .toolbar-container a { font-size: 0.9rem; width: 28px; height: 28px; }
    .page-header h1 { font-size: 1.5rem; }
    .faq-tab span { display: none; }
    .faq-tab i { font-size: 1rem; }
}