/* CONFIGURAÇÕES GERAIS */
html {
    scroll-behavior: smooth;
}html {
    scroll-behavior: smooth;
}
* {
    margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth;
}

:root {
    --roxo: #5a0696;
    --rosa: #ff3faa;
    --preto: #fff7f7;
    --branco: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--branco);
    color: var(--preto);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* HEADER */
/* AJUSTE DO CABEÇALHO FIXO */
header {
    position:absolute; /* Mantém o menu acompanhando a rolagem */
    top: 35px; /* Alinha exatamente abaixo da barra de frases (que tem 35px de altura) */
    width: 100%;
    background-color: #000000;
    z-index: 1000;
    transition: top 0.3s; /* Suaviza se você quiser esconder a barra depois */
}

/* Se você preferir que o menu NÃO acompanhe a rolagem, mude para: */
/* header { position: absolute; top: 35px; width: 100%; } */

/* Ajuste o espaçamento da primeira seção (Gestão) para não ficar coberta pelo menu */
.section-gestao {
    padding-top: 150px !important; /* Espaço para a barra + menu fixo */
}
@media (max-width: 768px) {
    header {
        top: 35px;
    }
    .section-gestao {
        padding-top: 130px !important;
    }
}


nav { display: flex; justify-content: space-between; align-items: center; }

.logo { color: white; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; }

.logo span { color: var(--rosa); font-style: italic; }

nav ul { display: flex; list-style: none; }

nav a { color: white; text-decoration: none; margin-left: 20px; font-size: 0.9rem; }

/* HERO */
.hero {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--roxo) 0%, var(--preto) 100%);
    display: flex; align-items: center; color: white; padding: 60px 5%;
}

.hero-content {
    margin-top: 20px;}
.hero-text { flex: 1; }

.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; line-height: 1.1; margin: 20px 0; }

.tagline { background: rgb(211, 210, 210); padding: 5px 15px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; }

.btn-principal {
    display: inline-block; background: linear-gradient(90deg, var(--roxo), var(--rosa));
    color: white; padding: 18px 35px; text-decoration: none; border-radius: 50px; font-weight: 700;
}

.hero-image img {
    width: 400px; height: 400px; border-radius: 50%; object-fit: cover;
    border: 10px solid rgba(255, 252, 252, 0.1);
}

