* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 40px;
    font-size: 14px;
}

.header-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-info a {
    color: #333;
}

.social-header {
    display: flex;
    gap: 10px;
}

.social-header a {
    width: 30px;
    height: 30px;
    background: #16CCC3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

header {
    background: #16CCC3;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    transition: all .3s;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-subtitle {
    font-size: 8px;
    color: #fff;
    letter-spacing: 2px;
    text-align: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-logo {
    display: none;
}

nav a {
    color: #fff;
    font-weight: 500;
    transition: opacity .3s;
}

nav a:hover {
    opacity: .8;
}

.btn-contato {
    background: #fff;
    color: #16CCC3;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform .3s;
}

.btn-contato:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: .3s;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.dropdown-item {
    position: relative;
}

.dropdown-vertical {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #12a096;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 8px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown-vertical li {
    display: block;
    margin: 0;
}

.dropdown-vertical li a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 0.95rem;
}

.dropdown-vertical li a:hover {
    background-color: #f5f5f5;
    color: #000;
}

.dropdown-vertical.ativo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#seta {
    transition: transform 0.3s;
    font-size: 0.8em;
    margin-left: 5px;
}

#seta.girar {
    transform: rotate(180deg);
}

nav ul li.dropdown {
    position: relative;
}

.hero {
    background: linear-gradient(rgba(22, 204, 195, .85), rgba(22, 204, 195, .85)), url('imagem capa.jpg');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

/* --- ESTILOS DOS BOTÕES (HERO E PRIMARY) --- */
.btn-primary,
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #f8f9fa;
    border: 3px solid #16CCC3;
    color: #000;
    padding: 12px 30px;
    font-weight: 800;
    font-size: 18px;
    border-radius: 0; /* Retangular */
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Estilo do quadrado da seta */
.btn-primary i,
.btn-hero i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 2px solid #000;
    border-radius: 6px;
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Efeito Hover */
.btn-primary:hover,
.btn-hero:hover {
    background-color: #16CCC3;
    color: #fff;
    transform: scale(1.05);
}

.btn-primary:hover i,
.btn-hero:hover i {
    border-color: #fff;
    color: #fff;
}
/* --- FIM DOS ESTILOS DOS BOTÕES --- */

.experience-section {
    background: #fff;
    padding: 0px 0;
    text-align: center;
}

.experience-section h2 {
    font-size: 42px;
    color: #000;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
}

.about-section {
    padding: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
    align-items: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.decorative-arrow {
    position: absolute;
    right: 2%;
    top: -50px;
    z-index: 1;
    transform: scale(1);
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 4px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #00a896;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
    z-index: 5;
}

/* --- SEÇÃO DE ESTATÍSTICAS (STATS) --- */
.stats-section {
    background-color: #f8f9fa; /* Fundo cinza claro */
    padding: 40px 0; /* Espaço maior para separar dos depoimentos */
    width: 100%;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    /* Margin-top removido, pois o padding da section cuida disso */
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #16CCC3;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #c2185b;
    font-weight: 500;
}
/* --- FIM SEÇÃO DE ESTATÍSTICAS --- */

.testimonials-section {
    background: #16CCC3;
    padding: 100px 0;
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #000;
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info p {
    color: #888;
    font-size: 14px;
}

.solutions-section {
    padding: 100px 0;
    background: #fff;
}

.accordion {
    max-width: 800px;
    margin: 20px auto;
    font-family: sans-serif;
}

.accordion-item {
    background-color: #e0e0e0;
    color: #333;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-top: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.accordion-item.active {
    background-color: #00a896;
    color: white;
}

.accordion-content {
    display: none;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #eee;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
}

.accordion-content li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.accordion-content li::before {
    content: "•";
    color: #b05a7e;
    position: absolute;
    left: 0;
}

.accordion-content a {
    text-decoration: none;
    color: #b05a7e;
}

.contact-btn {
    text-align: center;
    margin-top: 50px;
}

.differentials-section {
    padding: 100px 0;
    background: linear-gradient(rgba(22, 204, 195, .85), rgba(22, 204, 195, .85)), url("WhatsApp Image 2026-01-07 at 16.40.18 (1).jpeg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.differentials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.differentials-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

.differentials-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

.differentials-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.differentials-list {
    list-style: none;
}

.differentials-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
}

.differentials-list li:before {
    content: "✓";
    background: #fff;
    color: #16CCC3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.clinic-section {
    padding: 100px 0;
    background: #fff;
}

.clinic-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.clinic-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    transition: transform .3s;
}

.clinic-gallery img:hover {
    transform: scale(1.05);
}

.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    gap: 60px;
    margin-top: 60px;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

.team-image {
    height: 100%;
    min-height: 500px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-member:nth-child(odd) .team-info {
    background: #16CCC3;
    color: #fff;
}

.team-member:nth-child(even) .team-info {
    background: #fff;
    color: #2d3748;
}

.team-member:nth-child(even) {
    direction: rtl;
}

.team-member:nth-child(even) .team-info {
    direction: ltr;
}

.team-info h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-info .crmv {
    font-style: italic;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

.team-info p {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.transformation-section {
    padding: 100px 0;
    background: #fff;
}

.transformation-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.transformation-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2d3748;
    line-height: 1.3;
}

.transformation-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.transformation-list {
    list-style: none;
    margin-bottom: 40px;
}

.transformation-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #2d3748;
}

.transformation-list li:before {
    content: "✓";
    background: #16CCC3;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.transformation-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
}

.success-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.success-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.success-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    background: #000;
    aspect-ratio: 9/16;
}

.success-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-accordion {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: #e9ecef;
    color: #2d3748;
    padding: 25px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    transition: all .3s;
}

.faq-item.active .faq-question {
    background: #16CCC3;
    color: #fff;
}

.faq-answer {
    background: #fff;
    padding: 30px 35px;
    display: none;
    border: 1px solid #e9ecef;
    border-top: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2d3748;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
}

.contact-item i {
    color: #c2185b;
    font-size: 20px;
    width: 25px;
}

.contact-map {
    width: 100%;
    display: flex;             /* Ativa o Flexbox para alinhar */
    justify-content: center;   /* Centraliza horizontalmente */
    align-items: center;       /* Centraliza verticalmente se houver altura definida */
}

.contact-map iframe {
    width: 100%;               /* O mapa ocupará 100% da largura do contêiner pai */
    max-width: 800px;          /* Limite máximo de largura (opcional, para não distorcer em telas ultrawide) */
    height: 450px;             /* Altura fixa para Desktop */
    border-radius: 15px;       /* Mantém o estilo arredondado */
    box-shadow: 0 5px 20px rgba(0,0,0,.1); /* Sombra para destaque */
}

.footer {
    background: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo-section {
    text-align: center;
}

.footer-logo-section img {
    height: 32px;
    width: auto;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 8px;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #16CCC3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform .3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2d3748;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #555;
    transition: color .3s;
}

.footer-column a:hover {
    color: #16CCC3;
}

.footer-address h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2d3748;
    font-weight: 600;
}

.footer-address p {
    color: #555;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
    color: #888;
    font-size: 14px;
}

.dropdown-pure {
    position: relative;
    list-style: none;
}

.dropdown-pure summary {
    cursor: pointer;
    list-style: none;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    transition: color 0.3s;
}

.dropdown-pure summary:hover {
    color: rgba(255, 255, 255, 0.8);
}

.dropdown-pure summary::-webkit-details-marker {
    display: none;
}

.dropdown-pure .dropdown-list {
    background-color: rgba(22, 204, 195, 0.95);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 1000;
}

.dropdown-pure .dropdown-list li {
    width: 100%;
    margin: 0;
}

.dropdown-pure .dropdown-list a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-pure .dropdown-list a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown-pure details[open] summary i {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

@keyframes menuFadeInDownDesktop {
    from {
        opacity: 0;
        transform: translateY(-20px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes menuFadeInDownMobile {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding-top: 40px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .center-icon,
    .decorative-arrow {
        display: none;
    }
    .about-grid>div:nth-child(4) {
        order: 1;
    }
    .about-grid>div:nth-child(2) {
        order: 2;
    }
    .about-grid>div:nth-child(5) {
        order: 3;
    }
    .about-grid>div:nth-child(6) {
        order: 4;
    }
    .header-top {
        flex-direction: column;
        gap: 15px;
        padding: 10px 20px;
    }
    .header-info {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }
    .header-content {
        padding: 0 20px;
    }
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #16CCC3;
        transition: left .3s;
        padding: 30px 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
        z-index: 1001;
        overflow-y: auto;
    }
    .nav-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
        padding-top: 20px;
    }
    .nav-logo img {
        height: 40px;
        width: auto;
        filter: brightness(0) invert(1);
        margin-bottom: 10px;
    }
    .nav-logo-subtitle {
        font-size: 9px;
        color: #fff;
        letter-spacing: 2px;
        text-align: center;
    }
    nav.active {
        left: 0;
    }
    nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    nav a {
        font-size: 18px;
    }
    .btn-contato {
        display: none;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
    }
    .about-grid,
    .differentials-content,
    .transformation-content,
    .contact-content,
    .team-member {
        grid-template-columns: 1fr;
    }
    .team-member:nth-child(even) {
        direction: ltr;
    }
    
    /* Alteração Responsiva para Stats */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .stats-section {
        padding: 60px 0;
    }
    /* Fim Alteração Responsiva */

    .testimonials-grid,
    .clinic-gallery,
    .success-gallery {
        grid-template-columns: 1fr;
    }
    .accordion-content ul {
        columns: 1;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .dropdown-pure .dropdown-list {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.1);
        margin-top: 5px;
        border-radius: 4px;
    }
    .dropdown-pure .dropdown-list a {
        padding-left: 40px;
        border-bottom: none;
    }
    .dropdown-pure details[open] .dropdown-list {
        animation: menuFadeInDownMobile 0.3s ease-out forwards;
    }
    .contact-map iframe {
        height: 300px;
    }
}

@media (min-width: 769px) {
    .dropdown-pure .dropdown-list {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 15px;
    }
    .dropdown-pure details[open] .dropdown-list {
        animation: menuFadeInDownDesktop 0.3s ease-out forwards;
    }
    .dropdown-pure .dropdown-list::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 0 8px 8px 8px;
        border-style: solid;
        border-color: transparent transparent rgba(22, 204, 195, 0.95) transparent;
    }
    .experience-section .section-title {
    margin-top: 60px;
    margin-bottom: 60px;

}

}