:root {
    --white: #ffffff;
    --gold: #AE8625;
    --light-gold: #d4b15c;
    --dark-gold: #8a6c1e;
    --light-gray: #f9f9f9;
    --medium-gray: #e8e8e8;
    --dark-gray: #333333;
    --text-gray: #555555;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Melhorado */
header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 150px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.online-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(174, 134, 37, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.online-dot {
    width: 12px;
    height: 12px;
    background-color: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 16px;
    padding: 5px 0;
}

nav ul li a:hover {
    color: var(--gold);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    margin-right: 20px;
    cursor: pointer;
    color: var(--dark-gray);
    background: none;
    border: none;
}

/* Hero Section Impactante */
.hero {
    padding: 180px 0 120px;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(249, 249, 249, 0.9)),
        url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(174, 134, 37, 0.05);
    top: -150px;
    left: -150px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(174, 134, 37, 0.05);
    bottom: -100px;
    right: -100px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 60px;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark-gray);
    position: relative;
}

.hero-title span {
    color: var(--gold);
    display: block;
    position: relative;
    overflow: hidden;
}

.hero-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    animation: underline 1.5s ease forwards 1s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--text-gray);
    max-width: 90%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1s;
}

.highlight {
    color: var(--gold);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1.2s;
}

.btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--gold);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 10px rgba(174, 134, 37, 0.2);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(174, 134, 37, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--white);
}

.btn i {
    margin-left: 8px;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(5px);
}

.hero-image {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease forwards 0.5s;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 10px;
    top: 20px;
    right: 20px;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    height: 70vh;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite 1s;
}

.hero-image:hover img {
    transform: translateY(-5px);
}

/* Interactive Bot */
.chat-bot {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
    overflow: hidden;
    opacity: 0;
    transform: scale(0);
    animation: fadeInScale 0.5s ease forwards 2s, pulse 2s infinite 2.5s;
}

.chat-bot:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.chat-bot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.chat-bot::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background-color: #2ecc71;
    border-radius: 50%;
    border: 2px solid white;
    animation: ping 1.5s infinite;
}

/* Chat Modal */
.chat-modal {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 500px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    flex-direction: column;
}

.chat-header {
    background: var(--gradient);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.chat-header-info {
    flex: 1;
}

.chat-header-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.chat-header-info p {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-indicator-small {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-close {
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
}

.chat-close:hover {
    transform: rotate(90deg);
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    animation: messageAppear 0.3s ease forwards;
}

.bot-message {
    background-color: var(--light-gray);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background: var(--gradient);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.option-btn {
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 20px;
    padding: 10px 15px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-btn:hover {
    background-color: var(--light-gray);
    border-color: var(--gold);
    transform: translateX(5px);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
    opacity: 0;
    transform: scale(0);
    animation: fadeInScale 0.5s ease forwards 2.2s, pulse 2s infinite 2.7s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* Seção Equipe Multidisciplinar */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Cards 3D */
.team-card {
    perspective: 1000px;
    height: 400px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.team-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(174, 134, 37, 0.1);
}

.card-front {
    background: var(--white);
    color: var(--dark-gray);
}

.card-back {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: white;
    transform: rotateY(180deg);
    overflow: hidden;
}

/* Frente do Card */
.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.team-card:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
}

.card-front h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-gray);
}

.card-front p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-know-more {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(174, 134, 37, 0.3);
}

.btn-know-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(174, 134, 37, 0.4);
}

/* Verso do Card */
.professional-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.professional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.professional-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.specialty {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.btn-schedule {
    background: white;
    color: var(--gold);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center; /* ✅ centraliza o texto horizontalmente */
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Botão de voltar */
.btn-back {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .team-card {
        height: 380px;
    }
    
    .card-front,
    .card-back {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        height: 350px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-front h3 {
        font-size: 1.3rem;
    }
}


/* Seção de Serviços */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(174, 134, 37, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.service-link:hover {
    color: var(--dark-gold);
    border-bottom-color: var(--gold);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underline {
    from {
        transform: scaleX(0);
        transform-origin: right;
    }
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(174, 134, 37, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(174, 134, 37, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(174, 134, 37, 0);
    }
}

@keyframes ping {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nova Seção - Transtornos do Neurodesenvolvimento */
.disorders-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.disorders-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(174, 134, 37, 0.03);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.disorders-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(174, 134, 37, 0.03);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.2rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.disorders-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.disorders-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateX(-50px) rotate(-2deg);
    position: relative;
    height: 650px;
}

.disorders-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    mix-blend-mode: overlay;
}

.disorders-image:hover::before {
    opacity: 0.1;
}

.disorders-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.95) contrast(1.1);
}

.disorders-image:hover img {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1) contrast(1.2);
}

.disorders-accordion {
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    transform: translateX(50px);
}

.accordion-item {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.accordion-item.active::before {
    transform: scaleX(1);
}

.accordion-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.accordion-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    transition: left 0.4s ease;
}

.accordion-header:hover::before {
    left: 0;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.accordion-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(174, 134, 37, 0.3);
}

.accordion-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    top: 0;
    left: -100%;
    transition: left 0.6s ease;
}

.accordion-icon:hover::before {
    left: 100%;
}

.accordion-icon.pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

.accordion-icon.shake {
    animation: iconShake 3s ease-in-out infinite;
}

.accordion-icon.float {
    animation: iconFloat 4s ease-in-out infinite;
}

.accordion-item.active .accordion-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--dark-gold);
}

.accordion-text {
    flex: 1;
}

.accordion-text h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accordion-text p {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
}

.accordion-toggle {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(174, 134, 37, 0.3);
}

.accordion-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(174, 134, 37, 0.4);
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg) scale(1.1);
    background: var(--dark-gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.accordion-item.active .accordion-content {
    max-height: 1200px;
}

.disorder-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
    padding: 0 30px;
}

