
:root {
    --primary: #8D6D82;
    --secondary: #A8A39D;
    --accent: #A2AA9D;
    --light: #F2E7E1;
    --white: #FFFFFF;
    --dark-text: #8D6D82;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.8;
    overflow-x: hidden;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes floating {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible,
.animate-zoom-in.visible {
    opacity: 1;
    transform: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--primary);
}

h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 25px; text-align: center; }
h3 { font-size: 1.5rem; margin-bottom: 10px; font-weight: 600; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 20px;
    color: var(--dark-text);
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::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.7s ease;
    z-index: -1;
}

.btn:hover {
    background-color: #7a5f71;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:hover::before {
    left: 100%;
}

/*Header Principal */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.desktop-nav a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a:hover {
    color: var(--primary);
}

/* Menu Mobile */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: rotate(90deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav .nav-link {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--primary);
    text-decoration: none;
    margin: 10px 0;
    padding: 5px 0;
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-nav .nav-link:hover {
    transform: translateX(10px);
    color: var(--secondary);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    color: var(--secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: var(--primary);
    border-color: var(--primary);
}

/*  Botão do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    animation: pulse 2s infinite, floating 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    animation: none;
}

.key-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 C30 10, 15 30, 15 50 C15 70, 30 90, 50 90 C70 90, 85 70, 85 50 C85 30, 70 10, 50 10 Z M50 30 C60 30, 65 40, 65 50 C65 60, 60 70, 50 70 C40 70, 35 60, 35 50 C35 40, 40 30, 50 30 Z" fill="%238D6D82" opacity="0.2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.key-decoration.top-right {
    top: -50px;
    right: -50px;
}

.key-decoration.bottom-left {
    bottom: -30px;
    left: -60px;
    transform: rotate(180deg);
}


/* Início */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image-transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/luziana-0.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: blur(5px);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-circle-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--white);
    position: relative;
}

.hero-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 { 
    text-align: left; 
    font-size: 3.5rem;
}

.hero p { 
    font-size: 1.2rem; 
    margin-bottom: 30px; 
    text-align: left; 
}

/* Minha Jornada */
.about-journey { 
    background-color: var(--white); 
    position: relative;
}

.about-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%238D6D82" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    z-index: -1;
}

.journey-content { 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    position: relative; 
}

.journey-content::before { 
    content: ''; 
    position: absolute; 
    left: -80px; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 8px; 
    height: 70%; 
    background-color: var(--light); 
    border-radius: 5px; 
}

.journey-image { 
    flex-basis: 40%; 
}

.journey-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journey-text { 
    flex-basis: 60%; 
    position: relative; 
    text-align: justify;
}

.journey-text h2, .professional-text-box h2 { 
    text-align: left; 
}

/* Como Psicóloga */
.about-professional { 
    background-color: var(--primary); 
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FFFFFF" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    z-index: 0;
}

.professional-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    gap: 0; 
    position: relative;
    z-index: 1;
}

.professional-text-box {
    grid-column: 1 / 8; 
    grid-row: 1; 
    background-color: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    z-index: 2; 
}

.professional-text-box h2 { 
    color: var(--white); 
}

.professional-text-box p { 
    color: #e0e0e0; 
    text-align: justify;
}

.professional-text-box .btn { 
    background-color: var(--primary); 
    color: var(--white); 
    margin-top: 15px; 
    border: 1px solid var(--primary);
}

.professional-text-box .btn:hover {
    background-color: transparent;
    border: 1px solid var(--white);
}

.professional-image {
    grid-column: 7 / -1; 
    grid-row: 1;
    position: relative;
    z-index: 1;
}

.professional-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Atendimento  */
.services-content { 
    display: flex; 
    align-items: center; 
    gap: 60px; 
}

.services-image { 
    flex: 1; 
}

.services-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-text { 
    flex: 1; 
    text-align: justify;
}

.services-text h3 { 
    text-align: left; 
    font-size: 2rem; 
}

.services-text h4 { 
    font-family: var(--font-body); 
    font-size: 1.5rem; 
    color: var(--dark-text); 
    font-weight: 600; 
    margin-bottom: 20px; 
}

