* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fffcfa;
    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 {
    border-bottom: 1px solid #ffe2d4;
    height: 810px;
    padding-top: 166px;
}
.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: 36px;
    font-size: 30px;
    margin-bottom: 0px;
}

.page-section {
    padding: 60px 0px;
}

/* CSS EXCLUSIVO PARA O BLOCO DE CURSOS COM FOTO, PREÇO E BOTÃO */

/* Card do curso */
.card-curso {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-curso:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(197, 106, 80, 0.15);
}

/* Imagem do curso */
.card-curso-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-curso:hover .card-curso-img {
    transform: scale(1.03);
}

/* Conteúdo do card */
.card-curso-content {
    padding: 1.25rem 1.25rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Título */
.card-curso-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2f2a28;
    margin-bottom: 0.75rem;
}

/* Descrição/resumo */
.card-curso-content p {
    color: #6c6c6c;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Bloco de preços */
.curso-preco {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.preco {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c56a50;
}

.preco-antigo {
    font-size: 0.9rem;
    color: #a0a0a0;
    text-decoration: line-through;
}

/* Botão do curso */
.btn-curso {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #c56a50;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    cursor: pointer;
}

.btn-curso:hover {
    background: #a8553e;
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.02);
}

.btn-curso i {
    transition: transform 0.3s ease;
}

.btn-curso:hover i {
    transform: translateX(4px);
}

/* Botão ver todos */
.btn-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #c56a50;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #c56a50;
}

.btn-ver-todos:hover {
    background: #c56a50;
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.02);
}

.btn-ver-todos:hover i {
    transform: translateX(4px);
}

/* Responsividade */
@media (max-width: 768px) {
    .card-curso-img {
        height: 150px;
    }
    
    .card-curso-content {
        padding: 1rem;
    }
    
    .preco {
        font-size: 1.25rem;
    }
    
    .btn-curso {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .curso-preco {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* CSS EXCLUSIVO PARA O BLOCO DE PRODUTOS */


/* Card do produto */
.card-produto {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-produto:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(197, 106, 80, 0.12);
}

/* Imagem do produto */
.card-produto-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-produto:hover .card-produto-img {
    transform: scale(1.03);
}

/* Conteúdo do card */
.card-produto-content {
    padding: 1rem 1rem 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Título do produto */
.card-produto-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2f2a28;
    margin-bottom: 0.5rem;
}

/* Descrição/resumo */
.card-produto-content p {
    color: #6c6c6c;
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Bloco de preços */
.produto-preco {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.card-produto-content .preco {
    font-size: 1.3rem;
    font-weight: 800;
    color: #c56a50;
}

.card-produto-content .preco-antigo {
    font-size: 0.8rem;
    color: #a0a0a0;
    text-decoration: line-through;
}

/* Botão do produto */
.btn-produto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #c56a50;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    cursor: pointer;
}

.btn-produto:hover {
    background: #a8553e;
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.02);
}

.btn-produto i {
    transition: transform 0.3s ease;
}

.btn-produto:hover i {
    transform: translateX(3px);
}

/* Botão ver todos (reutilizado) */
.btn-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #c56a50;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #c56a50;
}

.btn-ver-todos:hover {
    background: #c56a50;
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.02);
}

.btn-ver-todos:hover i {
    transform: translateX(4px);
}

/* Responsividade */
@media (max-width: 992px) {
    .col-lg-3 {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .card-produto-img {
        height: 160px;
    }
    
    .card-produto-content {
        padding: 0.85rem;
    }
    
    .card-produto-content h4 {
        font-size: 1rem;
    }
    
    .card-produto-content .preco {
        font-size: 1.15rem;
    }
    
    .btn-produto {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .col-md-6 {
        width: 100%;
    }
    
    .produto-preco {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
}

/* CSS EXCLUSIVO PARA O BLOCO DE EMPRESAS */


/* CSS EXCLUSIVO PARA O BLOCO DE EMPRESAS */


/* Botão principal do bloco empresas */
.btn-empresas {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #c56a50;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-empresas:hover {
    background: #a8553e;
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.02);
}

.btn-empresas i {
    transition: transform 0.3s ease;
}

.btn-empresas:hover i {
    transform: translateX(5px);
}

/* Card do serviço empresarial */
.card-empresa {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(197, 106, 80, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.card-empresa:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(197, 106, 80, 0.12);
    border-color: rgba(197, 106, 80, 0.3);
}

/* Ícone do serviço */
.card-empresa-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f9e9df 0%, #f3e9f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.card-empresa-icon i {
    font-size: 2rem;
    color: #c56a50;
}

.card-empresa:hover .card-empresa-icon {
    background: linear-gradient(135deg, #c56a50 0%, #e08b6e 100%);
}

.card-empresa:hover .card-empresa-icon i {
    color: #ffffff;
}

/* Título */
.card-empresa h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2f2a28;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* Descrição */
.card-empresa p {
    color: #6c6c6c;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

/* Botão saiba mais */
.btn-empresa-saiba {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #c56a50;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid #c56a50;
    width: 100%;
}

.btn-empresa-saiba:hover {
    background: #c56a50;
    color: #ffffff;
    text-decoration: none;
}

.btn-empresa-saiba:hover i {
    transform: translateX(4px);
}

.btn-empresa-saiba i {
    transition: transform 0.3s ease;
}

/* Botão ver todos */
.btn-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #c56a50;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #c56a50;
}

.btn-ver-todos:hover {
    background: #c56a50;
    color: #ffffff;
    text-decoration: none;
    transform: scale(1.02);
}

.btn-ver-todos:hover i {
    transform: translateX(4px);
}

/* Responsividade */
@media (max-width: 992px) {
    .col-lg-4 {
        width: 50%;
    }
    
    .card-empresa {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .btn-empresas {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
    
    .card-empresa-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-empresa-icon i {
        font-size: 1.6rem;
    }
    
    .card-empresa h4 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .col-md-6 {
        width: 100%;
    }
}

.flag-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  min-width: 90px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.flag-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.flag-img {
  width: 48px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.flag-card span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #4a4a4a;
}

/* ESTILOS DE DESTAQUE PARA O BRASIL */
.flag-card-destaque {
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
  border: 2px solid #ffb347;
  box-shadow: 0 8px 20px rgba(255, 180, 71, 0.25);
  padding: 1rem 1.2rem;
  min-width: 120px;
}

.flag-img-destaque {
  width: 72px !important;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.destaque-texto {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #d48c2c !important;
}

.badge-destaque {
  font-size: 0.65rem;
  background-color: #ffb347;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.comunidade-descricao {
  background: rgba(255, 248, 240, 0.6);
  border-radius: 24px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .flag-card {
    min-width: 70px;
    padding: 0.5rem;
  }
  .flag-img {
    width: 36px;
  }
  .flag-card span {
    font-size: 0.7rem;
  }
  
  /* Destaque mobile */
  .flag-card-destaque {
    min-width: 100px;
    padding: 0.8rem;
  }
  .flag-img-destaque {
    width: 56px !important;
  }
  .destaque-texto {
    font-size: 0.85rem !important;
  }
  .badge-destaque {
    font-size: 0.55rem;
  }
  
  .comunidade-descricao {
    padding: 1.2rem;
  }
  .comunidade-descricao .lead {
    font-size: 0.95rem;
  }
}

.mb-20 {
    margin-bottom: 20px !important
}