/* Fundo destacado para tópicos principais */
.highlight-bg {
    background: url('img/roxo.jpg') center center/cover no-repeat;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(92, 82, 127, 0.10);
    padding: 48px 32px;
    margin-bottom: 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.highlight-bg h2,
.highlight-bg .section-title {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.highlight-bg p,
.highlight-bg strong {
    color: #f3eafd;
}
/* ==========================================================================
   STYLE.CSS - Tema Inspirado em Marina Fukuda, adaptado para Simone Costa
   ========================================================================== */

/* Resets e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores Suaves, Acolhedoras e Elegantes (Tons de Lavanda, Rose e Areia) */
    --primary-color: #9030b6;     /* Roxo místico/suave sofisticado */
    --primary-light: #c277d3;    /* Cor do "Botão Fale comigo" */
    --accent-color: #c5a880;      /* Dourado areia/champanhe elegante */
    --bg-light: #fbf9f6;          /* Off-white quente e acolhedor */
    --text-dark: #332f35;         /* Grafite suave, evita o preto puro */
    --text-muted: #6e6770;
    --white: #f8efeff6;
    --gradient-overlay: linear-gradient(135deg, rgba(251,249,246,1) 0%, rgba(243,235,245,1) 100%);
    
    /* Tipografia */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--gradient-overlay);
    color: #9030b6;
    line-height: 1.6;
    font-size: 0px;/* Espaço entre as informações como: Inicio, Bem-vinda e Sobre Mim  */
}

/* Utilitários */
.section-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 24px;
}

.text-center { text-align: center; }
.text-center { text-align: center; }

/* Cabeçalho */

.main-header {
    background-color: rgba(251, 249, 246, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(92, 82, 127, 0.08);
    backdrop-filter: blur(5px);
}

/* Menu móvel */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1101;
}
.hamburger {
    display: block;
    width: 32px;
    height: 4px;
    background: #bbb;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 32px;
    height: 4px;
    background: #bbb;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger::before {
    top: -10px;
}
.hamburger::after {
    top: 10px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-light);
    box-shadow: -2px 0 16px rgba(0,0,0,0.08);
    z-index: 1200;
    padding: 48px 32px 0 32px;
    gap: 32px;
    align-items: flex-start;
    font-size: 1.3rem;
    animation: slideIn 0.3s;
}
.mobile-nav.open {
    display: flex;
}
.mobile-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.mobile-nav a:hover {
    color: var(--primary-color);
}
.close-mobile-menu {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--primary-color);
    position: absolute;
    top: 18px;
    right: 24px;
    cursor: pointer;
}
@keyframes slideIn {
    from { right: -100vw; }
    to { right: 0; }
}

