/* 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';
/* 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: #6a92c5;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
  margin-top: 40px;
  text-align: center;
}

.pilar-icon {
  background: #6a92c5;
  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: #6a92c5;
}

/* 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 {
  flex: 0 1 calc(33.333% - 14px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  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: #6a92c5;
  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: #6a92c5;
  font-weight: 700;
}

.beneficio-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.beneficio-icon img {
  width: 60px;
  height: 60px;
}

.beneficios-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 0;
  padding-top: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* 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%;
}

/* Estilização específica para os cards da seção "Condições tratadas" */
.condicoes-title+.beneficios-cards .beneficio-card {
  flex: 0 1 calc(25% - 15px);
  min-width: 250px;
}

.condicoes-title+.beneficios-cards {
  gap: 20px;
}

@media (max-width: 1200px) {
  .condicoes-title+.beneficios-cards .beneficio-card {
    flex: 0 1 calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  .condicoes-title+.beneficios-cards .beneficio-card {
    flex: 0 1 calc(50% - 13px);
  }
}

@media (max-width: 580px) {
  .condicoes-title+.beneficios-cards .beneficio-card {
    flex: 1;
    width: 100%;
  }
}

/* Botão Saiba Mais */
.saiba-mais-btn {
  display: inline-block;
  background-color: #6a92c5;
  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: #6a92c5;
}

/* 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: row;
    gap: 25px;
    margin-top: 0;
    padding-top: 0;
    padding: 0 15px;
  }

  .beneficio-card {
    flex: 0 1 calc(50% - 13px);
    min-width: 250px;
    padding: 25px 20px;
  }

  .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;
  }
}

@media (max-width: 580px) {
  .beneficios-cards {
    flex-direction: column;
    padding: 0 15px;
  }

  .beneficio-card {
    flex: 1;
    width: 100%;
  }
}

/* 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: 150px;
  height: auto;
}

#logo-unica {
  max-width: 80px;
}

@media (max-width: 768px) {
  .associacoes-logos {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .sobre-mim-title {
    font-size: 30px;
  }


  .associacao-logo {
    max-width: 90px;
  }

  #logo-unica {
    max-width: 50px;
  }
}

/* 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: #6a92c5;
  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;
  }
}