:root {
    --primary: #e60073;
    --primary-dark: #c40062;
    --bg-dark: #050509;
    --bg-light: #f7f7fa;
    --text-main: #222222;
    --text-muted: #666666;
    --accent: #ffb3d5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
}

a {
    text-decoration: none;
}


header {
    background: #0a0a0f;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 99;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-logo img {
    height: 46px;
    width: auto;
    display: block;
    background: var(--primary);
}

.top-logo-text {
    color: #ffffff;
}

.top-logo-text h1 {
    font-size: 18px;
    letter-spacing: 0.04em;
}

.top-logo-text span {
    font-size: 12px;
    color: #cccccc;
}

.top-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-cta .book-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: 0.3s;
}

.top-cta .book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}


.hero {
    background: linear-gradient(135deg, #050509 0%, #300020 45%, #02010c 100%);
    color: #ffffff;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 40px 0 60px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-copy h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.hero-copy h2 span {
    color: var(--accent);
}

.hero-copy p {
    font-size: 16px;
    color: #e5e5e5;
    margin-bottom: 16px;
}

.hero-tags {
    font-size: 13px;
    margin-bottom: 20px;
    color: #f1f1f1;
}

.hero-tags span {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 8px;
    margin-bottom: 8px;
}

.hero-actions .book-now-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    transition: 0.3s;
}

.hero-actions .book-now-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-actions small {
    display: block;
    font-size: 12px;
    color: #cccccc;
    margin-top: 8px;
}


.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), transparent);
}

.hero-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    color: #ffffff;
}


main {
    padding: 40px 0 60px;
}

.section-card {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    margin-bottom: 28px;
}

.section-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.section-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.section-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.section-card ul {
    margin-left: 18px;
    margin-bottom: 14px;
}

.section-card li {
    margin-bottom: 6px;
    color: var(--text-muted);
    font-size: 15px;
}

.inline-btn-wrap {
    margin-top: 12px;
}

.inline-btn-wrap .book-now-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.inline-btn-wrap .book-now-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}


.grid-two {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 22px;
}

.pill-list span {
    display: inline-block;
    padding: 6px 12px;
    background: #f2f2f7;
    border-radius: 999px;
    font-size: 13px;
    color: #555555;
    margin: 4px 6px 4px 0;
}


.faq-item {
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.faq-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text-main);
}

.faq-item span {
    font-size: 14px;
    color: var(--text-muted);
}


footer {
    background: var(--bg-dark);
    padding: 40px 0 26px;
    color: #dddddd;
    margin-top: 10px;
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-logo img {
    width: 160px;
    height: auto;
    display: inline-block;
}

.footer-links {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a {
    color: #f3f3f3;
    margin: 0 8px;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--accent);
}

.privacy-footer-premium p {
    font-size: 13px;
    color: #bbbbbb;
}

.privacy-footer-premium a {
    color: var(--accent);
    text-decoration: none;
}

.privacy-footer-premium a:hover {
    text-decoration: underline;
}



.fab-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.fab-main {
    width: var(--size-main);
    height: var(--size-main);
    border-radius: 50%;
    background-color: #2b3a55;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.fab-main:active {
    transform: scale(0.95);
}

.fab-options {
    position: absolute;
    bottom: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.35s ease-in-out;
}

.fab-container.active .fab-options {
    transform: scale(1);
}


.fab-options li {
    position: absolute;
    bottom: 0;
    right: 0;
}


.fab-btn {
    width: var(--size-child);
    height: var(--size-child);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
}


.fab-container.active .fab-btn {
    opacity: 1;
}

.whatsapp {
    background-color: #25D366;
    background-color: #25D366;
    padding: 15px;
    border-radius: 50%;
}

.phone {
    background-color: #1E3A8A;
    background-color: #1E3A8A;
    padding: 15px;
    border-radius: 50%;
}

.message {
    background-color: #2196F3;
    background-color: #2196F3;
    padding: 15px;
    border-radius: 50%;
}

.up {
    background-color: #FF9800;
    background-color: #FF9800;
    padding: 15px;
    border-radius: 50%;
}


.fab-container.active .fab-options li:nth-child(1) {
    transform: translate(-90px, -15px);
}

.fab-container.active .fab-options li:nth-child(2) {
    transform: translate(-65px, -80px);
}

.fab-container.active .fab-options li:nth-child(3) {
    transform: translate(0px, -110px);
}

.fab-container.active .fab-options li:nth-child(4) {
    transform: translate(0px, -170px);
}


@media (max-width: 768px) {
    .lead {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --size-main: 50px;
        --size-child: 45px;
    }

    .fab-container.active .fab-options li:nth-child(1) {
        transform: translate(-75px, -10px);
    }

    .fab-container.active .fab-options li:nth-child(2) {
        transform: translate(-50px, -65px);
    }

    .fab-container.active .fab-options li:nth-child(3) {
        transform: translate(0px, -95px);
    }

    .fab-container.active .fab-options li:nth-child(4) {
        transform: translate(0px, -150px);
    }
}


@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 26px;
    }

    .hero-banner-image {
        order: -1;
        height: 220px;
    }

    .hero-copy h2 {
        font-size: 26px;
    }
}

@media (max-width: 700px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    header {
        padding-bottom: 10px;
    }

    main {
        padding: 26px 0 42px;
    }

    .section-card {
        padding: 22px 18px;
    }

    .grid-two {
        grid-template-columns: 1fr;
    }

    .top-cta-mobile {
        display: none !important;
    }
}