/* Estilos Gerais */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f9fafd !important;
    color: #000000 !important;
    color-scheme: light !important;
}


/* HEADER */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1b3d64;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Navbar */
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

/* LOGO */
.logo{
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 150px;
}

.logo img {
    height: 100%;
    width: 100%;
    display: block;
}

.nome{
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-family: Arial, sans-serif;
    white-space: nowrap;
}

/* LINKS */
.nav-list{
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    text-decoration: none;
    color: white;
    font-size: 17px;
    transition: color 0.2s;
}

.nav-list a:hover {
    text-decoration: underline;
}

/* TELEFONE + BOTÃO */
.nav-actions{
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    background: linear-gradient(35deg, #ff9800);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
    margin-left: 20px;
}

.btn:hover {
  opacity: 0.9;
}

/* Hamburger */
.hamburguer{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.hamburguer span {
    display: block;
    height: 3px;
    width: 30px;
    background-color: #ffffff; /* Cor branca para ser visível no header */
    border-radius: 2px;
    transition: 0.3s;
    transform-origin: center;
}

.hamburguer.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburguer.active span:nth-child(2) {
    opacity: 0;
}

.hamburguer.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Seção Hero */
.hero{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 50px 50px 50px;
    gap: 50px;
    flex-wrap: wrap;
    background-color: #f9fafd;
}

.hero-text{
    flex: 1;
    min-width: 300px;
}

.hero h1{
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero h1 span{
    color: #193759;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-btn button {
  padding: 12px 25px;
  margin-right: 15px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary{
    background: linear-gradient(90deg, #193759, #0e758a);
    color: white;
    
}

.btn-primary:hover {
  opacity: 0.8;
}

.btn-secondary{
    background: linear-gradient(90deg, #193759, #0e758a);
    color: white;
    font-size: 16px;
}

.btn-secondary:hover{
    opacity: 0.8;
}

.hero-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

.icon-item img {
    height: auto;
}

.icone-calendario { width: 40px; }
.icone-shield { width: 35px; }
.icone-certificado { width: 45px; }
.icone-relogio { width: 30px; }

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Seção Sobre a Clínica */
.about-clinic {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h2 {
    font-size: 2.5rem;
    color: #193759;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 60px;
}

.about-image-side {
    flex: 1;
    min-width: 300px;
}

.about-image-side img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 300px;
}

.about-text-item h3 {
    font-size: 1.5rem;
    color: #193759;
    margin-bottom: 10px;
}

.about-text-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    gap: 120px;
}

.stat-item {
    text-align: center;
    color: #193759;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #888;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    background-color: #e6f3ff;
    border: 1px solid #cce5ff;
}

.feature-icon-circle img {
    width: 40px;
    height: auto;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #193759;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
}

/* Seção de Serviços */
.services {
    padding: 80px 20px;
    background-color: #f9fafd;
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #193759;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #193759;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}


/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-card {
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.30);
    max-width: 800px;
    width: 100%;
}


.cta-card h2 {
    font-size: 2rem;
    color: #193759;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(90deg, #193759, #00031a);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


/* Team Section */
.team {
    padding: 80px 20px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 2.5rem;
    color: #193759;
}

.team-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.team-grid.single-member {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.team-member-card {
    text-align: center;
    max-width: 300px;
}

.team-member-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #e6f3ff;
}

.team-member-info h3 {
    font-size: 1.5rem;
    color: #193759;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-feature-card {
    text-align: center;
    padding: 20px;
}

.team-feature-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    background-color: #e6f3ff;
}

.team-feature-icon-circle img {
    width: 35px;
    height: 35px;
}

.team-feature-card h4 {
    font-size: 1.2rem;
    color: #193759;
    margin-bottom: 10px;
}

.team-feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background-color: #f9fafd;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    color: #193759;
}

.gallery-header .highlight {
    color: #0e758a;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}


/* Partnerships Section */
.partnerships {
    padding: 80px 5%;
    background-color: #fff; 
    text-align: center;
}

.partnerships-header {
    margin-bottom: 60px;
}

.partnerships-header h2 {
    font-size: 2.5rem; 
    color: #333; 
    margin-bottom: 15px;
}

.partnerships-header .highlight {
    color: #0e758a;
}

.partnerships-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.partnerships-content h3 {
    font-size: 1.8rem;
    color: #444;
    margin-top: 50px; 
    margin-bottom: 30px;
    text-align: center;
}

.partnerships-content h3:first-of-type {
    margin-top: 0; 
}

.partnerships-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px; 
}


.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #f8f9fa; 
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 200px;
}

.partner-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.partner-item img {
    max-width: 150px; 
    height: auto;
    
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%); /* Remove o filtro no hover para dar cor */
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #f9fafd;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #193759;
}

.contact-header .highlight {
    color: #0e758a;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content-wrapper {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e6f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle img {
    width: 25px;
    height: 25px;
}

.info-item h4 {
    font-size: 1.2rem;
    color: #193759;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-form-card {
    flex: 1.5;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    color: #193759;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.form-group-duo {
    display: flex;
    gap: 20px;
}

.form-group-duo .form-group {
    width: 50%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #193759, #0e758a);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.submit-btn img {
    width: 20px;
}


/* Footer */
.footer {
    background-color: #1a2339;
    color: #aeb8c9;
    font-family: Arial, sans-serif;
    padding: 60px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 20px;
}


.footer-logo-circle {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo-circle img{
  width: 250%;
  height: 250%;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.brand-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links a {
    margin-right: 15px;
}

.social-links img {
    width: 24px;
    transition: opacity 0.3s;
}


.footer-column h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info img {
    width: 20px;
    margin-top: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
}

.dev {
    color: #ff9800;
    text-decoration: none;
}

.bottom-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

/* --- RESPONSIVIDADE --- */
/* Adicionado apenas o necessário para ajustar o layout em telas menores */

/* Para Tablets e Telas Menores */
@media (max-width: 992px) {

    .nome{
        text-decoration: none;
        color: white;
        font-size: 13px;
        font-family: Arial, sans-serif;
        white-space: nowrap;
    }

    .logo img {
        height: 70%;
        width: 70%;
        display: block;
    }

    .nav-list {
        display: none; /* Esconde a lista de links original */
    }

    .hamburguer {
        display: flex; /* Mostra o ícone do hamburguer */
    }

    .nav-actions {
        display: none; /* Opcional: esconde o botão "Agendar" para simplificar */
    }

    /* Regras para o menu hamburguer quando ativo (via JavaScript) */
    .nav-list.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px; /* Altura do header */
        right: 0;
        width: 100%;
        background-color: #1b3d64;
        text-align: center;
        gap: 0;
    }
    .nav-list.active li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-list.active a {
        padding: 1rem;
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        
    }

    .hero-btn {
        display: flex;           
        justify-content: center; 
        gap: 20px;               
        border: 0;               
    }

    .about-content-wrapper {
        flex-direction: column;
        align-items: center;
        
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content-wrapper {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-container .footer-column:not(.brand-column) ul {
        padding: 0;
    }
    .brand-column, .contact-column, .footer-logo, .social-links, .contact-info {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
    }
}

/* Para Celulares */
@media (max-width: 767px) {
    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btn {
        display: flex;             
        flex-direction: column;    
        align-items: center;       
        gap: 20px;                 
    }
    .hero-btn a {
        width: 100%;
        max-width: 320px;
    }
    .hero-btn button {
        width: 100%;
    }

    .hero-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-container,
    .services-grid,
    .team-features {
        grid-template-columns: 1fr;
    }

    .form-group-duo {
        flex-direction: column;
        gap: 0;
    }
    .form-group-duo .form-group {
        width: 100%;
        margin-bottom: 20px;
    }
    .contact-form .form-group:last-child {
        margin-bottom: 0;
    }
}