/* Responsividade para mobile */

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-section {
        min-height: calc(100vh - 500px);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-top: 40px;
        padding-bottom: 24px;
    }
    .hero-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }
    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        margin-top: 60px;
    }
    .btn-hero {
        display: block;
        width: 100%;
        max-width: 95vw;
        margin: 0 auto;
        padding: 24px 0;
        font-size: 2.1rem;
        font-weight: bold;
        color: #fff;
        background: transparent;
        border: 4px solid #fff;
        border-radius: 16px;
        text-align: center;
        box-shadow: none;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 8px rgba(0,0,0,0.10);
        transition: background 0.2s, color 0.2s;
    }
    .btn-hero:hover {
        background: rgba(255,255,255,0.12);
        color: #fff;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #820ab1;
    margin-left: 100px;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .btn-nav {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-links .btn-nav:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

/* Seção Hero - Design Circular Fluido */
.hero-section {
    background: url('img/logo03.jpg') no-repeat center/cover;
    padding: 60px 0;
    min-height: calc(85vh - 395px);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-title span {
    font-style: italic;
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Botão principal sobre a imagem hero */
.btn-hero {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
    background: #ffffff;
    color: #a20cab;
    text-decoration: none;
    padding: 1px 12px;/* Tamanho do botão "Agende sua consulta" */
    border-radius: 5px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 0;
    transition: transform 0.16s ease, background 0.2s ease, color 0.2s ease;
    border: 3px solid rgb(241, 240, 243);
}

.btn-hero:hover {
    transform: translateX(-50%) scale(1.03);
    background: rgb(81, 4, 112);
    color: #ffffff;
}

/* Responsividade: botões menores em telas pequenas */
@media (max-width: 768px) {
    .btn-hero {
        position: static;
        transform: none;
        margin: 80px auto 0;
        display: block;
        width: 100%;
        max-width: 95vw;
        font-size: 20px;
        padding: 16px 0;
        bottom: auto;
    }
    .hero-container {
        flex-direction: column;
        gap: 20px;
    }
}

.btn-primary {
    background-color: #ffffff;
    color: #9030b6;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    transition: background 0.3s ease;
    box-shadow: 0 4px 14px rgba(92, 82, 127, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.btn-secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #131212;
}

/* Moldura e Estilo da Foto Enviada */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-image-container {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 8px solid var(--white);
    position: relative;
    background: #e5e5e5;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Seção Sobre */
.about-section {
    background-color: #d586e70d;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-block {
    flex: 1.2;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-text-block p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.features-block {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-family: var(--font-serif);
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 18px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
}

/* Seção Modalidades / Serviços */
.services-section {
    background-color: var(--bg-light);
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: -15px;
    margin-bottom: 40px;
    font-weight: 300;
}

.services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.highlighted {
    border: 2px solid var(--primary-color);
    position: relative;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 300;
}

/* Seção Contato */
.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.info-icon {
    font-size: 24px;
    background-color: var(--bg-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
}

.info-text h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.info-text p {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 300;
}

.contact-form-wrapper {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(92, 82, 127, 0.05);
}

.contact-form h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    background-color: var(--white);
    color: var(--text-dark);
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===============================================
   NOVOS ESTILOS PARA O NOVO DESIGN
   =============================================== */

/* Logo com Imagem */
.logo-img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Hero Section - Melhorado */
.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(92, 82, 127, 0.15);
    object-fit: cover;
}

/* Seção Bem-vindas */
.welcome-section {
    background-color: rgba(243, 235, 245, 0.5);
}

.welcome-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.welcome-text {
    flex: 1;
}

.welcome-text h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: #fff;
    margin-bottom: 28px;
    font-weight: 400;
    display: inline-block;
    padding: 18px 24px;
    border-radius: 18px;
    background:
        linear-gradient(rgba(96, 53, 123, 0.35), rgba(96, 53, 123, 0.35)),
        url('img/geleia2.avif') center center / cover no-repeat;
    box-shadow: 0 12px 28px rgba(92, 82, 127, 0.18);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.welcome-text p {
    color: #820ab1;
    margin-bottom: 20px;
    font-weight: 470;
    line-height: 1.9;
    font-size: 18px;
}

.welcome-services {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Cards de Serviço na Bem-vindas */
.welcome-section .service-card {
    background: var(--white);
    padding: 20px 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(92, 82, 127, 0.08);
    border: none;
    transition: all 0.3s ease;
}

.welcome-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(92, 82, 127, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.welcome-section .service-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.6;
}

/* Seção Sobre Mim */
.section-about {
    background-color: #d586e70d;
    padding: 65px 0px;/* Margem da borda do rodape do final da página */
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    flex: 0.9;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 350px;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(92, 82, 127, 0.2);
}

.about-text {
    flex: 1.1;
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    color: #eceaee;/* Cor do texto do titulo "Funcionamento" */
    margin-bottom: 28px;
    font-weight: 400;
}

.about-text p {
    color: #eceaee;/* Cor do texto do "Funcionamento" */
    margin-bottom: 20px;
    font-weight: 460;
    line-height: 1.9;
    font-size: 18px;
}

.about-text p strong {
    color: #eceaee;/* Cor do texto do "Demandas" */
}

.about-text .btn-secondary {
    margin-top: 32px;
    display: inline-block;
}

/* Seção de Serviços */
.services-section {
    background-color: #f3eafd;/* Cor da borda de " Demandas" */
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-item {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(92, 82, 127, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(92, 82, 127, 0.15);
}

.service-number {
    font-family: var(--font-serif);
    font-size: 48px;
    color: #a014d7;/* Cor do numero de  " Demandas" */
    opacity: 0.7;
    margin-bottom: 16px;
}

.service-item h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 500;
}

.service-item p {
    color: #15021e;/* Cor das letras de  " Demandas" */
    font-weight: 500;
    line-height: 1.8;
    font-size: 17px;
}

/* Seção FAQ */
.section-faq {
    background-color: rgba(243, 235, 245, 0.5);
}

.section-faq .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(92, 82, 127, 0.15);
    border-radius: 12px;
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 8px 20px rgba(92, 82, 127, 0.1);
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(243, 235, 245, 0.5);
}

.faq-icon {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 32px 24px 32px;
    background: var(--white);
    color: #15021e;/* Cor do texto da resposta de " Perguntas Frequentes" */
    font-weight: 500;
    line-height: 1.9;
    font-size: 17px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seção Abordagem */
.approach-section {
    background-color: var(--white);
    text-align: center;
}

.approach-section .section-title {
    margin-bottom: 40px;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content p {
    color: #820ab1;
    font-weight: 500;
    line-height: 1.9;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Seção CTA */
.section-cta {
    background: linear-gradient(135deg, #d367d1fa 0%, #610685 100%);/* Cor do degrade do rodape da pagina */
    padding: 100px 24px;
    color: var(--white);
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.section-cta h2 {
    font-family: var(--font-serif);
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.8;
}

.section-cta .btn-primary {
    background-color: #ffffff;/* Cor do botão "Enviar mensagem" */
    padding: 16px 24px;
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(215, 16, 233, 0.918);
    font-weight: 600;
}

.section-cta .btn-primary:hover {
    background-color: #dfd6e2;
}

/* Rodapé */
.footer {
    background-color: #15021e;;/* cor do rodapé da página */
    color: var(--white);
    padding: 60px 24px 20px;
}

.footer-content {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 400;
}

.footer-info p,
.footer-contact p,
.footer-hours p {
    font-weight: 300;
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-contact p strong,
.footer-hours p strong {
    display: block;
    margin-top: 12px;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #15021e;;
    padding-top: 20px;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.85;
}

/* Responsividade */
@media (max-width: 1024px) {
    .welcome-content,
    .about-content {
        gap: 40px;
    }

    .welcome-services {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-container,
    .welcome-content,
    .about-content {
        flex-direction: column;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .welcome-services {
        grid-template-columns: 1fr;
    }

    .section-cta h2 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 50px 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px 16px 20px;
        font-size: 14px;
    }
}

.btn-submit {
    width: 100%;
    background-color: #25d366; /* Cor amigável do WhatsApp */
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-submit:hover {
    background-color: #20ba5a;
}

/* Rodapé */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 40px 24px;
}

.footer-container p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-subtext {
    font-size: 12px !important;
    margin-top: 8px;
    opacity: 0.5 !important;
    letter-spacing: 1px;
}

/* Responsividade Básica (Dispositivos Móveis e Tablets) */
@media (max-width: 900px) {
    .hero-container, .about-grid, .services-grid, .contact-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-container {
        flex-direction: column-reverse;
    }

    .nav-links {
        display: none; /* Em um cenário real, você implementaria um menu hambúrguer */
    }

    .circle-image-container {
        width: 280px;
        height: 280px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
    }
    
    /* Correção definitiva para o botão não entortar no Mobile */
@media (max-width: 768px) {
    .btn-submit, .btn-primary {
        display: block !important;       
        width: 90% !important;           
        max-width: 350px !important;     
        margin: 20px auto !important;    
        text-align: center !important;   
        float: none !important;          /* Impede que o botão herde qualquer inclinação para a esquerda */
        clear: both !important;
    }
}
}
