/* Base Styles & Reset */
:root {
    --primary-color: #e6bda1;
    --primary-dark: #d4a689;
    --secondary-color: #2e7d32;
    --secondary-light: #4caf50;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --bg-light: #f9f7f5;
    --bg-white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --whatsapp-color: #25D366;
    --whatsapp-dark: #1ea952;
    --chat-bg: #e5ddd5;
    --chat-bubble: #ffffff;
    --chat-time: #8c8c8c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section and Content Styles */
section {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-weight: 500;
}

.cta-center {
    text-align: center;
}

/* Button Styles */

.btn-spaced {
    margin-top: 30px; /* Aumenta o espaçamento acima do botão */
}

/* Ajuste específico para o botão da seção online-therapy */
.online-therapy-section .btn-spaced {
    margin-top: 40px; /* Espaçamento ainda maior para esta seção */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn i {
    margin-right: 8px;
    font-size: 18px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(230, 189, 161, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 189, 161, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.logo span {
    font-size: 12px;
    color: #a9a9a9;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #d8a582;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 90vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f4f0 0%, #ffffff 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="%23e6bda1" opacity="0.1"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.hero-section .container {
    margin-top: 30px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Modificações para a imagem hero */
.hero-image {
    position: relative;
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image img {
    width: 85%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease;
    margin: 0 auto;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(85% + 30px);
    height: calc(100% + 30px);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    opacity: 0.6;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 5%;
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f5d5c0 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -2;
    opacity: 0.4;
    animation: morphShape 8s ease-in-out infinite alternate;
}

.hero-content {
    order: 1;
    max-width: 540px;
}

.main-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
}

.main-title span {
    color: var(--primary-color);
    position: relative;
}

.main-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(230, 189, 161, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

/* Evidence Section Styles */
.evidence-section {
    background-color: var(--bg-white);
    position: relative;
}

.evidence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23e6bda1" opacity="0.05"/></svg>');
    opacity: 0.5;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.evidence-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.evidence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    padding: 3px;
}

.card-content h3 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 20px;
}

.card-content p {
    text-align: center;
    color: var(--text-medium);
    font-size: 15px;
}

.additional-conditions {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.additional-conditions h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 22px;
}

.conditions-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.conditions-list {
    list-style: none;
}

.conditions-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-medium);
}

.conditions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Animated Image Styles */
.animated-image {
    position: relative;
    overflow: visible;
    z-index: 1;
}

.animated-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-image img {
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.animated-image .image-decoration {
    position: absolute;
    border-radius: var(--border-radius);
    z-index: 1;
}

/* About Section Styles */
.about-section {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Ajustado para reduzir o tamanho da coluna da imagem */
    gap: 40px;
    align-items: center;
}

.about-image {
    max-width: 80%; /* Limita a largura da imagem */
    margin: 0 auto;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, var(--primary-color), var(--primary-color) 5px, transparent 5px, transparent 15px);
    border-radius: var(--border-radius);
    top: -15px;
    left: -15px;
    opacity: 0.2;
    animation: patternMove 20s linear infinite;
}

.about-image .image-decoration {
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    animation: borderPulse 3s ease-in-out infinite;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-text {
    padding: 20px;
}

/* Online Therapy Section Styles */
.online-therapy-section {
    background-color: var(--bg-white);
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px 20px;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 18px;
}

.step-card p {
    color: var(--text-medium);
    font-size: 14px;
}

/* Individual Therapy & Why Therapy Section Styles */
.individual-therapy-section,
.why-therapy-section {
    background-color: var(--bg-light);
}

.therapy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.therapy-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.therapy-image::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: var(--border-radius);
    top: 5%;
    left: 5%;
    animation: floatBackground 6s ease-in-out infinite;
}

.therapy-image::after {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    z-index: -1;
}

.therapy-image .image-decoration {
    width: 70%;
    height: 70%;
    top: 10%;
    left: 10%;
    border: 2px dashed var(--primary-color);
    opacity: 0.5;
    animation: rotate 20s linear infinite;
}

.therapy-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.therapy-image img {
    width: 70%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.therapy-image:hover img {
    transform: rotate(-2deg) scale(1.02);
}

.therapy-text {
    padding: 20px;
}

.therapy-text p {
    margin-bottom: 15px;
    color: var(--text-medium);
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--bg-white);
}

.accordion {
    margin-top: 40px;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--bg-white);
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.accordion-header:hover,
.accordion-header.active {
    background-color: var(--bg-light);
    border-left-color: var(--primary-color);
}

.accordion-header i {
    font-size: 14px;
    transition: var(--transition);
    color: var(--primary-color);
}

.accordion-header.active i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-white);
}

