/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Variáveis CSS para cores */
:root {
    --primary-color: rgb(159, 88, 45);
    --secondary-color: rgb(210, 180, 156);
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

/* Header */
.header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 80px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: url('/static/images/terapia.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    width: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    z-index: 2;
    object-fit: cover;
}

.hero-text {
    order: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-text .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    text-align: center;
    font-weight: 600;
}

.hero-text .hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    text-align: justify;
    font-weight: 500;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.hero-text .hero-call {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    text-align: center;
    font-weight: 600;
    font-style: italic;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: rgb(159, 88, 45);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: fit-content;
    margin: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.whatsapp-button {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: fit-content;
    margin: 0;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.whatsapp-button i {
    margin-right: 0.5rem;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(210, 180, 156, 0.3), transparent);
}

/* Divisor decorativo para seções alternadas */
.section:nth-child(even):not(:last-child)::before {
    content: '◆';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-color);
    font-size: 1.2rem;
    background: var(--white);
    padding: 0 1rem;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text {
    order: 2;
}
.about-image {
    text-align: center;
    order: 1;
}

.psicologa-about-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(210, 180, 156, 0.1), rgba(210, 180, 156, 0.2));
    border-radius: 20px;
    padding: 2rem;
    overflow: visible;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.psicologa-about-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 180, 156, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.psicologa-about-photo {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    filter: brightness(1.05) contrast(1.05);
    box-shadow: 0 15px 35px rgba(159, 88, 45, 0.2);
    object-fit: contain;
    display: block;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* TCC Section */
.tcc-section {
    background: #f8f9fa;
}

.tcc-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tcc-content .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: justify;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.tcc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tcc-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tcc-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(159, 88, 45, 0.2);
}

.tcc-feature h4 {
    color: rgb(159, 88, 45);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tcc-feature p {
    color: #666;
    line-height: 1.6;
    text-align: justify;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.tcc-benefits {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(159, 88, 45, 0.05), rgba(210, 180, 156, 0.05));
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.tcc-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(159, 88, 45, 0.03), transparent);
    z-index: 1;
}

.tcc-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.tcc-benefits h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.benefits-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 500;
}

.tcc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.tcc-benefit-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(159, 88, 45, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tcc-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tcc-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(159, 88, 45, 0.2);
    border-color: var(--secondary-color);
}

.tcc-benefit-card:hover::before {
    transform: scaleX(1);
}

.tcc-benefit-card i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.tcc-benefit-card:hover i {
    color: var(--secondary-color);
}

