:root {
    --azul-serenity: #9BB7D4;
    --azul-profundo: #2F4A68;
    --azul-claro: #DCE7F2;
    --offwhite: #F8F9FB;
    --cinza: #4A4A4A;
    --dourado: #C8B273;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--offwhite);
    color: var(--cinza);
    padding-top: 70px;
}

h1, h2, .navbar-brand {
    font-family: 'Playfair Display', serif;
    color: var(--azul-profundo);
}

/* ================= NAVBAR ================= */
.navbar {
    background: linear-gradient(
        90deg,
        var(--azul-profundo),
        var(--azul-serenity)
    ) !important;
}

.navbar-brand,
.nav-link {
    color: #fff !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--dourado) !important;
}

/* ================= HERO ================= */
.hero {
    min-height: 95vh;
    background: linear-gradient(
        rgba(47,74,104,0.55),
        rgba(47,74,104,0.55)
    ), url('../img/destaque.jpeg') center/cover no-repeat;
}

.hero h1 {
    color: #ffffff;
}

.hero p {
    color: #eef4fa;
}

/* ================= BOTÃO CTA ================= */
.hero .btn {
    background: linear-gradient(
        45deg,
        var(--dourado),
        #e4d8a5
    );
    border: none;
    color: #4b3e15;
    font-weight: 600;
    padding: 14px 42px;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transition: 0.35s ease;
}

.hero .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

/* ================= CONTAGEM REGRESSIVA ================= */
#contador .card {
    background: linear-gradient(
        135deg,
        #ffffff,
        var(--azul-claro)
    );
    border: none;
    border-radius: 22px;
}

#contador h3 {
    color: var(--azul-profundo);
}

/* ================= SOBRE ================= */
#sobre {
    background: #ffffff;
    border-radius: 30px;
    margin-top: -90px;
    padding: 90px 40px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

/* ================= DEPOIMENTOS ================= */
.bg-light {
    background: linear-gradient(
        180deg,
        #ffffff,
        var(--azul-claro)
    ) !important;
}

.card {
    border-radius: 22px;
    border: none;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

.card p {
    color: var(--azul-profundo);
    font-size: 1.05rem;
}

/* ================= FOOTER ================= */
footer {
    background: linear-gradient(
        90deg,
        var(--azul-profundo),
        var(--azul-serenity)
    );
}


.btn-presente {
    background: linear-gradient(135deg, #6b8fbf, #8faedc); /* Azul Serenity */
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 26px;
    font-weight: 600;
    letter-spacing: .5px;
    box-shadow: 0 8px 18px rgba(107, 143, 191, 0.35);
    transition: all 0.3s ease;
}

.btn-presente:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(107, 143, 191, 0.45);
    background: linear-gradient(135deg, #5c7cad, #7da0d8);
    color: #fff;
}

.btn-presente:active {
    transform: scale(0.97);
}

.btn-loadmore {
    background: transparent;
    border: 2px solid #6c9bcf; /* Azul Serenity */
    color: #6c9bcf;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-loadmore:hover {
    background: #6c9bcf;
    color: #fff;
}