.accordion-content.active {
    max-height: 500px;
}

.accordion-content p {
    padding: 20px;
    color: var(--text-medium);
}

/* Contact Section Styles */
.contact-section {
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Ajustado para reduzir o tamanho da imagem */
    gap: 40px;
    align-items: center;
}

.contact-image {
    max-width: 80%; /* Limita a largura da imagem */
    margin: 0 auto;
}

.contact-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
    top: -15px;
    left: -15px;
    z-index: -1;
    animation: rotateFrame 15s linear infinite;
}

.contact-image::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: -2;
    animation: pulseGlow 5s ease-in-out infinite;
}

.contact-image .image-decoration {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 2px dotted var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: spinSlow 15s linear infinite;
}

.contact-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-image:hover img {
    transform: translateY(-5px);
    filter: brightness(1.05);
}

.contact-info {
    padding: 20px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-item a,
.contact-item span {
    color: var(--text-medium);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.whatsapp-icon {
    color: #25D366;
    margin-left: 10px;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.footer-logo span {
    font-size: 14px;
    color: #ccc;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 18px;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

/* WhatsApp Button and Chat Styles */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-button:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.1);
}

.whatsapp-button i {
    font-size: 30px;
}

.whatsapp-button-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp-color);
    z-index: -1;
    animation: pulse 2s infinite;
}

.whatsapp-chat {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 320px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 998;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-chat.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.whatsapp-chat-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--whatsapp-color);
    color: white;
    position: relative;
}

.whatsapp-chat-avatar {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.whatsapp-chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.whatsapp-chat-info {
    flex: 1;
}

.whatsapp-chat-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-chat-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.status {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-top: 3px;
}

.status.online:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 5px;
}

.whatsapp-chat-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-chat-close:hover {
    transform: rotate(90deg);
}

.whatsapp-chat-body {
    height: 250px;
    padding: 15px;
    background-color: var(--chat-bg);
    overflow-y: auto;
}

.whatsapp-chat-message {
    margin-bottom: 15px;
}

.whatsapp-chat-bubble {
    max-width: 80%;
    padding: 10px 15px;
    background-color: var(--chat-bubble);
    border-radius: 0 10px 10px 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: fadeIn 0.3s forwards;
}

.whatsapp-chat-bubble p {
    margin: 0;
    color: var(--text-dark);
    font-size: 14px;
}

.whatsapp-chat-time {
    display: block;
    font-size: 10px;
    color: var(--chat-time);
    text-align: right;
    margin-top: 5px;
}

.whatsapp-chat-footer {
    padding: 15px;
    border-top: 1px solid #f0f0f0;
}

