/* Global */
@import './global/global.css';
@import './global/reset.css';
@import './global/header.css';
@import './global/footer.css';

/* Home */
@import './home/banner.css';
@import './home/marquee.css';
@import './home/cirurgia.css';
@import './home/conheca.css';
@import './home/especialidade.css';
@import './home/exames.css';
@import './home/sintomas.css';
@import './home/especializacoes.css';
@import './home/idb.css';
@import './home/numeros.css';
@import './home/form.css';
@import './home/home.css';
@import './home/cards.css';
@import './home/tamanho.css';
@import './home/beneficios.css';
@import './home/beneficios-detalhados.css';
@import './home/medico.css';
@import './home/clinica.css';
@import './home/article.css';
@import './home/faq.css';
@import './home/depoimentos.css';
/* Utilidades */
@import './utilidades/animacao.css';
@import './utilidades/cores.css';

/* Pilares da Autoestima Masculina */
.pilares-section {
  margin-top: 40px;
  margin-bottom: 40px;
}

.pilares-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.pilares-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.pilar-card {
  flex: 1;
  min-width: 300px;
  background: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pilar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.pilar-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.sobre-mim-title {
  color: #4aa07f;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
  margin-top: 40px;
  text-align: center;
}

.pilar-icon {
  background: #4aa07f;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-right: 15px;
}

.pilar-icon span {
  color: white;
  font-weight: bold;
}

.pilar-name {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.pilar-description {
  margin-top: 10px;
  line-height: 1.6;
  color: #555;
}

.pilar-description strong {
  color: #4aa07f;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .pilares-container {
    flex-direction: column;
  }

  .pilar-card {
    min-width: auto;
  }
}

/* Pilares da Autoestima Masculina - Formato Simples */
.pilares-simples {
  margin: 25px 0;
}

.pilar-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.pilar-item img {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  margin-top: 2px;
}

.pilar-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: 3a7d5e;
}

/* Ajuste para o card de benefício */
.beneficio-card {
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(115, 174, 214, 0.1);
}

.beneficio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(115, 174, 214, 0.3);
}

.beneficio-card h3 {
  color: #4aa07f;
  margin: 15px 0;
  font-size: 22px;
  font-weight: 600;
}

.beneficio-card p {
  flex-grow: 1;
  color: #666;
  line-height: 1.5;
  font-size: 16px;
  padding-bottom: 11px;
}

.beneficio-card strong {
  color: #4aa07f;
  font-weight: 700;
}

.beneficio-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.beneficio-icon img {
  width: 60px;
  height: 60px;
}

.beneficios-cards {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  margin-top: 0;
  padding-top: 0;
}

/* Estilização específica para os ícones da seção "Condições tratadas" */
.condicoes-title+.beneficios-cards .beneficio-icon img {
  width: 35px;
  height: 35px;
  opacity: 71%;
}

/* Botão Saiba Mais */
.saiba-mais-btn {
  display: inline-block;
  background-color: var(--cor-p1);
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  margin-top: auto;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-align: center;
  align-self: center;
  width: 80%;
}

.saiba-mais-btn:hover {
  background-color: var(--cor-p2);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  position: absolute;
  background-color: #fff;
  padding: 30px;
  width: 80%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease;
  max-height: 80vh;
  overflow-y: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #677e74;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1010;
}

.close-modal:hover {
  color: #677e74;
}

.modal-icon {
  text-align: center;
  margin-bottom: 20px;
}

.modal-icon img {
  width: 60px;
  height: 60px;
}

.modal-content h2 {
  color: #677e74;
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.modal-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: center;
}

.modal-cta {
  display: block;
  background-color: #677e74;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 25px;
  margin: 25px auto 0;
  font-weight: 500;
  text-align: center;
  max-width: 250px;
  transition: background-color 0.3s ease;
}

.modal-cta:hover {
  background-color: #677e74;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responsividade para o modal e cards */
@media (max-width: 768px) {
  .beneficios-cards {
    flex-direction: column;
    gap: 25px;
    margin-top: 0;
    padding-top: 0;
  }

  .beneficio-card {
    padding: 25px 20px;
    text-align: center;
  }

  .beneficio-card h3 {
    font-size: 20px;
  }

  .beneficio-card p {
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
    padding-bottom: 10px;
  }

  .saiba-mais-btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
  }

  .modal-content {
    width: 90%;
    padding: 25px 20px;
    text-align: center;
    max-height: 85vh;
  }

  .modal-icon img {
    width: 50px;
    height: 50px;
  }

  .modal-content h2 {
    font-size: 20px;
  }

  .modal-content p {
    font-size: 13px;
    text-align: center;
    padding: 0 5px;
  }

  .modal-cta {
    padding: 15px 20px;
    font-size: 16px;
    width: 100%;
    max-width: none;
  }
}

