:root {
    --bg: #fffbf3;
    --fg: #1f363a;
    --card: #ffffff;
    --muted: #f7f1e6;
    --muted-fg: #6b7f82;
    --primary: #099db2;
    --accent: #ff6cde;
    --border: #e8e0d1
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "DM Sans", system-ui, sans-serif;
    background: var(--bg);
    color: var(--fg)
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
    font-family: "Playfair Display", serif
}

.section-spacing {
    padding-top: 5rem;
    padding-bottom: 5rem
}

.container-padding {
    padding-left: 1rem;
    padding-right: 1rem
}

@media(min-width:640px) {
    .container-padding {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .section-spacing {
        padding-top: 6rem;
        padding-bottom: 6rem
    }
}

.glass {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px)
}

.card-hover {
    transition: transform .3s ease, box-shadow .3s ease
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(9, 157, 178, .12)
}

.btn-primary,
.btn-accent,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    border-radius: .9rem;
    padding: .95rem 1.35rem;
    font-weight: 700;
    transition: all .2s ease
}

.btn-primary {
    background: var(--primary);
    color: #fff
}

.btn-primary:hover {
    filter: brightness(.95)
}

.btn-accent {
    background: var(--accent);
    color: #fff
}

.btn-accent:hover {
    filter: brightness(.95)
}

.btn-outline {
    border: 1px solid rgba(9, 157, 178, .18);
    background: #fff;
    color: var(--primary)
}

.btn-outline:hover {
    background: rgba(9, 157, 178, .05)
}

.header-scrolled {
    background: rgba(255, 251, 243, .92);
    box-shadow: 0 10px 30px rgba(31, 54, 58, .08)
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .58), rgba(0, 0, 0, .35), var(--bg))
}

.star {
    color: #ffb703
}

.toast {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 90;
    max-width: 360px;
    border-radius: 1rem;
    background: #111827;
    color: #fff;
    padding: 1rem 1.1rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: all .25s ease
}

.toast.show {
    opacity: 1;
    transform: translateY(0)
}

.fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: all .7s ease
}

.fade-up.visible {
    opacity: 1;
    transform: none
}

.faq-item[data-open="true"] .faq-content {
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: .25rem
}

.faq-item[data-open="true"] .faq-plus {
    transform: rotate(45deg)
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: rgba(9, 157, 178, .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center
}

.whatsapp-pulse {
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}