.whatsapp-start-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background-color: var(--whatsapp-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-start-chat:hover {
    background-color: var(--whatsapp-dark);
}

.whatsapp-start-chat i {
    margin-right: 10px;
    font-size: 18px;
}

/* Ocultar o botão do WhatsApp quando o chat estiver ativo */
.whatsapp-chat.active + .whatsapp-button {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderPulse {
    0% { border-color: var(--primary-color); }
    50% { border-color: var(--secondary-color); }
    100% { border-color: var(--primary-color); }
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

@keyframes floatBackground {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes rotateFrame {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
    
    /* Hero Section Responsive */
    .hero-image img {
        width: 100%;
    }

    .hero-image::before {
        left: -15px;
        transform: none;
        width: calc(100% + 30px);
    }

    .hero-image::after {
        bottom: -30px;
        right: -20px;
    }
    
    .therapy-image img {
        width: 100%;
    }

    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .hero-content {
        order: 2;
        margin: 0 auto;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    /* Ajuste para as seções about, therapy e contact no responsive */
    .about-content,
    .therapy-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .contact-image {
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .therapy-content.reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    
    /* Maintain animations for mobile */
    .animated-image::before,
    .animated-image::after,
    .animated-image .image-decoration {
        display: block;
    }
    
    .therapy-image {
        margin: 0 auto 30px;
        max-width: 400px;
    }

    .whatsapp-chat {
        width: 280px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .header .container {
        height: 70px;
    }
    
    .nav-menu {
        position: relative;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Section Responsive */
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .evidence-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    /* Enhanced mobile animations */
    .animated-image {
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }
    
    .animated-image:hover {
        transform: scale(1);
    }
    
    .animated-image img {
        transform: translateY(0);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
    
    .animated-image:hover img {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .whatsapp-chat {
        width: calc(100% - 50px);
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    /* Hero Section Responsive */
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .evidence-card,
    .step-card {
        padding: 15px;
    }
    
    .accordion-header {
        padding: 15px;
        font-size: 15px;
    }
    
    .accordion-content p {
        padding: 15px;
        font-size: 14px;
    }
    
    /* Special animation for very small screens */
    .animated-image::before {
        width: 100%;
        height: 100%;
        top: -10px;
        left: -10px;
    }
    
    .animated-image .image-decoration {
        width: 90%;
        height: 90%;
        top: 5%;
        left: 5%;
    }

    /* Ajustes de posicionamento e tamanho do chat para mobile */
    .whatsapp-chat {
        bottom: 20px; /* Mesma posição do botão, para ocupar seu lugar */
        width: calc(100% - 30px);
        right: 15px;
        max-width: 300px; /* Diminuindo a largura máxima */
        max-height: 85vh; /* Limitando a altura máxima */
    }

    .whatsapp-chat-body {
        height: 200px; /* Diminuindo a altura do corpo do chat */
    }

    .whatsapp-chat-header {
        padding: 10px; /* Diminuindo o padding */
    }

    .whatsapp-chat-avatar {
        width: 35px; /* Diminuindo o tamanho do avatar */
        height: 35px;
    }

    .whatsapp-chat-info h4 {
        font-size: 14px; /* Diminuindo o tamanho da fonte */
    }

    .whatsapp-chat-info p {
        font-size: 10px;
    }

    .whatsapp-chat-footer {
        padding: 10px;
    }

    .whatsapp-start-chat {
        padding: 10px;
        font-size: 14px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button i {
        font-size: 25px;
    }
}

/* Estilos para as barras CTA dentro da seção FAQ */
.faq-cta-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-cta-item {
    display: flex;
    align-items: center;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-cta-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-cta-item.primary {
    background-color: rgba(230, 189, 161, 0.1);
    border-left: 4px solid var(--primary-color);
}

.faq-cta-item.secondary {
    background-color: rgba(46, 125, 50, 0.05);
    border-left: 4px solid var(--secondary-color);
}

.faq-cta-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-cta-item.primary .faq-cta-icon {
    color: var(--primary-color);
    background-color: rgba(230, 189, 161, 0.15);
}

.faq-cta-item.secondary .faq-cta-icon {
    color: var(--secondary-color);
    background-color: rgba(46, 125, 50, 0.1);
}

.faq-cta-content {
    flex: 1;
}

.faq-cta-content h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--text-dark);
}

/* Responsividade para CTAs */
@media (max-width: 768px) {
    .faq-cta-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .faq-cta-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .faq-cta-item {
        padding: 15px;
    }
    
    .faq-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .faq-cta-content h3 {
        font-size: 1.1rem;
    }
    
    .faq-cta-content .btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Garantindo que o botão de WhatsApp seja sempre visível */
.whatsapp-button {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    z-index: 9999 !important;
}

/* Correção para o overflow */
body, html {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Garantia de exibição correta */
section, div, header, footer, nav {
    box-sizing: border-box;
}