.tcc-benefit-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.tcc-benefit-card p {
    color: #555;
    font-weight: 400;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.6;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

/* Contact Section - Novo Estilo */
.contact-new {
    background: var(--light-bg);
    position: relative;
    overflow: visible;
}

/* Garantir visibilidade de todos os elementos */
.contact-new * {
    position: relative;
    z-index: 10;
}

.contact-new .container {
    position: relative;
    z-index: 100;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(159, 88, 45, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(159, 88, 45, 0.15);
    border-color: var(--secondary-color);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-card-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: center;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-align: center;
    display: block;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(159, 88, 45, 0.1);
    border: 1px solid rgba(159, 88, 45, 0.1);
    position: relative;
    z-index: 10;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-form-modern {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(159, 88, 45, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.5);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(159, 88, 45, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn-modern {
    background: var(--primary-color);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(159, 88, 45, 0.3);
}

.submit-btn-modern:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(159, 88, 45, 0.4);
}

.contact-info-bar {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: white;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.info-item i {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
}

/* Location Section */
.location {
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.location-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.address-details {
    margin-bottom: 2rem;
}

.address-details p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.address-details i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.location-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-container {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

/* FAQ Section */
.faq {
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-align: justify;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo-section {
    text-align: center;
}

.footer-logo {
    width: 240px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.footer-adress{
    justify-content: center;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.footer-contact p,
.footer-address p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-contact p{
    justify-content: center;
}

.footer-contact i,
.footer-address i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    transition: color 0.3s ease;
    justify-content: center;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.social-links i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background: var(--primary-color);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--white);
    text-align: center;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* WhatsApp Modal */
.whatsapp-modal {
    position: fixed;
    bottom: 90px;
    right: 100px;
    width: 280px;
    max-width: 90vw;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-modal.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-modal-header {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-modal-header h3 {
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-modal-body {
    padding: 1rem;
}

.whatsapp-modal-body p {
    margin: 0 0 1rem 0;
    color: #666;
    font-size: 0.9rem;
    text-align: left;
}

.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.whatsapp-form input {
    padding: 0.7rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: border-color 0.3s ease;
}

.whatsapp-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.whatsapp-form input::placeholder {
    color: #999;
}

.whatsapp-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.whatsapp-submit:hover {
    background: var(--secondary-color);
}

.whatsapp-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .whatsapp-modal {
        width: 260px;
        max-width: 85vw;
        right: 80px;
        bottom: 20px;
        left: auto;
    }
    
    .whatsapp-modal-body {
        padding: 0.8rem;
    }
    
    .whatsapp-modal-header {
        padding: 0.6rem 0.8rem;
    }
    
    .whatsapp-modal-header h3 {
        font-size: 0.9rem;
    }
    
    .whatsapp-form {
        gap: 0.6rem;
    }
    
    .whatsapp-form input {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .whatsapp-submit {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 10px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 10px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 1.5rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}



/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 0.5rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        height: auto;
        align-items: stretch;
        max-height: 50vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        text-align: center;
    }
    
    .nav-menu a {
        padding: 0.8rem 1rem;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        height: auto;
        font-size: 0.95rem;
    }
    
    .header {
        position: fixed;
    }
    
    .nav-container {
        position: relative;
    }
    
    .hero {
        background-attachment: scroll;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        word-spacing: normal;
        hyphens: none;
        word-break: normal;
    }
    
    .hero-text .hero-subtitle,
    .hero-text .hero-description,
    .hero-text .hero-call {
        word-spacing: normal;
        line-height: 1.6;
        hyphens: none;
        word-break: normal;
        overflow-wrap: normal;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image img {
        max-height: 350px;
    }
    
    .about-content,
    .contact-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .psicologa-about-container {
        max-width: 350px;
        width: 100%;
        padding: 1.5rem;
        margin: 0 auto;
    }
    
    .psicologa-about-photo {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .about-text {
        order: 2;
        text-align: center;
    }
    
    .about-text p {
        text-align: justify !important;
        word-spacing: normal;
        line-height: 1.8;
        padding: 0 1rem;
        hyphens: none;
        word-break: normal;
        overflow-wrap: normal;
    }
    
    .about-image img {
        max-width: 300px;
        max-height: 400px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tcc-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tcc-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    /* Evitar quebras indesejadas em mobile */
    .tcc-benefit-card h4,
    .location-info h3,
    .faq-question h3,
    .contact-card-content h4 {
        word-spacing: normal;
        line-height: 1.4;
        hyphens: none;
        word-break: normal;
        overflow-wrap: normal;
    }
        
    /* Centralizar botões de localização em mobile */
    .location-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        order: 3;
    }
    
    .location-content {
        display: flex;
        flex-direction: column;
    }
    
    .location-info {
        order: 1;
    }
    
    .map-container {
        order: 2;
    }
    
    /* Centralizar conteúdo do footer em mobile */
    .footer-content {
        text-align: center !important;
    }
    
    .footer-section {
        text-align: center !important;
    }
    
    .footer-section p,
    .footer-section ul,
    .footer-section ul li {
        text-align: center !important;
    }
    
    /* Melhorar formatação de textos em mobile */
    .container {
        padding: 0 1.5rem !important;
    }
    
    /* FAQ específico para mobile */
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
        max-height: 600px;
    }
    
    .faq-answer p {
        padding: 0.5rem 0;
        line-height: 1.7 !important;
        word-spacing: normal !important;
        hyphens: none !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        text-align: justify !important;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Ajustar títulos para mobile */
    .about-text h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        padding: 0 1rem !important;
        text-align: center !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }
    
    .tcc-text h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem !important;
        text-align: center !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        padding: 0 1rem !important;
        text-align: center !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }
    
    /* Ajustar textos da seção About */
    .about-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        padding: 0 1.5rem !important;
        margin-bottom: 1.5rem !important;
        text-align: justify !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }
    
    .tcc-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        padding: 0 1.5rem !important;
        margin-bottom: 1.5rem !important;
        text-align: justify !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }
    
    /* Ajustar container para mobile */
    .about-content {
        padding: 0 !important;
    }
    
    .tcc-content {
        padding: 0 !important;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seções */
section {
    padding: 5rem 0;
    position: relative;
}

/* Divisores entre seções - Fininho e 100% width */
.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(159, 88, 45), rgb(210, 180, 156), rgb(159, 88, 45), transparent);
    margin: 0;
    border: none;
    position: relative;
}

/* Títulos centralizados */
h1, h2, h3, .section-header h2, .hero-text h1 {
    text-align: center;
}

/* Listas e elementos específicos também justificados */
.contact-details li,
.location-details .detail-item,
.footer-section p {
    text-align: justify;
}



/* About Section */
.about-section {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(159, 88, 45, 0.3);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(159, 88, 45, 0.1), rgba(210, 180, 156, 0.1));
    animation: float 6s ease-in-out infinite reverse;
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(159, 88, 45, 0.05), transparent);
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgb(159, 88, 45);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-align: justify;
}

/* Services Section */
.services-section {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: rgb(159, 88, 45);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(159, 88, 45, 0.2);
    border-color: rgb(210, 180, 156);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgb(159, 88, 45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgb(159, 88, 45);
}

.service-card p {
    color: #666;
    line-height: 1.6;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-align: justify;
}

/* TCC Section */
.tcc-section {
    background: #f8f9fa;
}

.tcc-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tcc-text h2 {
    font-size: 2.5rem;
    color: rgb(159, 88, 45);
    margin-bottom: 2rem;
}

.tcc-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Location Section */
.location-section {
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info h3 {
    font-size: 1.8rem;
    color: rgb(159, 88, 45);
    margin-bottom: 1rem;
}

.location-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.location-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #666;
}

.detail-item i {
    color: rgb(159, 88, 45);
    margin-right: 1rem;
    width: 20px;
}

.maps-link {
    display: inline-flex;
    align-items: center;
    background: rgb(159, 88, 45);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.maps-link:hover {
    background: rgb(140, 70, 35);
    transform: translateY(-2px);
}

.maps-link i {
    margin-right: 0.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Instagram Section */
.instagram-section {
    background: #f8f9fa;
}

.instagram-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.instagram-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Bloqueio específico de widgets promocionais do Instagram */
.eapps-widget-toolbar,
.eapps-widget-toolbar-panel,
.eapps-widget-edit-button,
.eapps-widget-share-button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Esconde links para elfsight.com */
a[href*="elfsight.com"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Esconde elementos com classes específicas do Elfsight */
[class*="eapps-widget-toolbar"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: rgb(159, 88, 45);
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}
.faq-answer.active {
    display: block;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: rgb(159, 88, 45);
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}

.contact-details i {
    color: rgb(159, 88, 45);
    margin-right: 1rem;
    width: 20px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgb(159, 88, 45);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(159, 88, 45);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: rgb(159, 88, 45);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: rgb(140, 70, 35);
    transform: translateY(-2px);
}
/* Botões flutuantes */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
}

.back-to-top {
    background: rgb(159, 88, 45);
    cursor: pointer;
}

.back-to-top:hover {
    background: rgb(140, 70, 35);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content,
    .about-content,
    .contact-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        justify-content: center;
        align-items: center;
    }
    
    .hero-image img {
        max-width: 100%;
        max-height: 350px;
        transform: none;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .whatsapp-button {
        display: block;
        margin: 1rem 0 0 0;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    
    .back-to-top {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
}