/* SOBRE */
.about { padding: 100px 5%; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

.about-header h2 { font-family: 'Playfair Display', serif; font-size: 3rem; }

.about-header span { color: var(--roxo); font-style: italic; }

.bio-intro { font-weight: 800; color: var(--roxo); font-size: 1.2rem; margin-bottom: 15px; }

/* SEÇÃO STORYMAKER (ESTILO IMAGEM) */
.pricing-story {
    padding: 100px 5%; background-color: var(--preto); text-align: center;
}

.pricing-title h2 {
    font-family: 'Inter', sans-serif; font-weight: 900; font-size: 5rem; color: white; letter-spacing: 2px;
}

.subtitle {
    display: inline-block; background: var(--rosa); color: white;
    padding: 5px 25px; font-weight: 800; font-size: 1.5rem; margin-top: -20px; margin-bottom: 60px;
}

.pricing-grid {
    display: flex; justify-content: center; gap: 25px; flex-wrap: wrap;
}

.price-card-st {
    background: white; padding: 40px 30px; border-radius: 40px; width: 330px;
    display: flex; flex-direction: column; align-items: center;
}

.price-card-st h3 { color: var(--roxo); font-size: 1.1rem; font-weight: 900; margin-bottom: 10px; }

.divider { width: 100%; height: 3px; background: var(--roxo); margin-bottom: 20px; }

.price-card-st ul { list-style: none; text-align: left; min-height: 120px; width: 100%; }

.price-card-st ul li { color: #333; margin-bottom: 10px; font-size: 0.95rem; font-weight: 500; }

.price-tag {
    border: 2px solid var(--roxo); color: var(--roxo); padding: 10px 25px;
    border-radius: 50px; font-size: 1.5rem; font-weight: 900; margin: 20px 0;
}

.btn-whats {
    background: var(--roxo); color: white; text-decoration: none;
    padding: 8px 20px; border-radius: 5px; font-size: 0.8rem; font-weight: 700;
}

.pricing-footer { margin-top: 50px; color: white; }

.pricing-footer p { font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }

.custom-call a { color: var(--rosa); text-decoration: none; border-bottom: 1px solid var(--rosa); }

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .hero-content { flex-direction: column-reverse; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-image img { width: 280px; height: 280px; }
    .about-grid { grid-template-columns: 1fr; }
    .pricing-title h2 { font-size: 3rem; }
}



/* SEÇÃO MARKETING PACKAGE */
.marketing-package {
    padding: 100px 5%;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), 
                url('https://c4.wallpaperflare.com/wallpaper/632/34/549/thanos-infinity-gauntlet-avengers-infinity-war-wallpaper-preview.jpg'); /* Fundo temático */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.marketing-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
}

.marketing-header span {
    color: #fff;
    -webkit-text-stroke: 1px #fff;
}

.yellow-badge {
    display: inline-block;
    background: #ffcc00; /* Amarelo da imagem */
    color: #590696;
    padding: 5px 20px;
    font-weight: 900;
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 50px;
}

/* Card de Serviços */
.package-card {
    background: white;
    color: #fafafa;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card-top {
    background: linear-gradient(90deg, #ff3faa, #590696);
    color: white;
    padding: 15px;
    font-weight: 800;
    font-size: 1.5rem;
    text-align: center;
}

.services-list {
    list-style: none;
    padding: 30px;
}

.services-list li {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.check {
    background: #590696;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    margin-right: 12px;
}

.price-section {
    padding: 0 30px 30px;
    text-align: center;
}

.old-price { color: #888; font-size: 1rem; }

.current-price {
    color: #590696;
    font-size: 3rem;
    font-weight: 900;
}

.current-price span { font-size: 1rem; color: #888; }

.btn-agendar {
    display: block;
    background: #000;
    color: white;
    text-decoration: none;
    padding: 20px;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-agendar:hover { background: var(--rosa); }

/* Ajuste Mobile */
@media (max-width: 768px) {
    .marketing-header h2 { font-size: 2rem; }
    .yellow-badge { font-size: 1.2rem; }
}

.img-logo {
    height: 50px; /* Ajuste a altura conforme necessário */
    width: auto;  /* Mantém a proporção da largura automaticamente */
    display: block;
}

/* Ajuste no nav para alinhar o logo verticalmente */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* SEÇÃO DEPOIMENTOS */
/* SEÇÃO DE DEPOIMENTOS COM TRANSIÇÃO */

.testimonials {
    padding: 60px 0 40px; /* Reduz o padding inferior */
    background: linear-gradient(to bottom, #ffffff 70%, #f4f4f4 100%); /* Transição suave para um cinza clarinho */
    position: relative;
}

.testimonials-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
}

.testimonials-header span {
    color: var(--roxo);
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.test-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    border-top: 5px solid #eee;
    transition: 0.3s;
}

.test-card.highlighted {
    border-top: 5px solid var(--rosa);
    transform: translateY(-10px);
}

.stars {
    color: #ffcc00; /* Amarelo ouro */
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.test-card p {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.client-info .client-name {
    font-weight: 800;
    color: var(--preto);
    font-size: 1.1rem;
}

.client-info .client-biz {
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
}

.test-card:hover {
    box-shadow: 0 20px 40px rgba(89, 6, 150, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .test-card.highlighted {
        transform: translateY(0);
    }
}

/* ESTILO COMPACTO PARA DEPOIMENTOS */
.testimonials {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.test-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 40px;
}

.test-header span {
    color: #590696;
    font-style: italic;
}

.test-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.test-mini-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
    width: 300px; /* Tamanho reduzido */
    text-align: left;
    transition: 0.3s;
}

.test-mini-card:hover {
    border-color: #ff3faa;
    transform: translateY(-5px);
}

.stars {
    color: #ffcc00;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.test-mini-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    font-style: italic;
    min-height: 70px;
}

.client {
    display: block;
    margin-top: 15px;
    font-weight: 800;
    color: #590696;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Ajuste para telas pequenas */
@media (max-width: 768px) {
    .test-mini-card {
        width: 100%;
    }
}

/* AJUSTE DO RODAPÉ PREMIUM */
/* RODAPÉ COMPACTO E CONECTADO */
.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 0; /* Cola o rodapé na transição cinza */
    border-top: 1px solid #eee; /* Linha finíssima para separação elegante */
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand { flex: 1.5; min-width: 250px; }
.footer-links { flex: 1; min-width: 150px; }
.footer-contact { flex: 1; min-width: 200px; }

.footer-logo { 
    height: 100px; 
    margin-bottom: 0px; /* Reduzido de 5px para 0 para colar no texto */
    display: block;
}
.footer-brand p { 
    color: #888; 
    font-size: 0.9rem; 
    max-width: 200px; 
    margin-top: 5px; /* Define um espaço pequeno e controlado entre o logo e o texto */
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ff3faa; /* Rosa da marca */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #888; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: #ffffff; padding-left: 5px; }

.footer-contact p { color: #888; margin-bottom: 10px; font-size: 0.9rem; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 150px !important;
    color: #444;
    font-size: 0.8rem;
}

/* Responsividade para celular */
@media (max-width: 768px) {
    .footer-grid { text-align: center; flex-direction: column; align-items: center; }
    .footer-brand p { margin: 0 auto; }
}

.btn-agendar {
    display: block;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 20px;
    text-align: center;
    font-weight: 800;
    
    /* CÓDIGO PARA ARREDONDAR OS CANTOS INFERIORES */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    
    /* Se quiser arredondar todos os cantos uniformemente, use apenas: */
    /* border-radius: 15px; */
    
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-agendar:hover {
    background-color: #1a1a1a;
    transform: scale(1.02);
}

/* ESTILO CANSEI, ME LEVA! */
.creative-agency {
    padding: 100px 0;
    background-color: #000;
    color: #fff;
    border-top: 1px solid #222;
}

.agency-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.agency-content { flex: 1.5; min-width: 320px; }

.agency-tag {
    color: #ff3faa;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 800;
}

.agency-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 15px 0;
}

.agency-content h2 span { font-style: italic; color: #590696; }

.agency-content p { color: #888; font-size: 1.1rem; margin-bottom: 30px; }

.agency-stats { display: flex; gap: 40px; }

.stat-item strong { display: block; font-size: 2rem; color: #ff3faa; }

.stat-item span { font-size: 12px; color: #555; text-transform: uppercase; }

.brand-circle {
    width: 200px;
    height: 200px;
    border: 2px dashed #590696;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
}
/* --- ESTILO STORYMAKER (CLARO E VERTICAL) --- */
.section-storymaker { padding: 80px 0; background: #f9f9f9; text-align: center; }
.header-light h2 { color: #000; font-size: 2.5rem; margin-bottom: 40px; }
.header-light span { color: #590696; font-style: italic; }

.grid-storymaker { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }

.card-story { 
    background: #fff; 
    padding: 40px 30px; 
    border-radius: 20px; 
    width: 300px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
}

.card-story.featured { border: 2px solid #590696; transform: scale(1.05); }
.best-seller { 
    position: absolute; top: -15px; background: #590696; color: #fff; 
    padding: 5px 15px; border-radius: 20px; font-size: 10px; font-weight: 800;
}

.card-story h3 { color: #555; font-size: 1.2rem; margin-bottom: 15px; }
.card-story .price { font-size: 2rem; font-weight: 900; color: #590696; margin-bottom: 20px; }
.card-story ul { list-style: none; text-align: left; margin-bottom: 30px; color: #666; font-size: 14px; }
.card-story li { margin-bottom: 10px; }

.btn-story { 
    text-decoration: none; color: #590696; border: 2px solid #590696; 
    padding: 10px 25px; border-radius: 50px; font-weight: 700; transition: 0.3s;
}
.btn-story:hover { background: #590696; color: #fff; }

/* --- ESTILO GESTÃO (ESCURO E HORIZONTAL) --- */
.section-gestao { padding: 100px 0; background: #000; }

.card-horizontal-gestao { 
    background: linear-gradient(145deg, #111, #000); 
    border: 1px solid #333;
    display: flex; 
    border-radius: 30px; 
    overflow: hidden;
    align-items: center;
    flex-wrap: wrap;
}

.gestao-content { flex: 2; padding: 60px; min-width: 300px; }
.gestao-content h2 { color: #fff; font-size: 2.5rem; margin: 15px 0; }
.gestao-content h2 span { color: #ff3faa; }
.gestao-content p { color: #888; margin-bottom: 20px; }

.list-check { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; color: #fff; font-size: 14px; }

.gestao-price-box { 
    flex: 1; background: #fff; color: #000; padding: 60px; 
    text-align: center; display: flex; flex-direction: column; justify-content: center;
}

.new-price { font-size: 3.5rem; font-weight: 900; color: #590696; }
.new-price span { font-size: 1rem; color: #666; }

.btn-gestao { 
    background: #000; color: #fff; text-decoration: none; 
    padding: 20px; border-radius: 15px; margin-top: 25px; font-weight: 800; 
}

/* Responsividade */
@media (max-width: 768px) {
    .card-horizontal-gestao { flex-direction: column; }
    .gestao-content, .gestao-price-box { padding: 30px; width: 100%; }
}
/* WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* Ajuste para celular para não cobrir o conteúdo */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float img {
        width: 30px;
    }
} /* WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* Ajuste para celular para não cobrir o conteúdo */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float img {
        width: 30px;
    }
}/* WHATSAPP FLUTUANTE AJUSTADO */
.whatsapp-float {
    position: fixed;
    width: 40px; /* Tamanho fixo do círculo */
    height: 40px; /* Tamanho fixo do círculo */
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

/* Controla o tamanho da imagem dentro do círculo */
.whatsapp-float img {
    width:20px !important; /* Força o tamanho pequeno da logo */
    height: 20px !important;
    display: block;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Ajuste para celular (ainda menor) */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float img {
        width: 30px !important;
        height: 30px !important;
    }
} /* WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.912);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* Ajuste para celular para não cobrir o conteúdo */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float img {
        width: 30px;
    }
}/* CIRCULO DA AGÊNCIA AJUSTADO */
.brand-circle {
    width:10px;
    height: 100px;
    border: 2px dashed #590696;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Garante que a imagem não saia do círculo */
    background-color: transparent;
}

/* LOGO DENTRO DO CÍRCULO */
.agency-logo {
    width: 90%; /* Ajuste a percentagem para o logo não encostar na borda tracejada */
    height: 90%;
    object-fit: contain; /* Mantém a proporção do seu logo sem distorcer */
    display: block;
}

/* Efeito de flutuação suave para destacar o selo criativo */
.brand-circle {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}


/* SEÇÃO DE DEPOIMENTOS COM TRANSIÇÃO */
.testimonials {
    padding: 60px 0 40px; /* Reduz o padding inferior */
    background: linear-gradient(to bottom, #ffffff 70%, #f4f4f4 100%); /* Transição suave para um cinza clarinho */
    position: relative;
}

/* RODAPÉ COMPACTO E CONECTADO */
.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 0; /* Cola o rodapé na transição cinza */
    border-top: 1px solid #eee; /* Linha finíssima para separação elegante */
}

/* GARANTIR QUE NÃO HAJA ESPAÇOS VAZIOS ENTRE ELES */
#depoimentos, footer {
    display: block;
    margin: 0;
}

/* BARRA DINÂMICA NO TOPO */
.top-bar-ticker {
    background: linear-gradient(90deg, #590696, #ff3faa); /* Degradê roxo e rosa da marca */
    color: #ffffff;
    height: 35px;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2000;
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.ticker-item {
    padding-right: 50px; /* Espaço entre as repetições da frase */
}

/* ANIMAÇÃO DO MOVIMENTO */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Ajuste no Header para não colar na barra */
header {
    top: 35px !important; /* Move o menu para baixo da barra */
} 
/* CONTAINER PRINCIPAL DO TOPO */
.hero-content {
    display: flex;
    align-items: center; /* Centraliza verticalmente a foto com o texto */
    justify-content: space-between; /* Empurra um para cada lado */
    gap: 40px; /* Espaço entre o texto e a foto */
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px; /* Ajuste o topo conforme a sua barra rosa */
}

/* AJUSTE DO BLOCO DE TEXTO */
.hero-text {
    flex: 1; /* Faz o texto ocupar o espaço disponível */
    text-align: left; /* Mantém o texto alinhado à esquerda */
}

/* AJUSTE DA IMAGEM */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 450px; /* Limita o tamanho da foto para não ficar gigante */
    border-radius: 100%; /* Mantém o formato circular se desejar */
    object-fit: cover;
}

/* RESPONSIVIDADE PARA CELULAR */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse; /* No celular, a foto fica em cima do texto */
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
}/* AJUSTE DO TAMANHO DAS LETRAS NO TOPO */
.hero-text h1 {
    font-size: 2.8rem; /* Diminuído de 3.5rem para 2.8rem */
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 500px; /* Evita que o título fique largo demais */
}

.hero-text p {
    font-size: 1rem; /* Diminuído para uma leitura mais leve */
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* AJUSTE DA TAG DE EXPERIÊNCIA */
.tagline {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 15px;
    display: inline-block;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px; /* Aumenta o espaço entre o texto e a foto */
    padding: 120px 20px; /* Ajuste o topo para não cobrir com o menu */
}/* CONTAINER DOS BOTÕES */
.hero-btns {
    display: flex;
    gap: 15px; /* Espaço entre os dois botões */
    margin-top: 20px;
}

/* ESTILO DO BOTÃO DE STORYMAKER (SECUNDÁRIO) */
.btn-secondary {
    padding: 12px 25px;
    border: 2px solid #ff3faa; /* Rosa da marca */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #ff3faa;
    color: #fff;
    transform: translateY(-3px);
}

/* AJUSTE PARA CELULAR */
@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column; /* Botões um em cima do outro no celular */
        align-items: center;
    }
}/* CONTAINER PARA ALINHAR LADO A LADO */
.hero-btns {
    display: flex;
    flex-direction: row; /* Garante que fiquem na mesma linha */
    gap: 15px; /* Espaço entre os botões */
    margin-top: 30px;
}

/* ESTILO DO SEGUNDO BOTÃO (STORYMAKER) */
.btn-secondary {
    display: inline-block;
    padding: 15px 25px;
    background-color: transparent;
    border: 2px solid #ff3faa; /* Rosa da marca */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-secondary:hover {
    background-color: #ff3faa;
    transform: translateY(-3px);
}

/* AJUSTE PARA O BOTÃO NÃO FICAR MUITO GRANDE NO CELULAR */
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column; /* No celular bem pequeno, eles voltam a ficar um sobre o outro */
        width: 100%;
    }
}
/* FORÇAR ALINHAMENTO LATERAL */
.hero-content {
    display: flex !important;
    flex-direction: row !important; /* Lado a lado */
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px;
    padding: 140px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap !important; /* Proíbe a imagem de ir para baixo */
}

.hero-text {
    flex: 1.2; /* Dá um pouco mais de espaço para o texto */
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    border-radius: 80;
}

.hero-image img {
    max-width: 450px; /* Tamanho da foto */
    width: 100%;
    height: auto;
    border-radius:80px;
}

/* BOTÕES LADO A LADO */
.hero-btns {/* RESET PARA A IMAGEM NÃO FICAR QUADRADA */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Alinha à direita do texto */
    align-items: center;
}

.perfil-circular {
    /* Força as dimensões serem idênticas */
    width: 380px !important; 
    height: 380px !important;
    
    /* Faz o círculo e corta as sobras da foto original */
    border-radius: 50% !important;
    object-fit: cover !important; 
    object-position: center; /* Garante que o rosto fique centralizado */

    /* Cor rosa neon da barra do topo */
    border: 6px solid #ff3faa !important;
    box-shadow: 0 0 30px rgba(255, 63, 170, 0.5) !important;
    
    display: block !important;
}

/* AJUSTE PARA O CELULAR NÃO CORTAR A FOTO */
@media (max-width: 768px) {
    .perfil-circular {
        width: 250px !important;
        height: 250px !important;
    }
    .hero-image-container {
        justify-content: center;
        margin-bottom: 20px;
    }
}
    display: flex;
    gap: 15px;
    margin-top: 25px;
}/* FUNDO E ESTÉTICA GERAL (IGUAL IMAGEM 2) */
.hero {
    background: radial-gradient(circle at top right, #2d0b4d 0%, #000000 70%) !important;
    padding: 150px 0 100px;
    color: #ffffff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* ALINHAMENTO LADO A LADO */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TEXTO */
.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.tagline {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* BOTÃO COM DEGRADÊ (IGUAL IMAGEM 2/5) */
.btn-principal {
    background: linear-gradient(90deg, #6a11cb 0%, #ff0080 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-secondary {
    border: 2px solid #ff0080;
    color: white;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
}

/* FOTO REDONDA COM BRILHO (IGUAL IMAGEM 2) */
.hero-image img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 50%; /* Torna redonda */
    border: 4px solid rgba(255, 0, 128, 0.3);
    box-shadow: 0 0 30px rgba(106, 17, 203, 0.6); /* Brilho roxo/rosa */
}

/* AJUSTE PARA CELULAR */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-image img {
        width: 300px;
        height: 300px;
        margin-bottom: 30px;
    }
    .btn-secondary {
        margin: 15px 0 0 0;
        display: block;
    }
}








































/* Alinhamento dos itens do menu */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

/* Estilo para os ícones sociais */
.nav-social a {
    font-size: 1.4rem; /* Tamanho do ícone */
    color: #ff3faa; /* Cor rosa neon da imagem 2 */
    transition: 0.3s ease;
}

.nav-social a:hover {
    color: #ffffff;
    transform: translateY(-3px);
    text-shadow: 0 0 10px #ff3faa;
}

/* Garante que a seção contato receba o link corretamente */
#contato {
    scroll-margin-top: 100px; /* Evita que o menu cubra o título ao clicar */
}/* CONFIGURAÇÃO PARA DISPOSITIVOS MÓVEIS (TELEMÓVEL) */
@media (max-width: 768px) {
    
    /* 1. Garante que o fundo não fica branco */
    body, html {
        background-color: #000 !important;
        overflow-x: hidden; /* Evita que o site balance para os lados */
    }

    /* 2. Topo (Hero): Foto ao lado do Texto */
    .hero-container-flex {
        display: flex !important;
        flex-direction: row !important; /* Mantém lado a lado como na imagem */
        flex-wrap: wrap !important;
        justify-content: center !important;
        padding-top: 100px !important;
        gap: 20px !important;
    }

    .hero-text {
        width: 100% !important;
        text-align: center !important;
        order: 2; /* Texto passa para baixo */
    }

    .hero-image {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        order: 1; /* Foto fica no topo */
    }

    .perfil-circular {
        width: 200px !important; /* Tamanho ideal para telemóvel */
        height: 200px !important;
    }

    /* 3. Ajuste do Título e Botões */
    .hero-text h1 {
        font-size: 1.8rem !important; /* Diminui a letra para não quebrar */
        line-height: 1.2 !important;
    }

    .hero-btns {
        flex-direction: column !important; /* Botões um sobre o outro para facilitar o toque */
        gap: 10px !important;
        align-items: center !important;
    }

    .btn-principal, .btn-secondary {
        width: 90% !important; /* Botões largos para o polegar */
        text-align: center !important;
    }

    /* 4. Cards de Preços: Um por baixo do outro */
    .pricing-grid, .partners-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .card, .partner-card {
        width: 100% !important;
        max-width: 320px !important;
    }

    /* 5. Menu Fixo no Topo */
    header {
        padding: 10px 0 !important;
        background: rgba(0, 0, 0, 0.95) !important;
    }

    nav ul {
        gap: 15px !important;
    }

    nav ul li a {
        font-size: 0.8rem !important;
    }
}@media (max-width: 768px) {
    /* Impede o site de ter largura maior que a tela do celular */
    html, body {
        width: 100vw;
        overflow-x: hidden;
        position: relative;
    }

    .hero-container-flex {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    /* Força a imagem a não empurrar o layout */
    .perfil-circular {
        max-width: 80% !important;
        height: auto !important;
        aspect-ratio: 1 / 1; /* Mantém redonda */
    }
}/* CONFIGURAÇÕES BASE - IMPEDE VAZAMENTOS */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Proíbe o site de balançar para os lados */
    background-color: #000;
}

.hero {
    background: radial-gradient(circle at top right, #2d0b4d 0%, #000 70%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

/* CONTAINER QUE MUDA DE LINHA PARA COLUNA */
.hero-container {
    display: flex;
    flex-direction: row; /* Lado a lado no PC */
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 40px;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Fonte que diminui sozinha no celular */
    color: #fff;
    line-height: 1.1;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* FOTO RESPONSIVA */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.perfil-circular {
    width: 100%;
    max-width: 420px; /* Tamanho no PC */
    aspect-ratio: 1/1; /* Garante que seja sempre quadrada antes do radius */
    object-fit: cover;
    border-radius: 50% !important;
    border: 5px solid #ff3faa;
    box-shadow: 0 0 30px rgba(255, 63, 170, 0.5);
}

/* FORÇAR RESET DE LARGURA */
* {
    max-width: 100vw !important; /* Impede qualquer coisa de ser maior que a tela */
}

@media (max-width: 768px) {
    /* 1. Forçar fundo preto total */
    body, html, section {
        background-color: #000 !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }

    /* 2. Empilhar elementos */
    .hero-container, .hero-container-flex, .hero-content {
        display: flex !important;
        flex-direction: column-reverse !important; /* Foto em cima, texto embaixo */
        align-items: center !important;
        padding: 80px 20px !important;
        text-align: center !important;
        width: 100% !important;
    }

    /* 3. Ajustar Foto */
    .perfil-circular, .hero-image img {
        width: 200px !important;
        height: 200px !important;
        border-radius: 50% !important;
        margin-bottom: 20px !important;
    }

    /* 4. Ajustar Botões */
    .hero-btns {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        align-items: center !important;
    }

    .btn-principal, .btn-secondary {
        width: 100% !important;
        max-width: 300px !important;
        margin: 10px 0 !important;
    }
}/* CORES GERAIS PARA CLAREAR O TEXTO */
.texto-claro {
    color: #ffffff !important; /* Força o texto a ser branco */
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para ler melhor */
}

.hero-text h1 {
    color: #ffffff !important;
    font-weight: 800;
}

.hero-text p {
    color: #e0e0e0 !important; /* Cinza bem claro */
}

/* CONFIGURAÇÃO PARA CELULAR (MOBILE) */
@media (max-width: 768px) {
    .hero-container {
        display: flex !important;
        flex-direction: column !important; /* Empilha os itens */
        align-items: center !important;
        text-align: center !important;
        padding-top: 120px !important;
    }

    /* COLOCAR A FOTO ACIMA DA FRASE */
    .hero-image {
        order: -1 !important; /* Move a foto para o topo de tudo */
        margin-bottom: 30px !important;
    }

    .perfil-circular {
        width: 220px !important;
        height: 220px !important;
        border-radius: 50% !important;
        border: 4px solid #ff3faa !important;
        box-shadow: 0 0 20px rgba(255, 63, 170, 0.6) !important;
    }

    /* CENTRALIZAR TEXTOS E BOTÕES */
    .hero-text {
        width: 100% !important;
    }

    .hero-text h1 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }

    .hero-btns {
        display: flex !important;
        flex-direction: column !important; /* Botões um sobre o outro */
        gap: 15px !important;
        align-items: center !important;
        margin-top: 25px !important;
    }

    .btn-principal, .btn-secondary {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
    }
}/* FORÇAR CORES CLARAS */
.titulo-branco, #area-texto h1 {
    color: #ffffff !important;
}

.paragrafo-branco, #area-texto p {
    color: #f0f0f0 !important;
}

/* AJUSTES PARA CELULAR */
@media (max-width: 768px) {
    #container-principal {
        display: flex !important;
        flex-direction: column !important; /* Força empilhamento */
        align-items: center !important;
        text-align: center !important;
        padding: 60px 20px !important;
        background: #000 !important; /* Garante fundo preto no celular */
    }

    #area-foto {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 20px !important;
    }

    #foto-circular {
        width: 220px !important;
        height: 220px !important;
        border-radius: 50% !important;
        border: 4px solid #ff3faa !important;
        object-fit: cover !important;
        box-shadow: 0 0 20px rgba(255, 63, 170, 0.6) !important;
    }

    #area-texto {
        width: 100% !important;
    }

    #area-texto h1 {
        font-size: 2.2rem !important;
        margin-top: 10px !important;
    }

    .botoes-mobile {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .btn-principal, .btn-secondary {
        width: 100% !important;
        max-width: 300px !important;
    }
}/* CONFIGURAÇÃO BASE (PARA PC) */
.hero {
    background: radial-gradient(circle at top right, #2d0b4d 0%, #000 70%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px;
    overflow: hidden;
}

.hero-container-final {
    display: flex;
    flex-direction: row-reverse; /* No PC, coloca a foto na direita e texto na esquerda */
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.texto-claro-final {
    color: #ffffff !important; /* Garante que o texto não fique preto */
}

.hero-text-final {
    flex: 1.2;
    text-align: left;
}

.hero-text-final h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.foto-perfil-circular {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ff3faa;
    box-shadow: 0 0 30px rgba(255, 63, 170, 0.4);
}

/* --- AJUSTES EXCLUSIVOS PARA CELULAR (MOBILE) --- */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px !important; /* Espaço reduzido no topo */
        background: lab(16.31% 37.84 -48.78) !important; /* Fundo preto sólido para contraste */
    }

    .hero-container-final {
        flex-direction: column !important; /* Empilha: Foto em cima, texto embaixo */
        gap: 30px !important;
        text-align: center !important;
    }

    .hero-image-final {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .foto-perfil-circular {
        width: 220px !important; /* Tamanho ajustado para celular */
        height: 220px !important;
        margin-bottom: 10px !important;
    }

    .hero-text-final {
        width: 100% !important;
    }

    .hero-text-final h1 {
        font-size: 2rem !important; /* Letra menor para não quebrar no celular */
        line-height: 1.2 !important;
    }

    .hero-btns-final {
        display: flex !important;
        flex-direction: column !important; /* Botões um sobre o outro */
        gap: 15px !important;
        align-items: center !important;
        margin-top: 25px !important;
    }

    .btn-principal-final, .btn-secondary-final {
        width: 100% !important;
        max-width: 280px !important;
        padding: 15px !important;
        text-align: center !important;
    }
}/* CONFIGURAÇÃO PARA COMPUTADOR */
.hero {
    background: radial-gradient(circle at top right, #2d0b4d 0%, #000 70%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

.hero-container-final {
    display: flex;
    flex-direction: row-reverse; /* Foto na direita no PC */
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.texto-claro-final {
    color: #ffffff !important; /* Resolve o problema das letras pretas */
}

.foto-perfil-circular {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ff3faa;
    box-shadow: 0 0 30px rgba(255, 63, 170, 0.4);
}

/* --- AJUSTE PARA CELULAR (FOTO DESCENDO) --- */
@media (max-width: 768px) {
    .hero {
        /* Aumentado para 140px para a foto descer mais no celular */
        padding: 140px 20px 60px !important; 
        background: #000 !important;
    }

    .hero-container-final {
        flex-direction: column !important; /* Foto em cima do texto */
        gap: 20px !important;
        text-align: center !important;
    }

    .foto-perfil-circular {
        width: 240px !important;
        height: 240px !important;
        margin-bottom: 15px !important; /* Espaço entre foto e frase */
    }

    .hero-text-final h1 {
        font-size: 2.1rem !important;
        line-height: 1.1 !important;
        color: #ffffff !important;
    }

    .hero-btns-final {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
        margin-top: 20px !important;
    }

    .btn-principal-final, .btn-secondary-final {
        width: 100% !important;
        max-width: 280px !important;
    }
}/* --- ESTILO DOS BOTÕES (CORREÇÃO) --- */
.hero-btns-final {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-principal-v2 {
    background: linear-gradient(90deg, #590696, #ff3faa) !important;
    color: #ffffff !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border: none;
    display: inline-block;
}

.btn-secondary-v2 {
    border: 2px solid #ff3faa !important;
    color: #ffffff !important;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

.btn-principal-v2:hover, .btn-secondary-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 63, 170, 0.3);
}

/* --- AJUSTE PARA CELULAR (FOTO NO TOPO E BOTÕES) --- */
@media (max-width: 768px) {
    .hero {
        padding: 140px 20px 60px !important; /* Foto desce mais */
    }

    .hero-container-final {
        flex-direction: column !important;
        text-align: center !important;
    }

    .hero-btns-final {
        flex-direction: column !important; /* Botões um sobre o outro */
        align-items: center !important;
        width: 100% !important;
    }

    .btn-principal-v2, .btn-secondary-v2 {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center;
    }

    .texto-claro-final {
        color: #ffffff !important;
    }
}

/* --- AJUSTE PARA COMPUTADOR (TEXTO NA ESQUERDA) --- */
@media (min-width: 769px) {
    .hero-container-final {
        flex-direction: row-reverse !important;
    }
    .hero-text-final {
        text-align: left;
    }
}/* FORÇAR A COR BRANCA NAS PALAVRAS 'PACOTE' E TÍTULOS */
.section-title-final h2, 
.section-title-final h2 span,
.card-pacote h3,
.hero-text-final h1,
#pacotes h2 {
    color: #ffffff !important; /* Garante que o texto fique branco */
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Sombra leve para destacar */
}

/* CASO A PALAVRA ESTEJA DENTRO DE UM SPAN (como Storymaker) */
.section-title-final h2 span {
    color: #ff3faa !important; /* Deixa o destaque em Rosa Neon para legibilidade */
}

/* GARANTIR QUE O FUNDO SEJA PRETO PARA O TEXTO BRANCO APARECER */
#pacotes, .section-storymaker-final {
    background-color: #000000 !important;
}
/* FORÇAR TEXTO BRANCO EM TODAS AS SEÇÕES ESCURAS */
#gestao h2, 
#pacotes h2, 
#pacotes h2 span, 
.card-pacote h3,
.bio-intro,
.about-body p {
    color: #ffffff !important; /* Deixa os títulos e textos brancos */
}

/* AJUSTE DE ESPAÇO PARA O MENU NÃO COBRIR O TÍTULO */
#gestao, #pacotes, #sobre {
    scroll-margin-top: 100px; /* Faz a página parar antes do menu fixo */
}

/* AJUSTE PARA O CELULAR (MOBILE) */
@media (max-width: 768px) {
    /* Garante que o fundo da seção Storymaker seja preto */
    #pacotes {
        background-color: #000000 !important;
        padding-top: 40px !important;
    }
    
    /* Centraliza os títulos no celular */
    .section-title-final h2 {
        text-align: center !important;
        margin-bottom: 30px !important;
    }
}.marquee-container {
    width: 100%;
    background: linear-gradient(90deg, #590696, #ff3faa);
    overflow: hidden; /* Esconde o que sobra */
    padding: 12px 0;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    white-space: nowrap; /* ISSO IMPEDE O ATROPELAMENTO */
    will-change: transform;
    animation: scroll-marquee 50s linear infinite;
}

.marquee-content span {
    display: inline-block;
    color: white !important;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 4px;
    padding-right: 500px; /* Espaço entre as repetições */
}

/* Animação de movimento contínuo */
@keyframes scroll-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 480px) {
    .marquee-container {
        padding: 8px 0;
    }
    .marquee-content span {
        font-size: 12px;
    }
}

/* AJUSTE PARA OS CARDS DE LOCALIZAÇÃO (GUARULHOS / ITAQUERA) */
.card-localizacao {
    background: rgba(255, 255, 255, 0.05); /* Fundo sutil */
    border: 8px solid rgba(255, 63, 170, 0.3);
    border-radius: 10px;
    
    /* AUMENTA O ESPAÇO INTERNO */
    padding: 20px 100px !important; 
    
    margin: 10px;
    text-align: center;
    display: inline-block;
}

.card-localizacao h4 {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 700;
    
    /* DISTÂNCIA DAS BORDAS */
    margin: 0;
    padding: 5px 0; 
    
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* AJUSTE PARA CELULAR */
@media (max-width: 768px) {
    .card-localizacao {
        width: 80%; /* Garante que o card não ocupe a tela toda */
        padding: 15px 20px !important;
        margin: 10px auto;
        display: block; /* Empilha no celular */
    }
}

/* CONTAINER DOS CARDS */
.pricing-grid-final {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: stretch; /* Garante que os cards tenham a mesma altura */
}

/* O CARD (MÁGICA AQUI) */
.card-pacote-final {
    background: #111 !important; /* Fundo escuro */
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 320px;
    
    /* Configuração Flexbox para alinhar o botão */
    display: flex !important;
    flex-direction: column !important; /* Conteúdo em coluna */
    justify-content: space-between !important; /* Empurra o botão para o fundo */
}

/* CONTEÚDO SUPERIOR DO CARD */
.card-content-final {
    flex-grow: 1; /* Faz o conteúdo ocupar todo o espaço disponível, empurrando o botão */
}

.card-pacote-final h3, .card-pacote-final li {
    color: #ffffff !important;
}

.preco-final {
    color: #ff3faa !important;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
}

/* O BOTÃO (MÁGICA AQUI) */
.btn-contratar-v3 {
    display: block !important;
    background: linear-gradient(90deg, #590696, #ff3faa) !important;
    color: #ffffff !important;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin-top: auto !important; /* O pulo do gato: empurra o botão para a última linha */
    transition: 0.3s;
}

.btn-contratar-v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 63, 170, 0.4);
}/* AJUSTE DO MENU PARA AFASTAR O INSTAGRAM DA BORDA */
nav {
    display: flex;
    align-items: center;
    justify-content: flex; /* Mantém os itens à direita */
    
    /* Aumente este valor para afastar mais ou menos da borda direita */
    padding-right: 20px !important; 
    
    gap: 20px; /* Espaço entre 'Parceiros' e o ícone */
}

/* CASO O ÍCONE ESTEJA EM UMA LISTA (UL) */
nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    
    /* Reforço da distância da borda */
    margin-right: 15px !important; 
}

/* AJUSTE ESPECÍFICO PARA O ÍCONE DO INSTAGRAM */
.nav-social-icon, .fa-instagram {
    margin-left: 10px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

/* AJUSTE PARA CELULAR (Onde a borda é mais crítica) */
@media (max-width: 768px) {
    nav {
        padding-right: 60px !important; /* Espaço menor no celular, mas sem colar */
    }
} 
/* ESTILO DO LINK DE AVALIAÇÃO NO MENU */
.nav-avaliar {
    background: rgba(255, 63, 170, 0.1); /* Fundo rosa bem suave */
    border: 1px solid #ff3faa;
    padding: 8px 15px !important;
    border-radius: 50px;
    color: #ff3faa !important;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-avaliar:hover {
    background: #ff3faa;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 63, 170, 0.5);
}

.nav-avaliar i {
    color: #ffd700; /* Estrela Dourada */
}

/* AJUSTE PARA O MENU NÃO COLAR NA BORDA */
nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 40px !important; /* Afasta o Instagram e a Avaliação da borda direita */
}

/* NO CELULAR: ESCONDER O TEXTO PARA NÃO APERTAR O MENU */
@media (max-width: 768px) {
    .nav-avaliar span {
        display: none;
    }
    .nav-avaliar {
        padding: 8px !important;
    }
} /* --- ESTILO DO BOTÃO DE AVALIAÇÃO (RETANGULAR E PEQUENO) --- */
.btn-avaliar-google {
    display: flex;
    align-items: center;
    gap: 8px; /* Espaço entre texto e estrela */
    background-color: #ff3faa; /* Rosa neon da sua marca */
    color: #ffffff !important;
    padding: 8px 16px !important; /* Tamanho pequeno e controlado */
    border-radius: 50px; /* Formato de pílula (arredondado, mas retangular) */
    font-size: 0.8rem; /* Letra menor */
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    white-space: nowrap; /* Impede que o texto quebre em duas linhas */
}

/* Efeito ao passar o mouse */
.btn-avaliar-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 63, 170, 0.5);
}

/* Estrela Dourada */
.btn-avaliar-google i {
    color: #ffd700; 
}

/* --- ESTILO DO ÍCONE DO INSTAGRAM (DE VOLTA E ROSA) --- */
.nav-instagram-icon i {
    color: #ff3faa !important; /* Rosa neon para combinar */
    font-size: 1.3rem; /* Tamanho controlado */
    transition: color 0.3s ease;
}

.nav-instagram-icon:hover i {
    color: #ffffff !important; /* Fica branco ao passar o mouse */
}

/* --- AJUSTES DO MENU PARA CELULAR --- */
@media (max-width: 768px) {
    nav ul {
        display: flex;
        align-items: center;
        gap: 15px; /* Espaço entre todos os itens */
        justify-content: flex-end; /* Mantém tudo à direita */
        padding-right: 20px !important; /* Distância confortável da borda */
    }

    /* Garante que o Instagram não fique exprimido */
    .nav-social-item {
        margin-left: 10px;
    }
}/* CONTAINER DA FRASE DE LOCALIZAÇÃO */
.localidades-header {
    width: 95%;
    background-color: transparent; /* Ou a cor que você definiu */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Linha divisória */
    
    /* ADICIONA O ESPAÇO NO CANTO ESQUERDO */
    padding: 15px 40px !important; 
    
    display: flex;
    align-items: center;
}

.localidades-header h2 {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-align: left;
}

/* AJUSTE PARA CELULAR */
@media (max-width: 768px) {
    .localidades-header {
        /* No celular, o espaço pode ser um pouco menor para caber o texto */
        padding: 10px 20px !important; 
    }
    /* CONTAINER DO MENU: AFASTANDO DA BORDA DIREITA */
nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px; /* Espaço entre os itens */
    padding-right: 25px !important; /* EMPURRA O INSTAGRAM PARA A ESQUERDA */
    list-style: none;
}

/* NOVO BOTÃO GOOGLE (RETANGULAR / PÍLULA) */
.btn-google-simples {
    background-color: #ff3faa !important; /* Rosa neon */
    color: #ffffff !important;
    padding: 6px 12px !important; /* Mais fino e elegante */
    border-radius: 8px; /* Cantos levemente arredondados (retangular) */
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap; /* Impede que o texto quebre linha */
    transition: 0.3s;
}

.btn-google-simples i {
    color: #ffd700; /* Estrela dourada */
    font-size: 0.85rem;
}

/* ÍCONE DO INSTAGRAM: GARANTINDO DISTÂNCIA */
.item-social {
    margin-left: 5px; /* Espaço extra entre o botão e o ícone */
}

.item-social i {
    color: #ff3faa !important;
    font-size: 1.2rem;
}

/* AJUSTE PARA CELULAR (MOBILE) */
@media (max-width: 768px) {
    nav ul {
        padding-right: 20px !important; /* Mantém a distância no celular */
        gap: 10px;
    }

    .btn-google-simples {
        font-size: 0.75rem; /* Letra levemente menor no celular */
        padding: 5px 10px !important;
    }
}
    .localidades-header h2 {
        font-size: 0.9rem !important;
    }
}/* Estilo Base para os ícones flutuantes */
.floating-social {
    position: fixed;
    right: 20px; /* Alinhado à direita */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Posicionamento do Instagram (Acima do WhatsApp) */
.instagram-float {
    bottom: 90px; /* O WhatsApp geralmente fica em 20px, então 90px coloca o Insta acima */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
}

/* Se você preferir o Instagram na cor Rosa Neon da marca: */
/*
.instagram-float {
    background: #ff3faa !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
*/

.instagram-float i {
    color: white;
    font-size: 30px;
}

/* Efeito ao passar o mouse */
.floating-social:hover {
    transform: scale(1.1);
}

/* AJUSTE PARA CELULAR */
@media (max-width: 768px) {
    .floating-social {
        width: 50px;
        height: 50px;
        right: 15px;
    }
    
    .instagram-float {
        bottom: 80px; /* Ajuste para não colarem no celular */
    }
    
    /* Garante que o WhatsApp esteja em bottom: 20px */
    .whatsapp-float {
        bottom: 20px !important;
    }
}/* CONTAINER PRINCIPAL DO GRUPO */
.floating-group {
    position: fixed;
    bottom: 20px; /* Distância do fundo da tela */
    right: 20px;  /* Distância da borda direita */
    z-index: 2000; /* Garante que fique acima de tudo */
    
    display: flex;
    flex-direction: column; /* Empilha os botões verticalmente */
    gap: 15px; /* Espaço exato entre o Insta e o Whats */
    align-items: center;
}

/* ESTILO BASE PARA OS DOIS BOTÕES */
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito ao passar o mouse */
.float-btn:hover {
    transform: scale(1.1);
}

/* CORES DO INSTAGRAM */
.btn-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.5);
}

.btn-insta i {
    color: white;
    font-size: 30px;
}

/* CORES DO WHATSAPP */
.btn-whats {
    background-color: #25d366; /* Verde oficial */
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}

.btn-whats i {
    color: white;
    font-size: 35px; /* Ícone do Whats ligeiramente maior */
}

/* AJUSTE PARA CELULAR (MOBILE) */
@media (max-width: 768px) {
    .floating-group {
        bottom: 15px; /* Mais perto do fundo no celular */
        right: 15px;
        gap: 10px; /* Menor espaço entre eles */
    }

    .float-btn {
        width: 50px; /* Botões menores para não atrapalhar */
        height: 50px;
    }

    .btn-insta i { font-size: 24px; }
    .btn-whats i { font-size: 28px; }
}
/* CONTAINER DO BOTÃO DO INSTAGRAM (O CÍRCULO) */
.btn-insta {
    /* MÁGICA DO FLEXBOX PARA CENTRALIZAÇÃO TOTAL */
    display: flex !important;
    align-items: center !important; /* Centraliza verticalmente */
    justify-content: center !important; /* Centraliza horizontalmente */
    
    /* Outros estilos que você já deve ter */
    width: 60px; /* Tamanho do círculo */
    height: 60px;
    border-radius: 50%; /* Faz ser um círculo */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.5);
    transition: transform 0.3s ease;
    text-decoration: none;
    
    /* IMPORTANTE: Remova paddings antigos que podem desalinhá-lo */
    padding: 0 !important; 
}

/* O ÍCONE DO INSTAGRAM */
.btn-insta i {
    color: white !important;
    font-size: 30px; /* Tamanho do ícone ajustado */
    
    /* IMPORTANTE: Remova margens antigas do ícone */
    margin: 0 !important; 
    padding: 0 !important;
    line-height: 1 !important; /* Garante que não haja espaço extra */
}