/* Reseta estilos padrão */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Garante que a navbar fique acima de outros elementos */
    transition: top 0.3s ease;
}

.logo img {
    width: 100px;
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #0050d5;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: #16c5cf;
    border-bottom: 2px solid #16c5cf;
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
    color: #0050d5;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0050d5;
}

/* Impede o scroll quando o menu está aberto */
body.no-scroll {
    overflow: hidden;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        opacity: 1;
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #fff;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        transition: background 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}





/* Estilização da seção hero */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 100px;
    background-image: url('equipe.jpg'); /* Background dinâmico */
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.hero-content {
    max-width: 600px;
}

.hero-content h5 {
    color: #16c5cf;
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn.read-more {
    background-color: #16c5cf;
    color: #fff;
}

.btn.read-more:hover {
    background-color: #13a3b2;
}



.hero-buttons .btn.appointment {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #28a745;
    color: #fff;
}

.hero-buttons .btn.appointment:hover {
    background-color: #1e7e34;
}

.hero-buttons .btn i {
    font-size: 18px;
}



.hero-image img {
    width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-image img {
        width: 300px;
    }
}


/* Animações */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h5 {
    animation: slideIn 1s ease-in-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-content h1 {
    animation: slideIn 1s ease-in-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-content p {
    animation: slideIn 1s ease-in-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-buttons {
    animation: slideIn 1s ease-in-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}




/*---------------------------------*/


/* Seção "Sobre Nós" */
.sobre-nos {
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.texto {
    flex: 1;
    padding: 20px;
}

.texto h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    align-content: center;
}

.texto p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.imagem {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.imagem img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .imagem img {
        max-width: 100%;
    }
}









/*---------------------------------
---------------------------------*/


/* Estilo do Serviço */

/* Serviços */
.servicos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  background-color: #f5faff;
}

.servico {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.servico .icone img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.servico h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.servico .descricao {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.servico .btn {
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.servico .btn:hover {
  background-color: #0056b3;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  padding: 20px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.5s ease-in-out;
}

.modal-content h3 {
  margin-bottom: 15px;
  color: #333;
}

.modal-content p {
  margin-bottom: 20px;
  color: #555;
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #555;
  transition: color 0.3s ease;
}

.modal-content .close:hover {
  color: #333;
}

.modal-content .btn.close-modal {
  padding: 10px 20px;
  background: #ff5555;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-content .btn.close-modal:hover {
  background: #d13333;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .servico {
    width: 100%;
  }

  .modal-content {
    width: 95%;
  }
}




/* Introdução de Serviços */
.servicos-intro {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #eef7ff; /* Cor de fundo suave */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.servicos-intro h2 {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.servicos-intro p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}










/*  carrocel */

/* Estilização da seção do carrossel */
.team-carousel {
    padding: 50px 20px;
    background: linear-gradient(135deg, #e0f7fa, #a7ffeb); /* Fundo degradê suave */
    text-align: center;
}

.team-carousel h2 {
    font-size: 2rem;
    color: #00796b; /* Verde escuro suave */
    margin-bottom: 30px;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    background-color: #ffffff; /* Branco puro para contraste */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    min-width: 300px;
    flex: 0 0 300px;
}

.carousel-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.carousel-item h3 {
    font-size: 1.2rem;
    color: #00796b; /* Verde escuro suave */
    margin-bottom: 5px;
}

.carousel-item p {
    font-size: 1rem;
    color: #555555; /* Cinza médio */
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #a7ffeb; /* Verde escuro suave */
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: #004d40; /* Verde ainda mais escuro */
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel-item {
        min-width: 250px;
    }
}





.map-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f0f8ff; /* Tom leve que combina com saúde */
    color: #0050d5; /* Azul profissional */
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #16c5cf;
}

.map-section p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #333;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .map-section h2 {
        font-size: 1.8rem;
    }

    .map-section p {
        font-size: 0.9rem;
    }

    .map-container iframe {
        height: 300px;
    }
}








/* Estilo da seção de horários */
.schedule-section {
    padding: 50px 20px;
    background-color: #e0f7fa; /* Cor suave associada à saúde */
    color: #004d40;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Título da seção */
.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #00796b;
    animation: fadeIn 1.5s ease-in-out;
}

/* Contêiner dos cartões */
.schedule-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Estilo dos cartões */
.schedule-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex: 1 1 300px; /* Responsividade */
    max-width: 400px;
    animation: slideUp 1.2s ease-out;
    position: relative;
    overflow: hidden;
}

/* Animação de brilho */
.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shine 3s linear infinite;
    pointer-events: none;
}

/* Título do cartão */
.schedule-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #004d40;
    text-align: left;
}

/* Parágrafos dentro dos cartões */
.schedule-card p {
    font-size: 16px;
    margin: 10px 0;
    text-align: left;
}

/* Lista dentro do cartão */
.schedule-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.schedule-card ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shine {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .schedule-cards {
        flex-direction: column;
        gap: 15px;
    }

    .schedule-card {
        margin: 0 auto;
    }
}



/* Estilo do Footer */
.footer {
    background-color: #004d40; /* Cor associada à saúde */
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-container > div {
    flex: 1 1 200px;
}

/* Sobre Nós */
.footer-about p {
    font-size: 14px;
    line-height: 1.6;
}

/* Links Rápidos */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin: 10px 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #16c5cf; /* Cor de destaque */
}

/* Contato */
.footer-contact p {
    margin: 10px 0;
    font-size: 14px;
}

/* Redes Sociais */
.footer-socials .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-socials .social-icons a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
}

.footer-socials .social-icons a:hover {
    color: #16c5cf;
    transform: scale(1.1);
}

/* Rodapé */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-container > div {
        text-align: center;
    }
}



