:root {
    --brand: #3b82f6;
    --brand-dark: #1d4ed8;
    --brand-soft: #eff6ff;
    --accent: #8b5cf6;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #f8fafc;
    --white: #ffffff;
    --success: #16a34a;
    --shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Tahoma", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.section-subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.9;
    font-size: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(255,255,255,0.86);
    border-bottom: 1px solid rgba(229,231,235,0.8);
}

.site-header .navbar {
    padding: 14px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(59,130,246,.25);
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-weight: 800;
    color: var(--text);
    font-size: 1.05rem;
}

.brand-subtitle {
    color: var(--muted);
    font-size: 0.78rem;
}

.main-menu .nav-link {
    color: #374151;
    font-weight: 700;
    padding: 10px 14px !important;
    border-radius: 12px;
    transition: .25s ease;
}

.main-menu .nav-link:hover {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff;
    border: 0;
    border-radius: 14px;
    padding: 11px 18px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(59,130,246,0.18);
}

.btn-brand:hover {
    color: #fff;
    opacity: .95;
}

.btn-soft {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 11px 18px;
    font-weight: 700;
    color: var(--text);
}

.btn-soft:hover {
    background: var(--brand-soft);
    color: var(--brand-dark);
    border-color: #cfe0ff;
}

.custom-toggler {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px 10px;
}

.hero-section {
    position: relative;
    padding: 80px 0 50px;
    background:
        radial-gradient(circle at 85% 15%, rgba(139,92,246,.18), transparent 20%),
        radial-gradient(circle at 15% 25%, rgba(59,130,246,.18), transparent 25%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f5f3ff 100%);
}

.hero-grid {
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #dbeafe;
    color: var(--brand-dark);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 900;
    line-height: 1.3;
    margin: 18px 0 12px;
    color: var(--text);
}

.hero-title span {
    background: linear-gradient(135deg, var(--brand-dark), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.06rem;
    line-height: 2;
    color: var(--muted);
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.hero-stat {
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(226,232,240,.8);
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    box-shadow: var(--shadow);
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text);
}

.hero-stat span {
    color: var(--muted);
    font-size: .9rem;
}

.hero-visual {
    position: relative;
}

.hero-glass {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(12px);
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-card-badge {
    background: #ecfdf5;
    color: var(--success);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: .85rem;
    font-weight: 700;
}

.hero-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.hero-list-item {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-list-item i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-block {
    padding: 90px 0;
}

.card-clean {
    background: var(--white);
    border: 1px solid #edf2f7;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    height: 100%;
}

.card-clean:hover {
    transform: translateY(-3px);
    transition: .25s ease;
}

.icon-box {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(139,92,246,.12));
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin: 0 auto 18px;
}

.hours-box {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid #edf2f7;
    overflow: hidden;
}

.hours-box .table {
    margin-bottom: 0;
}

.hours-box .table thead th {
    background: linear-gradient(135deg, #eff6ff, #f5f3ff);
    color: var(--text);
    border-bottom: 0;
}

.package-card {
    position: relative;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    height: 100%;
    overflow: hidden;
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(59,130,246,.03), transparent 38%);
    pointer-events: none;
}

.package-card.popular {
    border: 2px solid #dbeafe;
    transform: translateY(-4px);
}

.package-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: var(--brand-dark);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
}

.package-price {
    font-size: 2.35rem;
    font-weight: 900;
    color: var(--text);
    margin: 18px 0 10px;
}

.package-price small {
    font-size: .95rem;
    color: var(--muted);
    font-weight: 700;
}

.package-features {
    display: grid;
    gap: 10px;
    margin: 18px 0 22px;
}

.package-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
}

.package-feature i {
    color: var(--success);
}

.info-panel {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    height: 100%;
}

.info-panel ul {
    margin: 0;
    padding-right: 18px;
}

.info-panel li {
    margin-bottom: 12px;
    color: #4b5563;
    line-height: 1.8;
}

.news-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    transition: .25s ease;
}

.news-card:hover,
.gallery-card:hover {
    transform: translateY(-4px);
}

.news-card img,
.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.news-card-body {
    padding: 20px;
}

.news-date {
    color: var(--muted);
    font-size: .88rem;
}

.gallery-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    transition: .25s ease;
}

.gallery-card small {
    color: #4b5563;
}

.cta-section {
    padding: 90px 0;
}

.cta-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #1e3a8a 55%, #7c3aed);
    color: #fff;
    border-radius: 32px;
    padding: 56px 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    top: -80px;
    left: -40px;
}

.cta-box p {
    color: rgba(255,255,255,.85);
    max-width: 700px;
    margin: 0 auto;
}

.contact-box,
.form-box {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(139,92,246,.12));
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-label {
    font-weight: 700;
    color: #374151;
}

.form-control {
    border-radius: 16px;
    min-height: 50px;
    border: 1px solid #dbe4ee;
    padding: 12px 16px;
}

.form-control:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(59,130,246,.12);
}

textarea.form-control {
    min-height: 130px;
}

.footer-section {
    background: #0f172a;
    color: #fff;
    padding-top: 60px;
}

.footer-section p,
.footer-section small,
.footer-section a {
    color: rgba(255,255,255,.75) !important;
}

.footer-section h5 {
    color: #fff;
    font-weight: 800;
}

.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    left: 22px;
    bottom: 22px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    z-index: 999;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.06);
}

.alert {
    border-radius: 16px;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 50px 0 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .main-menu {
        margin: 14px 0;
    }

    .header-actions {
        flex-direction: column;
        margin-top: 10px;
    }

    .header-actions .btn {
        width: 100%;
    }

    .section-block,
    .cta-section {
        padding: 65px 0;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .news-card img,
    .gallery-card img {
        height: 200px;
    }
}