/* Paleta de Cores:
    #523d72 - Roxo (Primária, Header, Títulos)
    #e0fe9c - Verde Lima (Destaques, Hovers)
    #f8f3f2 - Off-White (Background principal, Hero)
    #333 - Texto Secundário
*/


:root {
    --primary-color: #523d72;
    --accent-color: #e0fe9c;
    --background-color: #f8f3f2;
    --text-secondary: #333;
    --text-light: #f8f3f2;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}


html {
    scroll-behavior: smooth;
}


::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--background-color);
    font-size: 16px;
}

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


header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a2a5a 100%);
    color: var(--text-light);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-dark);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 6px 30px var(--shadow-dark);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    text-align: left;
}

.logo-area .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

header h2 {
    font-size: 0.85rem;
    font-weight: 400;
    margin: 0.2rem 0 0 0;
    color: rgba(248, 243, 242, 0.8);
    text-align: left;
    font-family: 'Open Sans', sans-serif;
}

#nav-menu ul {
    list-style: none;
    display: flex;
}

#nav-menu ul li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    display: block;
    transition: all 0.4s ease;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    position: relative;
}

#nav-menu ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

#nav-menu ul li a:hover {
    background-color: rgba(224, 254, 156, 0.15);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

#nav-menu ul li a:hover::before {
    width: 100%;
}