.contatos {
  background-color: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
}

.contatos h2 {
  color: #2c3e50;
  font-size: 2em;
  margin-bottom: 10px;
}

.contatos p {
  color: #7f8c8d;
  margin-bottom: 30px;
}

.contato-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.info-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 300px;
}

.info-item i {
  font-size: 1.5em;
  color: #3498db;
  margin-bottom: 10px;
}

.redes-sociais {
  margin-top: 30px;
}

.redes-sociais h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.redes-sociais a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  color: #3498db;
  font-size: 1.2em;
  transition: color 0.3s;
}

.redes-sociais a:hover {
  color: #1abc9c;
}










/* Container do alerta */
.alert-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.alert-container.active {
    opacity: 1;
    pointer-events: auto;
}

/* Estilo do alerta */
.alert {
    text-align: center;
    background: linear-gradient(135deg, #16c5cf, #004d40);
    color: #fff;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: scaleIn 0.8s ease-out forwards, glow 2s infinite alternate;
}

/* Títulos do alerta */
.alert h1 {
    font-size: 24px;
    margin: 10px 0;
    line-height: 1.5;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out forwards;
}

/* Botão de fechar */
.alert button {
    margin-top: 20px;
    padding: 12px 30px;
    background: #ffd700;
    color: #004d40;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.alert button:hover {
    background: #e6c200;
    transform: scale(1.1);
}

/* Animações */
@keyframes scaleIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(22, 197, 207, 0.6);
    }
    100% {
        box-shadow: 0 0 30px rgba(22, 197, 207, 1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .alert {
        padding: 30px 20px;
    }

    .alert h1 {
        font-size: 20px;
    }

    .alert button {
        font-size: 14px;
        padding: 10px 20px;
    }
}







/* Reseta estilos padrão AGENDAMENTO */


.agendamento {
  text-align: left;
  max-width: 600px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.texto h2 {
  font-size: 2rem;
  color: #004d40;
  margin-bottom: 10px;
}

.texto h2 span {
  color: #00c853;
}

.texto p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #666;
}

.botoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s ease;
}

.btn i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.btn.whatsapp {
  background-color: #00c853;
}

.btn.whatsapp:hover {
  background-color: #00a73d;
}

.btn.central {
  background-color: #536dfe;
}

.btn.central:hover {
  background-color: #3a4ebe;
}
