* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fefaf5;
    color: #2c2a29;
    scroll-behavior: smooth;
}

/* Ajuste para textos que usam Montserrat com melhor redondeza */
p, li, span, .nav-link, .btn, .hero-badge, .card-modern p, .small, label, input, textarea, select {
    font-family: 'Montserrat', sans-serif;
}
.navbar {
    background-color: #ffffffdd;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.3s;
    padding: 0px;
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #b5725c, #9b4a3a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.nav-link {
    font-weight: 500;
    color: #3e2c27 !important;
    margin: 0 0.3rem;
    font-size: 1rem;
    transition: 0.2s;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.2px;
}
.nav-link:hover, .nav-link.active {
    color: #b45a48 !important;
}

footer h6 {
    color: #000;
    font-size: 21px;
}

footer .list-unstyled li a {
    color: #000 !important;
    font-size: 15px !important;
    margin-bottom: 6px;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #b45a48;
    transition: 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.btn-rose {
    background: #67332d;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 40px;
    color: white;
    transition: all 0.3s;
    box-shadow: 0 6px 14px rgba(158, 63, 44, 0.25);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.2px;
}
.btn-rose:hover {
    transform: translateY(-3px);
    background: linear-gradient(95deg, #9e4a36, #843728);
    box-shadow: 0 12px 22px rgba(158, 63, 44, 0.3);
    color: white;
}
.btn-outline-soft {
    border: 1.5px solid #b85c44;
    background: transparent;
    color: #b85c44;
    border-radius: 40px;
    padding: 10px 28px;
    font-weight: 600;
    transition: 0.2s;
    font-family: 'Montserrat', sans-serif;
}
.btn-outline-soft:hover {
    background: #b85c44;
    color: white;
}
.hero-section {
    background: linear-gradient(107deg, #fff6ed 0%, #fdebe2 100%);
    padding: 160px 0 60px 0;
    border-bottom: 1px solid #ffe2d4;
}
.hero-badge {
    background: #ffede6;
    color: #b25a44;
    border-radius: 100px;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.2px;
}
.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #2f2420;
    position: relative;
    margin-top: 0;
    margin-bottom: 1rem;
}
.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #ca7a62;
    margin-top: 12px;
    border-radius: 3px;
}
.card-modern {
    background: white;
    border: none;
    border-radius: 28px;
    padding: 1.8rem;
    transition: all 0.25s ease;
    box-shadow: 0 12px 28px rgba(0,0,0,0.03);
    height: 100%;
}
.card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 32px rgba(110, 50, 35, 0.08);
}
.card-modern p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}
.icon-lg {
    font-size: 2.6rem;
    color: #c56a50;
}
.bg-soft-warm {
    background-color: #fff7f2;
}
footer {
    background: #ffffff;
    color: #d9cdc5;
}
footer p, footer li, footer a, footer h3, footer h6 {
    font-family: 'Montserrat', sans-serif;
    color: #000;
}

footer p {
    color: #000;
}
.social-icons a {
    font-size: 1.5rem;
    color: #000000;
    transition: 0.2s;
    margin-right: 1.2rem;
}
.social-icons a:hover {
    color: #ffc2ab;
}
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 50px;
    }
    .section-title {
        font-size: 2rem;
    }
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header .hero-badge {
    margin-bottom: 1rem;
}
.section-header .section-title {
    margin-bottom: 1rem;
}
.section-header .section-title:after {
    margin-left: auto;
    margin-right: auto;
}
.section-header-left {
    margin-bottom: 2.5rem;
}
.section-header-left .hero-badge {
    margin-bottom: 0.75rem;
}
.section-header-left .section-title:after {
    margin-left: 0;
}

.form-control, .form-select {
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px !important;
    border: 1px solid #e0d3cc;
    padding: 10px 18px;
}
.form-control:focus, .form-select:focus {
    border-color: #ca7a62;
    box-shadow: 0 0 0 0.2rem rgba(202, 122, 98, 0.25);
}
.lead {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: -0.2px;
}


.nav .btn.btn-rose {
    padding: 15px 30px;
}

.moduloContato .btn.btn-rose {
    padding: 15px 30px !important;
}

.hero-section h1 {
    line-height: 60px;
}

.page-section {
    padding: 60px 0px;
}