
:root {
  --creme: #FFFBEC;
  --creme-claro: #FFFBED; 
  --azul-escuro: #1B475D;
  --verde-escuro: rgba(142, 189, 157, 0.5);
  --verde-claro: rgba(211, 220, 124, 0.5);
  --amarelo-light: rgba(250, 213, 100, 0.5);
  --amarelo: #FAD564;
  --cor-destaque: #FAD564;
  --cinza-input: #D9D9D9;
  --footer-bg: #2f5563;
  --footer-text: #ffffff;
  --footer-text-light: #e6e6e6;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-strong: rgba(0, 0, 0, 0.1);
  
  --espaco-3xl: 4rem;
  --espaco-xl: 2.5rem;
  --espaco-lg: 1.5rem;
  --espaco-md: 1rem;

  --cor-fundo: var(--creme);
  --cor-primaria: var(--azul-escuro);
  --azul-escuro-hover: #163947;
  --branco: #ffffff;
  --cinza-texto: #333;

  --sombra-card: 0 4px 8px rgba(0,0,0,0.1);
  --sombra-forte: 0 6px 14px rgba(0,0,0,0.15);

  --radius-lg: 16px;
  --radius-md: 8px;

  --peso-bold: 700;
  --peso-semibold: 600;

  --texto-4xl: 2.5rem;
  --texto-3xl: 2rem;
  --texto-2xl: 1.5rem;
  --texto-xl: 1.25rem;
  --texto-lg: 1.125rem;
  --texto-base: 1rem;

  --transicao-normal: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonte e cores base */
body {
  background-color: var(--creme);
  font-family: 'Inter', sans-serif;
  color: #000;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 64px;
}

.logo {
  height: 40px;
}

.menu a {
  margin-left: 32px;
  text-decoration: none;
  color: var(--azul-escuro);
  font-weight: 500;
}

/* Container principal */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 64px;
}

.content {
  max-width: 50%;
}

.content h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--azul-escuro);
    margin-bottom: 24px;
}

.content p {
  font-size: var(--texto-lg);
  line-height: 1.6;
  color: var(--cinza-texto);
}

.highlight {
  padding: 0 4px;
}

.verde-escuro {
  background-color: var(--verde-escuro);
}

.verde-claro {
  background-color: var(--verde-claro);
}

.amarelo {
  background-color: var(--amarelo-light);
}

/* Botões */
.buttons {
  display: flex;
  gap: 16px;
}

.btn {
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  display: inline-block;
}

.primary {
  background-color: var(--azul-escuro);
  color: var(--creme);
}

.outline {
  border: 2px solid var(--azul-escuro);
  color: var(--azul-escuro);
}

/* Imagem da direita */
.image img {
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 10px var(--shadow);
}

/* Seção de Serviços */
.servicos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: var(--creme-claro);
  flex-wrap: wrap;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  background-color: var(--creme-claro);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 10px var(--shadow);
  width: 260px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card i {
  font-size: 32px;
  color: var(--azul-escuro);
}
.servicos .card {
  cursor: default; /* deixa o mouse normal, não "clicável" */
}

.servicos .card i {
  pointer-events: none; /* impede clique sobre os ícones */
}
.card h3,
.card p {
  font-family: 'Inter', sans-serif;
  color: var(--azul-escuro);
  margin: 0;
}

.card h3 {
  font-weight: 700;
}

.card p {
  font-size: 0.95rem;
}

/* Depoimentos */
.depoimentos {
  text-align: center;
  padding: 40px 20px;
}

.depoimentos h2,
.newsletter h2 {
  color: var(--azul-escuro);
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .menu {
    gap: 1rem;
  }
}