/* BOTÃO DE MENU HAMBÚRGUER (MOBILE) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(248, 243, 242, 0.1);
    transform: scale(1.1);
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--background-color) 0%, #fdf8f7 50%, var(--background-color) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 30% 50%, rgba(82, 61, 114, 0.05) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

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





.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-content h2 {
    font-family: 'Montserrat', serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px var(--shadow-light);
    position: relative;
    display: inline-block;
}

.hero-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}


.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a2a5a 100%);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px var(--shadow-dark);
    border-color: var(--primary-color);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(82, 61, 114, 0.3);
}




.content-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    position: relative;
}


#sobre {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a2a5a 100%);
    color: var(--text-light);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

#sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}


#sobre h3 {
    color: var(--accent-color);
    text-align: left;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-family: 'Montserrat', serif;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#sobre p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.sobre-mim-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.sobre-mim-texto {
    flex: 1; 
    min-width: 300px; 
}

.sobre-mim-imagem-cta {
    flex-shrink: 0; 
    text-align: center;
    display: flex; 
    flex-direction: column;
    align-items: center;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 4px solid var(--accent-color);
    box-shadow: 0 8px 25px var(--shadow-dark);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.profile-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 35px var(--shadow-dark);
}


.sobre-mim-imagem-cta .cta-button {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.4s ease;
    margin-top: 0;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(224, 254, 156, 0.3);
    position: relative;
    z-index: 2;
}

.sobre-mim-imagem-cta .cta-button:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(224, 254, 156, 0.4);
    border-color: var(--primary-color);
}


.scroll-indicator-sobre {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
    text-decoration: none;
    z-index: 1000;
    animation: subtle-float 3s infinite;
    padding: 0.75rem;
    border-radius: 50%;
    background: rgba(248, 243, 242, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 243, 242, 0.3);
    transition: all 0.4s ease;
    opacity: 0.8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroll-indicator-sobre:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: rgba(224, 254, 156, 0.3);
    color: var(--accent-color);
}



.content-section h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    position: relative;
}

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

.light-bg {
    background: linear-gradient(135deg, var(--background-color) 0%, #e8e2dd 100%);
}

.trabalho-section {
    background: var(--background-color);
    padding: 6rem 0;
}

.trabalho-intro {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    flex-wrap: wrap;
}

.trabalho-imagem {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.terapia-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px var(--shadow-medium);
    transition: all 0.4s ease;
}

.terapia-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px var(--shadow-dark);
}

.scroll-indicator-trabalho {
    margin-top: 2rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    background: rgba(82, 61, 114, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.trabalho-texto {
    flex: 1;
    min-width: 300px;
}

.trabalho-texto h3 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.trabalho-texto h3::after {
    display: none;
}

.trabalho-texto p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}


.trabalho-beneficios {
    margin-top: 4rem;
}

.trabalho-beneficios h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: left;
}

.trabalho-beneficios h3::after {
    display: none;
}

.beneficios-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.beneficio-card {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex: 0 1 350px;
    border: 2px solid transparent;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transition: height 0.4s ease;
}

.beneficio-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 254, 156, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-medium);
    border-color: var(--accent-color);
}

.beneficio-card:hover::after {
    opacity: 1;
}

.beneficio-card:hover::before {
    height: 100%;
}

.beneficio-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.beneficio-card:nth-child(1) .beneficio-icon {
    color: #6c5ce7;
}

.beneficio-card:nth-child(2) .beneficio-icon {
    color: #fdcb6e;
}

.beneficio-card:nth-child(3) .beneficio-icon {
    color: #e17055;
}

.beneficio-card:nth-child(4) .beneficio-icon {
    color: #00b894;
}

.beneficio-card:nth-child(5) .beneficio-icon {
    color: #0984e3;
}

.beneficio-card:hover .beneficio-icon {
    transform: scale(1.1) rotate(5deg);
}

.beneficio-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.beneficio-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}


.instagram-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.instagram-intro a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-intro a:hover {
    color: var(--accent-color);
}

.load-more-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c8e87d 100%);
    color: var(--primary-color);
    margin: 3rem auto 0;
    display: block;
    width: fit-content;
}

.load-more-button:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a2a5a 100%);
    color: var(--accent-color);
    transform: translateY(-3px) scale(1.05);
}

.load-more-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    min-height: 200px;
}

.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1;
    background: #000;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px var(--shadow-light);
    text-decoration: none;
    display: block;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(1);
    background: #000;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.instagram-post:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.video-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.video-indicator i {
    color: white;
    font-size: 1.5rem;
    margin-left: 4px;
}


.instagram-loading,
.instagram-error,
.instagram-setup-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(82, 61, 114, 0.05);
    border-radius: 15px;
    color: var(--text-secondary);
}

.instagram-loading i,
.instagram-error i,
.instagram-setup-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-color);
}

.instagram-setup-message h4 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
}

.instagram-error {
    background: rgba(231, 76, 60, 0.05);
}

.instagram-error i {
    color: #e74c3c;
}

.instagram-error small {
    display: block;
    margin-top: 0.5rem;
    color: #999;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}


@media (max-width: 768px) {
    .instagram-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .instagram-loading,
    .instagram-error,
    .instagram-setup-message {
        padding: 2rem 1rem;
    }
    
    .instagram-setup-message h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .instagram-loading i,
    .instagram-error i,
    .instagram-setup-message i {
        font-size: 2.5rem;
    }
    
    .video-indicator {
        width: 50px;
        height: 50px;
    }
    
    .video-indicator i {
        font-size: 1.2rem;
    }
}


footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a1f4a 100%);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at bottom, rgba(224, 254, 156, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-footer 4s ease-in-out infinite;
}

@keyframes glow-footer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer-content {
    display: flex;
    justify-content: space-around;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(224, 254, 156, 0.2);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info h4, .social-links h4 {
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.contact-info p:hover {
    transform: translateX(5px);
    color: var(--accent-color);
}

.contact-info i {
    margin-right: 1rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.contact-info p:hover i {
    transform: scale(1.2) rotate(10deg);
}

.social-links {
    text-align: center;
}

.social-links a {
    color: var(--text-light);
    font-size: 2rem;
    margin: 0 0.75rem;
    transition: all 0.4s ease;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: rgba(224, 254, 156, 0.1);
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-color);
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-5px) rotate(5deg);
}

.social-links a:hover::before {
    transform: scale(1);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(248, 243, 242, 0.7);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.signature {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(248, 243, 242, 0.5);
    margin-top: 1rem;
}


.crisis-warning {
    background: rgba(224, 254, 156, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.crisis-warning p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.crisis-warning strong {
    color: var(--accent-color);
    font-weight: 600;
}

.crisis-warning a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.crisis-warning a:hover {
    color: var(--text-light);
    text-decoration: none;
}


.privacy-link-footer {
    text-align: center;
    margin: 1.5rem 0 1rem;
    position: relative;
    z-index: 1;
}

.privacy-link-footer a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

.privacy-link-footer a:hover {
    color: var(--text-light);
    background: rgba(224, 254, 156, 0.1);
    transform: translateY(-2px);
}


.privacy-section {
    min-height: 100vh;
    padding: 6rem 0 4rem;
    background: var(--background-color);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.privacy-content h1 {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.privacy-content h2 {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.privacy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-content p.intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(82, 61, 114, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.privacy-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.privacy-content ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.privacy-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.privacy-content ul li strong {
    color: var(--primary-color);
}

.effective-date {
    margin-top: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a2a5a 100%);
    border-radius: 10px;
    text-align: center;
}

.effective-date p {
    color: var(--accent-color);
    margin: 0;
    font-size: 1rem;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
}

.back-link .cta-button {
    margin-top: 0;
}

.back-link .cta-button i {
    margin-right: 0.5rem;
}


@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 1.5rem;
    }
    
    .privacy-content h1 {
        font-size: 2.2rem;
    }
    
    .privacy-content h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content p.intro {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 4rem 0 3rem;
    }
    
    .privacy-content {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .privacy-content h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }
    
    .privacy-content p {
        font-size: 0.95rem;
    }
    
    .privacy-content ul li {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 1.5rem;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .service-grid, .publications-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    
    header .container {
        flex-wrap: nowrap;
    }
    
    .logo-area {
        text-align: left;
    }
    
    #nav-menu ul li a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-section { padding-bottom: 3rem; }
    .hero-content h2 { font-size: 2.2rem; }
    .hero-content .subtitle { text-align: center; font-size: 1rem; }
    .hero-content { text-align: center; padding: 0 1rem; }
    .cta-button { margin-top: 1.5rem; padding: 0.9rem 2rem; font-size: 1rem; }
    .scroll-indicator { display: none; }

    .content-section h3 { font-size: 2rem; margin-bottom: 2rem; }

    header { position: sticky; }
    .menu-toggle { display: block; }
    header .container { 
        flex-wrap: wrap; 
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-area { 
        width: auto;
        text-align: left;
        margin-bottom: 0;
        flex: 1;
    }
    
    .logo-area .logo {
        font-size: 1.5rem;
    }
    
    .logo-area h2 {
        font-size: 0.75rem;
    }

    #nav-menu {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease-out;
        width: 100%;
        order: 3;
        background: linear-gradient(135deg, var(--primary-color) 0%, #3a2a5a 100%);
        box-shadow: 0 4px 20px var(--shadow-dark);
        border-top: 1px solid rgba(224, 254, 156, 0.2);
    }

    #nav-menu.active { max-height: 400px; }
    #nav-menu ul { flex-direction: column; }

    #nav-menu ul li a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(248, 243, 242, 0.1);
        text-align: center;
        font-size: 1rem;
    }
    
    #nav-menu ul li:last-child a {
        border-bottom: none;
    }

    .hero-section { padding: 5rem 0; }
    .service-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .publications-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .contact-info, .social-links { flex: 1 1 auto; }
    
    .crisis-warning {
        padding: 1.2rem 1.5rem;
        margin: 1.5rem auto;
    }
    
    .crisis-warning p {
        font-size: 0.9rem;
    }

    
    .sobre-mim-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    #sobre h3 {
        text-align: center;
        font-size: 2.2rem;
    }
    #sobre p {
        max-width: 100%;
        font-size: 1.1rem;
    }
    .profile-image {
        width: 220px;
        height: 220px;
    }
    .scroll-indicator-sobre {
        display: none;
    }

    
    .trabalho-intro {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .trabalho-texto h3 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .trabalho-texto p {
        font-size: 1rem;
        text-align: center;
    }
    
    .terapia-image {
        max-width: 100%;
    }
    
    .trabalho-beneficios h3 {
        font-size: 2rem;
        text-align: center;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .beneficios-grid .beneficio-card:nth-child(4),
    .beneficios-grid .beneficio-card:nth-child(5) {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }

    .hero-content h2 { font-size: 1.9rem; }
    .hero-content .subtitle { font-size: 0.9rem; }
    .cta-button { padding: 0.8rem 1.8rem; font-size: 0.95rem; }

    .content-section h3 { font-size: 1.8rem; margin-bottom: 1.5rem; }

    .service-card { padding: 2rem; }
    .publication-card { padding: 1.2rem; }
    
    .logo-area .logo {
        font-size: 1.3rem;
    }
    
    .logo-area h2 {
        font-size: 0.7rem;
    }
    
    .crisis-warning {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .crisis-warning p {
        font-size: 0.85rem;
    }

    
    #sobre h3 {
        font-size: 1.9rem;
    }
    #sobre p {
        font-size: 1rem;
    }
    .profile-image {
        width: 200px;
        height: 200px;
    }
    .sobre-mim-imagem-cta .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .trabalho-texto h3 {
        font-size: 2rem;
    }
    
    .trabalho-beneficios h3 {
        font-size: 1.8rem;
    }
    
    .beneficio-card {
        padding: 2rem;
    }
    
    .scroll-indicator-trabalho {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .footer-content { padding-bottom: 2rem; }
    .social-links a { font-size: 1.5rem; margin-right: 1rem; }
}
