/* ===================== RESET BÁSICO ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(to right, #1e3c72, #31579c);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0e6e49;
  color: #f6f8f7;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #189967;
  transform: translateY(-3px);
}

/* ===================== BENEFÍCIOS ===================== */
.beneficios {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.beneficios h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1e3c72;
}

.beneficio p {
  font-size: 1rem;
  color: #555;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.beneficio {
  padding: 30px 20px;
  border-radius: 10px;
  background-color: #fdfdfd;
  transition: all 0.3s ease;
}

.beneficio:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ===================== SOBRE ===================== */
.sobre {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.sobre-texto h2 {
  font-size: 2rem;
  color: #1e3c72;
  margin-bottom: 20px;
}

.sobre-texto p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.sobre-texto .link {
  display: inline-block;
  padding: 10px 25px;
  background-color: #1e3c72;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.sobre-texto .link:hover {
  background-color: #1e3c72;
  transform: translateY(-3px);
}

.sobre-imagem img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.sobre-imagem img:hover {
  transform: scale(1.03);
}

/* ===================== ÍCONES (BOLINHAS) ===================== */
.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #e0ebf9; 
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.icon-circle i, .icon-circle svg {
  color: #1e3c72;
  width: 20px;
  height: 20px;
}

/* ===================== SERVIÇOS ===================== */
.servicos {
  padding: 80px 0;
  background-color: #ffffff;
}

.servicos h2 {
  font-size: 2rem;
  color: #1e3c72;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.servicos .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.servico {
  background-color: #fff;
  border-radius: 6px;
  border-top: 4px solid #1e3c72;
  padding: 20px;
  text-align: left;
  transition: all 0.3s ease;
}

.servico .icon-circle {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.servico .icon-circle i {
  font-size: 20px;
}

.servico h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #000;
  font-weight: 500;
}

.servico p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

.servico:hover {
  transform: translateY(-5px);
  border: 1px solid #ccc;
}

/* ===================== RESPONSIVIDADE ===================== */
/* Mobile */
@media (max-width: 600px) {
  .hero h2 { font-size: 2rem; }
  .hero p { font-size: 1rem; padding: 0 10px; }
  .btn-primary { padding: 10px 20px; font-size: 0.9rem; }
  
  .beneficios h3 { font-size: 1.3rem; }
  .beneficio p { font-size: 0.95rem; }
  
  .sobre-texto h2 { font-size: 1.6rem; }
  .sobre-texto p { font-size: 1rem; }
  .sobre-texto .link { padding: 8px 20px; font-size: 0.9rem; }

  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }

  .icon-circle { width: 35px; height: 35px; }
  .icon-circle i, .icon-circle svg { width: 18px; height: 18px; }

  .servicos h2 { font-size: 1.6rem; margin-bottom: 25px; }
  .servico h3 { font-size: 0.95rem; }
  .servico p { font-size: 0.85rem; }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 992px) {
  .hero h2 { font-size: 2.2rem; }
  .hero p { font-size: 1.1rem; }
  .btn-primary { padding: 11px 25px; font-size: 1rem; }
  
  .beneficios h3 { font-size: 1.4rem; }
  .sobre-texto h2 { font-size: 1.8rem; }
  .sobre-texto p { font-size: 1.05rem; }
  .sobre-texto .link { padding: 9px 22px; font-size: 0.95rem; }

  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

/* Desktop */
@media (min-width: 993px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ===================== DEPOIMENTOS ===================== */
.depoimentos {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.depoimentos h2 {
  font-size: 2rem;
  color: #1e3c72;
  margin-bottom: 10px;
  font-weight: 600;
}

.depoimentos-subtitulo {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Grid dos cards */
.depoimentos .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

/* Cards */
.depoimento {
  background-color: #fdfdfd;
  border-radius: 6px; /* cantos levemente arredondados */
  border-top: 4px solid #1e3c72; /* faixa azul fina no topo */
  padding: 20px;
  transition: all 0.3s ease;
}

.depoimento p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.depoimento strong {
  font-size: 0.9rem;
  color: #1e3c72;
  display: block;
}

/* Hover leve */
.depoimento:hover {
  transform: translateY(-5px);
  border: 1px solid #ccc;
}

/* ===================== RESPONSIVIDADE ===================== */
/* Mobile */
@media (max-width: 600px) {
  .depoimentos h2 { font-size: 1.6rem; }
  .depoimentos-subtitulo { font-size: 0.9rem; margin-bottom: 25px; }
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .depoimento p { font-size: 0.9rem; }
  .depoimento strong { font-size: 0.85rem; }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

/* Desktop */
@media (min-width: 993px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.depoimento-estrelas {
  color: #f2b01e; /* dourado das estrelas */
  font-size: 1rem; /* tamanho das estrelas */
  margin-bottom: 10px;
  text-align: center; /* centraliza acima do depoimento */
}

/* Mobile */
@media (max-width: 600px) {
  .depoimento-estrelas {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 992px) {
  .depoimento-estrelas {
    font-size: 0.95rem;
  }
}

/* Desktop */
@media (min-width: 993px) {
  .depoimento-estrelas {
    font-size: 1rem;
  }
}
/* ===================== CTA ===================== */
.cta {
  background: linear-gradient(to right, #1e3c72, #31579c); /* azul profissional */
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px; /* dá um toque suave */
  margin-top: 60px; /* separa da sessão anterior */
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0e6e49 ; /* dourado elegante para contrastar com azul */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #189967;
  transform: translateY(-3px);
}

/* ===================== FOOTER ===================== */
.footer {
  background-color: #1e3c72; /* mesmo azul escuro do site */
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* ===================== RESPONSIVIDADE ===================== */
/* Mobile */
@media (max-width: 600px) {
  .cta h2 {
    font-size: 1.6rem;
  }

  .btn-secondary {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .footer {
    font-size: 0.85rem;
  }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 992px) {
  .cta h2 {
    font-size: 1.8rem;
  }

  .btn-secondary {
    padding: 11px 28px;
    font-size: 1rem;
  }

  .footer {
    font-size: 0.9rem;
  }
}

/* Desktop */
@media (min-width: 993px) {
  .cta h2 {
    font-size: 2rem;
  }

  .btn-secondary {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* ===================== AGENDAMENTO (CSS ISOLADO) ===================== */
.agendamento-section {
    padding: 80px 20px;
    background-color: #fffefe;
}

.agendamento-section .agendamento-container {
    max-width: 800px;
    margin: 0 auto;
}

.agendamento-header {
    text-align: center;
    margin-bottom: 40px;
}

.agendamento-header h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 10px;
    font-weight: 600;
}

.agendamento-header p {
    color: #555;
    font-size: 1rem;
}

.agendamento-form {
    width: 100%;          /* deixa ocupar toda a largura possível do container */
    max-width: 800px;     /* largura máxima pro desktop, mais estreito */
    margin: 0 auto;       /* centraliza no container */
    padding: 25px;        /* espaçamento interno confortável */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column; /* mantém campos empilhados verticalmente */
    gap: 15px;             /* espaçamento entre os campos */
}


.agendamento-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.agendamento-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.agendamento-form .form-group label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
}

.agendamento-form .form-group input,
.agendamento-form .form-group select,
.agendamento-form .form-group textarea {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #111827;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.agendamento-form .form-group input:focus,
.agendamento-form .form-group select:focus,
.agendamento-form .form-group textarea:focus {
    border-color: #1e3c72;
    box-shadow: 0 0 0 2px rgba(30, 60, 114, 0.2);
}

.agendamento-form textarea {
    resize: none;
}

.agendamento-form .checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.agendamento-form .checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.agendamento-form .checkbox-container a {
    color: #31579c;
    text-decoration: underline;
}

.agendamento-form button {
    margin-top: 25px;
    background-color: #1e3c72;
    color: #fff;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.agendamento-form button:hover {
    background-color: #31579c;
}

/* ===================== RESPONSIVIDADE ===================== */
@media (max-width: 768px) {
    .agendamento-form .form-grid {
        grid-template-columns: 1fr;
    }

    .agendamento-header h2 {
        font-size: 1.8rem;
    }

    .agendamento-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .agendamento-form button {
        width: 100%;
        text-align: center;
    }
}
.agendamento-section .agendamento-container {
    max-width: 400px; /* mais estreito que antes */
    margin: 0 auto;
    padding: 0 15px; /* garante que não encoste nas laterais da tela */
}