.cliente {
  max-width: 220px;
  min-height: 250px;
  background-color: white;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 8px var(--shadow-strong);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.topo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.topo img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.cliente strong {
  font-size: 16px;
}

.cliente p {
  font-size: 14px;
  margin: 4px 0 6px;
}

.stars {
  color: var(--amarelo-sólido);
  font-size: 18px;
}

.card {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
      font-weight: 600;
      font-size: 1rem;
      color: var(--azul-escuro);
      margin: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      font-size: 0.95rem;
      color: #333;
      margin-top: 0.5rem;
    }

    input[type="checkbox"] {
 
    }

    input[type="checkbox"]:checked ~ .accordion-body {
      max-height: 500px;
    }

    .plus {
      font-size: 1.5rem;
      color: var(--azul-escuro);
    }


/* ===== CONTAINER E GRID SYSTEM ===== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--espaco-lg);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--espaco-lg);
}

.container-sm {
  max-width: 576px;
}

.container-md {
  max-width: 768px;
}

.container-lg {
  max-width: 992px;
}

.container-xl {
  max-width: 1200px;
}

/* ===== SEÇÕES DE CONTEÚDO ===== */

/* FAQ Section */
.faq-section {
  padding: var(--espaco-3xl) 0;
  background-color: var(--cor-fundo);
}

.faq-container {
  display: flex;
  gap: var(--espaco-3xl);
  align-items: flex-start;
}

.faq-intro {
  flex: 1;
  max-width: 400px;
}

.faq-intro h2 {
  font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--azul-escuro);
    margin-bottom: 24px;
}

.faq-intro p {
  font-size: var(--texto-lg);
  line-height: 1.6;
  color: var(--cinza-texto);
}

.faq-list {
  flex: 2;
  max-width: 600px;
}

.faq-item {
  background-color: var(--cor-fundo);
  border-radius: var(--radius-lg);
  margin-bottom: var(--espaco-md);
  box-shadow: var(--sombra-card);
  overflow: hidden;
  transition: all var(--transicao-normal);
}

.faq-item:hover {
  box-shadow: var(--sombra-forte);
}

.faq-question {
  width: 100%;
  padding: var(--espaco-lg);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--texto-base);
  font-weight: var(--peso-semibold);
  color: var(--cor-primaria);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transicao-normal);
}

.faq-question:hover {
  background-color: var(--azul-escuro-light);
}

.faq-icon {
  font-size: var(--texto-xl);
  transition: transform var(--transicao-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transicao-normal);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer-content {
  padding: 0 var(--espaco-lg) var(--espaco-lg);
  color: var(--cinza-texto);
  line-height: 1.6;
}

/* Mantém seu fundo e centralização */
/* Container da newsletter */
.newsletter-section {
  text-align: center; /* título e parágrafo centralizados */
  padding: var(--espaco-3xl) var(--espaco-md);
  background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--azul-escuro-hover) 100%);
  color: var(--branco);
}

/* Título */
.newsletter-section h2 {
  font-size: var(--texto-3xl);
  font-weight: var(--peso-bold);
  margin-bottom: var(--espaco-md);
}

/* Parágrafo */
.newsletter-section p {
  font-size: var(--texto-lg);
  margin-bottom: var(--espaco-xl);
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Wrapper do form para centralizar apenas os inputs + botão */
.newsletter-form-wrapper {
  display: flex;
  justify-content: center;
}

/* Formulário em linha */
.newsletter-form {
  display: flex;
  gap: var(--espaco-md);
  justify-content: center;
  align-items: center;
}


/* Inputs */
.newsletter-input {
  width: 200px; /* fixa largura sem quebrar botão */
  padding: var(--espaco-md);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--texto-base);
}

/* Botão */
.newsletter-button {
  flex-shrink: 0;
  background-color: var(--cor-destaque);
  color: var(--cor-primaria);
  border: none;
  padding: var(--espaco-md) var(--espaco-xl);
  border-radius: var(--radius-md);
  font-weight: var(--peso-semibold);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--espaco-sm);
}
.newsletter-section .container {
  display: flex;
  flex-direction: column; /* título, parágrafo e form em coluna */
  align-items: center;    /* centraliza horizontalmente */
  text-align: center;     /* mantém o texto centralizado */
}

.newsletter-button:hover {
  background-color: var(--amarelo);
  transform: translateY(-1px);
}

/* Responsividade */
@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-input,
  .newsletter-button {
    width: 100%;
  }
}



/* Footer */
.rodape {
  background-color: var(--azul-escuro); /* azul escuro */
  color: var(--footer-text); /* branco */
  padding: 40px;
  font-family: 'Inter', sans-serif;
}

.rodape-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.rodape .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* centraliza verticalmente dentro da coluna */
  max-width: 200px;
  height: 100%; /* garante que siga a altura da linha */
}

.rodape .logo img {
  width: 180px;
  height: auto;
  margin-bottom: 0;
  vertical-align: middle;
}



.linha-vertical {
  width: 1px;
  background-color: #dcdcdc;
  height: 100px;
  margin: 0 20px;
}

.rodape .col {
  max-width: 200px;
  color: var(--footer-text);
}