/* Como Funciona*/
.diferenciais { 
    background-color: var(--dark-text);
    position: relative;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FFFFFF" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    z-index: 0;
}

.diferenciais h2 { 
    color: var(--white); 
    margin-bottom: 50px; 
    position: relative;
    z-index: 1;
}

.diferenciais-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 50px; 
    position: relative;
    z-index: 1;
}

.diferencial-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 25px; 
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.diferencial-icon { 
    flex-shrink: 0; 
    width: 65px; 
    height: 65px; 
    background-color: var(--secondary);
    color: var(--white); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.8rem; 
    transition: all 0.3s ease;
}

.diferencial-item:hover .diferencial-icon {
    transform: scale(1.1) rotate(10deg);
}

.diferencial-text h3 { 
    color: var(--white); 
    text-align: left;
}

.diferencial-text p { 
    color: #ccc; 
    margin-bottom: 0; 
    font-size: 0.95rem; 
}

/* Depoimentos */
.testimonials { 
    background-color: var(--light); 
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%238D6D82" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    z-index: 0;
}

.testimonials-header { 
    text-align: center; 
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.testimonials h2, .testimonials-header p { 
    color: var(--primary); 
    text-align: center;
}

.carousel-container { 
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.carousel-track { 
    display: flex; 
    transition: transform 0.5s ease-in-out; 
    margin: 0 -10px;
}

.testimonial-card { 
    min-width: calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    margin: 0 10px;
    background-color: var(--white);
    border: 1px solid #eee;
    padding: 30px; 
    border-radius: 10px; 
    display: flex; 
    flex-direction: column; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-author { 
    display: flex; 
    align-items: center; 
    margin-bottom: 15px; 
}

.testimonial-author i { 
    font-size: 2.5rem; 
    color: var(--secondary); 
    margin-right: 15px; 
}

.testimonial-author h4 { 
    color: var(--primary); 
}

.testimonial-text { 
    color: #5f5f5f; 
    font-style: italic; 
    margin-bottom: auto; 
    transition: max-height 0.5s ease-in-out; 
}

.testimonial-text.collapsed { 
    max-height: 150px; 
    overflow: hidden; 
    position: relative; 
}

.testimonial-text.collapsed::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    height: 50px; 
    background: linear-gradient(to top, var(--white), transparent);
}

.expand-btn { 
    background-color: transparent; 
    color: var(--primary); 
    border: 1px solid var(--primary);
    padding: 8px 15px; 
    border-radius: 5px; 
    cursor: pointer; 
    font-weight: 600; 
    margin-top: 20px; 
    align-self: center; 
    transition: all 0.3s;
}

.expand-btn:hover { 
    background-color: var(--primary);
    color: var(--white);
}

.carousel-navigation { 
    margin-top: 30px; 
    text-align: center; 
    position: relative;
    z-index: 1;
}

.carousel-navigation .carousel-btn { 
    background: var(--white);
    border: 1px solid var(--light);
    color: var(--primary);
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    font-size: 1rem; 
    cursor: pointer; 
    transition: all 0.3s; 
    margin: 0 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-navigation .carousel-btn:hover { 
    background-color: var(--primary); 
    color: var(--white); 
    transform: scale(1.1);
}

/*Dúvidas Frequentes */
.faq { 
    background-color: var(--white); 
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%238D6D82" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    z-index: 0;
}

.faq-accordion { 
    max-width: 800px; 
    margin: 40px auto 0 auto; 
    position: relative;
    z-index: 1;
}

details { 
    margin-bottom: 15px; 
    border: 1px solid var(--light); 
    border-radius: 10px; 
    background: var(--white); 
    transition: all 0.3s ease;
    overflow: hidden;
}

details:hover {
    border-color: var(--primary);
}

details[open] { 
    background-color: #fdfaf9; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

summary { 
    padding: 20px; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 1.1rem; 
    list-style: none; 
    position: relative; 
    text-align: left; 
    transition: all 0.3s ease;
}

summary:hover {
    color: var(--primary);
}

summary::-webkit-details-marker { 
    display: none; 
}

summary::after { 
    content: '+'; 
    position: absolute; 
    right: 20px; 
    top: 50%; 
    transform: translateY(-50%); 
    font-size: 1.5rem; 
    font-weight: 400; 
    color: var(--primary); 
    transition: transform 0.3s; 
}

details[open] summary::after { 
    transform: translateY(-50%) rotate(45deg); 
}

details[open] summary { 
    color: var(--primary); 
}

details > p { 
    padding: 0 20px 20px 20px; 
    text-align: left; 
}

/*Contato */
.contact { 
    background-color: var(--light); 
    text-align: center; 
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%238D6D82" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    z-index: 0;
}

.contact-methods { 
    margin-top: 50px; 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    flex-wrap: wrap; 
    position: relative;
    z-index: 1;
}

.contact-item a { 
    text-decoration: none; 
    color: var(--dark-text); 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    border: 1px solid var(--light); 
    background-color: var(--white); 
    padding: 20px; 
    border-radius: 10px; 
    transition: all 0.3s ease; 
}

.contact-item a:hover { 
    border-color: var(--primary); 
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.07); 
}

.contact-item i { 
    font-size: 1.8rem; 
    color: var(--primary); 
    transition: all 0.3s ease;
}

.contact-item a:hover i {
    transform: scale(1.2);
}

/*RODAPÉ*/
.footer {
    background-color: var(--dark-text);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FFFFFF" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer p {
    margin: 5px 0;
    color: #ccc;
}

.footer strong {
    color: var(--white);
}

.footer .developer a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer .developer a:hover {
    color: var(--light);
    text-decoration: underline;
}

/*RESPONSIVIDADE */
@media (max-width: 1200px) {
    .hero-circle-image {
        width: 350px;
        height: 350px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .journey-content,
    .services-content {
        flex-direction: column;
        gap: 40px;
    }

    .professional-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .professional-image {
        order: 1;
    }
    
    .professional-text-box {
        order: 2;
        background-color: var(--primary); 
        backdrop-filter: none;
    }
    
    .testimonial-card { 
        min-width: calc(50% - 20px); 
        width: calc(50% - 20px);
    }

    .journey-content::before { 
        display: none; 
    }
    
    .diferenciais-grid { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    section { padding: 60px 0; }
    
    .hero { 
        min-height: 80vh;
        padding: 90px 0 40px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text, .hero h1, .hero p {
        text-align: center;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-top: 20px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-circle-image {
        width: 250px;
        height: 250px;
        order: -1;
    }

    .desktop-nav { 
        display: none; 
    }
    
    .hamburger { 
        display: block; 
    }


    
   .carousel-track {
        margin: 0;
    }

    .testimonial-card {
        width: 100%;
        min-width: 100%;
        flex-shrink: 0; 
        margin: 0;      
        box-sizing: border-box; 
    }

    .carousel-container {
        padding: 0 20px;
        box-sizing: border-box;
    }
    .expand-btn {
        display: block; 
    }


    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .professional-text-box {
        padding: 25px;
    }
    
    .diferencial-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-item a {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .hero-content-wrapper::after {
        content: '';
        position: absolute;
        bottom: 40px;
        right: 20px;
        width: 12px;
        height: 12px;
        background-color: var(--primary);
        opacity: 0.1;
        animation: float 7s infinite ease-in-out;
        animation-delay: 1s;
    }
    
    .about-journey::before,
    .about-professional::before,
    .diferenciais::before,
    .testimonials::before,
    .faq::before,
    .contact::before,
    .footer::before {
        background-size: 30px 30px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .hero-circle-image {
        width: 200px;
        height: 200px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .carousel-navigation .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .professional-text-box,
    .diferencial-item {
        padding: 20px;
    }
    
    .key-decoration {
        display: none;
    }
    
    .journey-text::before {
        content: '';
        position: absolute;
        top: -10px;
        right: 10px;
        width: 10px;
        height: 10px;
        background-color: var(--primary);
        opacity: 0.1;
    }
    
    .services-text::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 15px;
        width: 8px;
        height: 8px;
        background-color: var(--primary);
        opacity: 0.1;
    }
}