.symptoms-list, .treatment-info {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.symptoms-list:hover, .treatment-info:hover {
    transform: translateY(-5px);
}

.symptoms-list h4, .treatment-info h4 {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.symptoms-list h4 i, .treatment-info h4 i {
    color: var(--gold);
    font-size: 1.1rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.symptoms-list ul {
    list-style: none;
}

.symptoms-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.symptoms-list li:hover {
    transform: translateX(8px);
    border-bottom-color: var(--gold);
}

.symptoms-list li:last-child {
    border-bottom: none;
}

.symptoms-list li i {
    color: var(--gold);
    font-size: 1rem;
    animation: iconWiggle 3s ease-in-out infinite;
}

.treatment-info p {
    margin-bottom: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.disorder-image {
    border-radius: 16px;
    overflow: hidden;
    margin: 25px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.disorder-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.disorder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    mix-blend-mode: overlay;
}

.disorder-image:hover::before {
    opacity: 0.1;
}

.disorder-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.95) contrast(1.1);
}

.disorder-image:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.disorder-cta {
    text-align: center;
    margin: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Botões Melhorados */
.btn {
    display: inline-flex;
    align-items: center;
    background: var(--gradient);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 
        0 8px 20px rgba(174, 134, 37, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 25px rgba(174, 134, 37, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px) scale(1.1);
}

/* Animações Aprimoradas */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(174, 134, 37, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 25px rgba(174, 134, 37, 0.4);
    }
}

@keyframes iconShake {
    0%, 100% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes iconWiggle {
    0%, 100% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-10deg);
    }
}

/* Classes de animação para scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    transform: translateX(-50px) rotate(-2deg);
}

.animate-right {
    transform: translateX(50px);
}

.animate-left.animated, .animate-right.animated {
    transform: translateX(0) rotate(0);
}

/* Testimonials Section */
.testimonials02 {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.section-title02 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 35px;
    position: relative;
    font-weight: 700;
    color: var(--text-gray);
}

.highlight22{
    color:var(--light-gold);
    font-size: 48px;
}

.section-title02::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background-color: rgba(223, 209, 131, 0.13);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.testimonials-container02 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Testimonial Cards */
.testimonial-track02 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 400px;
}

.testimonial-card02 {
    position: absolute;
    width:45%;
    height:auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

/* Card positions */
.testimonial-card02.prev02 {
    transform: translateX(-80%) scale(0.85);
    filter: blur(5px);
    opacity: 0.7;
    z-index: 1;
}

.testimonial-card02.active02 {
    transform: translateX(0) scale(1);
    filter: blur(0);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 15px 40px rgba(174, 134, 37, 0.3);
}

.testimonial-card02.next02 {
    transform: translateX(80%) scale(0.85);
    filter: blur(5px);
    opacity: 0.7;
    z-index: 1;
}

.testimonial-card02.hidden02 {
    transform: translateX(-120%) scale(0.7);
    filter: blur(8px);
    opacity: 0;
    z-index: 0;
}

.testimonial-card02.far-next02 {
    transform: translateX(120%) scale(0.7);
    filter: blur(8px);
    opacity: 0;
    z-index: 0;
}

/* Card content - ONLY IMAGE */
.testimonial-image02 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Controls */
.testimonial-controls02 {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.control-btn02 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
}

.control-btn02:hover {
    background: var(--gold);
    color: var(--dark-gray);
    transform: scale(1.1);
}

/* Indicators */
.testimonial-indicators02 {
    display: none;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.indicator02 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator02.active02 {
    background: var(--gold);
    transform: scale(1.2);
}

/* Footer */
.footer02 {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    padding: 60px 0 0;
    border-top: 3px solid var(--gold);
}

.footer-content02 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info02 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo02 img {
    width: 180px;
    filter: brightness(0) invert(1);
}

.footer-contact02 h3,
.footer-hours02 h3 {
    color: var(--light-gray);
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-item02 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--light-gray);
}

.contact-item02 i {
    color: var(--gold);
    font-size: 18px;
    width: 30px;
    margin-right: 15px;
}

.contact-item02 a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item02 a:hover {
    color: var(--gold);
}

.hours-list02 {
    list-style: none;
    color: var(--gold);
}

.hours-list02 li {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.hours-list02 .day02 {
    font-weight: 500;
}

.hours-list02 .time02 {
    color: var(--gold);
}

.footer-map02 {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 300px;
}

.footer-map02 iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.footer-bottom02 {
    background: rgba(0, 0, 0, 0.5);
    margin-top: 50px;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright02 {
    color: var(--text-gray);
    font-size: 14px;
}

.developer-link02 {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.developer-link02:hover {
    color: var(--light-gold);
    text-decoration: underline;
}

.footer-social02 {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.social-link02 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-link02:hover {
    background: var(--gold);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        padding-right: 0;
        margin-top: 0;
        text-align: center;
        order: 2;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        max-width: 100%;
        font-size: 1rem;
    }

    .btn-group {
        justify-content: center;
    }

    .online-status {
        display: none;
    }

    .hero-image {
        order: 1;
    }

    .disorders-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .disorders-image {
        height: 450px;
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.6rem;
    }

    .disorder-details {
        grid-template-columns: 1fr;
    }

    .accordion-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .footer-content02 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-map02 {
        height: 250px;
    }

    .testimonial-card02 {
        width: 50%;
        height: auto;
    }
    
    .testimonial-card02.prev02 {
        transform: translateX(-70%) scale(0.85);
    }
    
    .testimonial-card02.next02 {
        transform: translateX(70%) scale(0.85);
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .logo{
        margin-left: 20px;
    }
    
    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 12px 0;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .chat-modal {
        width: 90%;
        right: 5%;
        height: 70vh;
        bottom: 100px;
    }

    .chat-bot, .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .chat-bot {
        bottom: 100px;
        right: 20px;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }

    .disorders-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .accordion-header {
        padding: 25px;
    }

    .accordion-text h3 {
        font-size: 1.3rem;
    }

    .symptoms-list, .treatment-info {
        padding: 25px;
    }

    .disorder-details {
        padding: 0 25px;
    }

    .disorder-image {
        margin: 20px 25px;
    }

    .footer02 {
        padding: 40px 0 0;
    }
    
    .footer-content02 {
        gap: 30px;
    }
    
    .footer-info02 {
        gap: 25px;
    }
    
    .footer-logo02 img {
        width: 150px;
    }
    
    .footer-contact02 h3,
    .footer-hours02 h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-map02 {
        height: 200px;
    }

    .testimonials02 {
        padding: 40px 0;
    }
    
    .section-title02 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .testimonials-container02 {
        height: 450px;
    }
    
    .testimonial-track02 {
        height: 350px;
    }
    
    .testimonial-card02 {
        width: 50%;
        height:auto;
    }
    
    .testimonial-card02.prev02 {
        transform: translateX(-60%) scale(0.8);
    }
    
    .testimonial-card02.next02 {
        transform: translateX(60%) scale(0.8);
    }
    
    .control-btn02 {
        margin-top: -80px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .btn-group {
        flex-direction: column;
    }

    .chat-modal {
        height: 80vh;
    }

    .chat-bot, .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .chat-bot {
        bottom: 90px;
        right: 15px;
    }

    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .accordion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }

    .accordion-title {
        width: 100%;
    }

    .accordion-toggle {
        align-self: flex-end;
    }

    .accordion-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .footer02 {
        padding: 30px 0 0;
    }
    
    .footer-content02 {
        padding: 0 15px;
    }
    
    .footer-logo02 img {
        width: 130px;
    }
    
    .contact-item02 {
        font-size: 14px;
    }
    
    .contact-item02 i {
        font-size: 16px;
        width: 25px;
    }
    
    .footer-bottom02 {
        padding: 20px 0;
    }
    
    .footer-copyright02 {
        font-size: 13px;
    }
    
    .social-link02 {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .testimonials02 {
        padding: 40px 0;
    }
    
    .section-title02 {
        font-size: 20px;
        margin-bottom: -40px;
    }
    
    .testimonials-container02 {
        height: 400px;
    }
    
    .testimonial-track02 {
        height: 300px;
    }
    
    .highlight22{
        font-size: 28px;
    }
    
    .testimonial-card02 {
        width: 90%;
        height:auto;
    }
    
    .testimonial-card02.prev02 {
        transform: translateX(-50%) scale(0.75);
    }
    
    .testimonial-card02.next02 {
        transform: translateX(50%) scale(0.75);
    }
    
    .control-btn02 {
        margin-top: -80px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}