.rodape h4 {
  font-size: 150%;
  margin-bottom: 10px;
  border: #fff;
  color: var(--footer-text);
}

.rodape a {
  font-size: 0.9em;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.rodape a:hover {
  color: var(--amarelo);
}

.redes-sociais {
  display: flex;
  gap: 10px;
}

.redes-sociais i {
  color: var(--footer-text); /* ou outra cor que queira para os ícones */
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.redes-sociais a:hover i {
  color: var(--amarelo);
  transform: translateY(-3px);
}


/* Posicionamentos absolutos (mantidos sem mudança para não quebrar layout) */
.macbook-air-1 {
  position: absolute;
  top: 1278px;
  left: -3041px;
  background-color: #fff;
  width: 1433px;
  height: 832px;
  overflow: hidden;
}


.newsletter-section {
    padding: var(--espaco-xl) 0;
  }
  
 
  
  .newsletter-section h2 {
    font-size: var(--texto-xl);
  }



/* ===== MODAL LOGIN CUIDAFAST ===== */
.modal-login-cuidafast {
  background: #FFFBEC;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(27, 71, 93, 0.18);
  border: none;
  padding: 0 0 24px 0;
  max-width: 400px;
  margin: auto;
}
.modal-login-cuidafast .modal-header {
  border: none;
  background: transparent;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 0;
}
.modal-login-icon {
  font-size: 3rem;
  color: var(--azul-escuro);
  margin-bottom: 8px;
}
.modal-login-cuidafast .modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 0;
}
.modal-login-cuidafast .modal-body {
  padding: 32px 32px 16px 32px;
}
.modal-login-cuidafast .input-group-text {
  background: #fff;
  border: none;
  border-radius: 8px 0 0 8px;
  color: var(--azul-escuro);
  font-size: 1.2rem;
}
.modal-login-cuidafast .form-control {
  border-radius: 0 8px 8px 0;
  border: none;
  background: #fff;
  font-size: 1rem;
  box-shadow: none;
}
.btn-login-cuidafast {
  background: var(--azul-escuro);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 0;
  font-size: 1.1rem;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(27, 71, 93, 0.10);
  transition: background 0.2s, transform 0.2s;
}
.btn-login-cuidafast:hover {
  background: var(--azul-escuro-hover);
  transform: translateY(-2px) scale(1.03);
}
.modal-login-links {
  margin-top: 18px;
  font-size: 0.97rem;
}
.modal-login-links a {
  color: var(--azul-escuro);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.modal-login-links a:hover {
  color: var(--amarelo);
  text-decoration: underline;
}

/* Divider e Social Icons dentro do modal de login */
.modal-login-cuidafast .divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #666;
}

.modal-login-cuidafast .divider::before,
.modal-login-cuidafast .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.modal-login-cuidafast .divider span {
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.modal-login-cuidafast .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 10px 0 20px;
}

.modal-login-cuidafast .social-icons i {
  color: var(--azul-escuro);
  font-size: 47px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-login-cuidafast .social-icons i:hover {
  transform: scale(1.15);
  color: var(--amarelo);
}

/* ===== MODAL RECUPERAR SENHA CUIDAFAST ===== */
.modal-recuperar-cuidafast {
  background: #FFFBEC;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(27, 71, 93, 0.18);
  border: none;
  padding: 0 0 24px 0;
  max-width: 400px;
  margin: auto;
}
.modal-recuperar-cuidafast .modal-header {
  border: none;
  background: transparent;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 0;
}
.modal-recuperar-cuidafast .modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 0;
  text-align: center;
}
.modal-recuperar-cuidafast .modal-body {
  padding: 32px 32px 16px 32px;
}
.modal-recuperar-cuidafast .form-control {
  border-radius: 8px;
  border: none;
  background: #fff;
  font-size: 1rem;
  box-shadow: none;
}
.btn-login-cuidafast {
  background: var(--azul-escuro);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 0;
  font-size: 1.1rem;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(27, 71, 93, 0.10);
  transition: background 0.2s, transform 0.2s;
}
.btn-login-cuidafast:hover {
  background: var(--azul-escuro-hover);
  transform: translateY(-2px) scale(1.03);
}
@media (max-width: 500px) {
  .modal-recuperar-cuidafast .modal-body {
    padding: 20px 8px 8px 8px;
  }
  .modal-recuperar-cuidafast {
    max-width: 98vw;
  }
}