/* Logos das Associações */
.associacoes-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  /* margin: 20px 0 25px 0; */
  padding: 0;
  width: 100%;
  margin-bottom: 10px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 10px;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: translateY(-5px);
}

.associacao-logo {
  max-width: 70px;
  opacity: 70%;
  height: auto;
}

@media (max-width: 768px) {
  .associacoes-logos {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .sobre-mim-title {
    font-size: 39px;
  }


  .associacao-logo {
    max-width: 120px;
  }
}

/* para usar o mincss
cleancss -o ./css/style.min.css ./css/style.css
quando o site estiver completo trocar o arquivo css padrão
*/

.turbine-description strong {
  color: #2c3e50;
  font-weight: 700;
}

.turbine-description br {
  display: block;
  content: "";
  margin-top: 10px;
}

.condicoes-title {
  text-align: center;
  color: #4aa07f;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  margin-top: 60px;
}

.condicoes-title strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .condicoes-title {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .beneficios-cards {
    flex-direction: column;
    gap: 25px;
    margin-top: 0;
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .condicoes-title {
    font-size: 29px;
    margin-top: 30px;
    line-height: 1.4;
    padding: 0 15px;
  }
}

.accordion-wrapper {
  margin: 30px 0;
}

.accordion {
  background: rgba(74, 160, 127, 0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(74, 160, 127, 0.2);
  transition: all 0.3s ease;
}

.accordion:hover {
  box-shadow: 0 4px 12px rgba(74, 160, 127, 0.1);
}

.accordion-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(74, 160, 127, 0.1);
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background: rgba(74, 160, 127, 0.15);
}

.accordion-header h3 {
  color: var(--cor-11);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--cor-11);
  transition: transform 0.3s ease;
}

.accordion.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion.active .accordion-content {
  max-height: 1000px;
}

.accordion-content ul {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.accordion-content li {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(74, 160, 127, 0.2);
}

.accordion-content li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.education-year {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--cor-10);
  background: rgba(74, 160, 127, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.accordion-content h4 {
  color: var(--cor-11);
  font-size: 1.1rem;
  margin: 8px 0;
  font-weight: 600;
}

.accordion-content p {
  color: var(--cor-10);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .accordion-header {
    padding: 15px;
  }

  .accordion-content ul {
    padding: 15px;
  }

  .accordion-content li {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

:root {
  --cor-p1: #4aa07f;
  --cor-p2: #3d8468;
  --cor-p3: #2e6950;
  --cor-p4: #1f4e39;
  --cor-p5: #092218;
}

.btn-hover {
  background-color: var(--cor-p1);
  box-shadow: 0 4px 15px rgba(74, 160, 127, 0.3);
}

.accordion {
  background: rgba(74, 160, 127, 0.05);
  border: 1px solid rgba(74, 160, 127, 0.2);
}

.accordion:hover {
  box-shadow: 0 4px 12px rgba(74, 160, 127, 0.1);
}

.accordion-header {
  background: rgba(74, 160, 127, 0.1);
}

.accordion-header:hover {
  background: rgba(74, 160, 127, 0.15);
}

.accordion-content li {
  border-bottom: 1px solid rgba(74, 160, 127, 0.2);
}

.education-year {
  background: rgba(74, 160, 127, 0.1);
}

.introducao {
  background: linear-gradient(to right, rgba(74, 160, 127, 0.9), rgba(46, 105, 80, 0.9)),
    url("../img/bg-doenca-renal.jpg");
}

.tamanho {
  background: linear-gradient(to right, rgba(74, 160, 127, 0.9), rgba(46, 105, 80, 0.9)),
    url("../img/bg-sobre-mim.jpg");
}

.footer {
  background: linear-gradient(to right, rgba(74, 160, 127, 0.9), rgba(46, 105, 80, 0.9)),
    url("../img/bg-footer.jpg");
}

.botao-primario {
  background: var(--cor-p1);
}

.botao-primario:hover {
  background: var(--cor-p2);
}

.menu-list li:hover::after,
.menu-list li.ativo::after {
  background: var(--cor-p1);
}

.div-style {
  background: var(--cor-p1);
}

.condicoes-title strong {
  color: var(--cor-p1);
}

.beneficio-icon {
  background: rgba(74, 160, 127, 0.1);
}