@font-face {
    font-family: 'Safira March Personal';
    src: url('Fonts/SafiraMarchPersonal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --brand-beige: #ede6c3;
    --brand-dark: #333333;
    --brand-white: #ede6c3;
    --text-main: #333333;
    --font-serif: 'Safira March Personal', serif; 
    --font-sans: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-sans); color: var(--text); line-height: 1.6; overflow-x: hidden; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 120px 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

h1, h2, h3 { 
    font-family: var(--font-serif); 
    font-weight: 400; 
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Header */
.main-header {
    background-color: var(--brand-beige);
    padding: 15px 0;
}

.logo { color: var(--light); text-decoration: none; font-size: 1.4rem; font-family: var(--font-serif); }

.logo img {
    height: 75px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-center {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--brand-dark);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.btn-cta-header {
    border: 1px solid #2a2a2a;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 0.7rem;
    color: var(--brand-dark);
}

.btn-cta-header:hover {
    background-color: #333333; /* Muda para o cinza escuro no hover */
    border-color: #333333;
    color: #ede6c3; /* Texto volta para o bege claro */
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    width: 100vw;
    height: 100vh;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #000;
}

.hero-container {
    max-width: 100% !important;
    width: 100%;
    padding: 0 8%;
    position: relative;
    z-index: 2;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}

.hero-text-wrapper {
    max-width: 900px;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    color: #ffffff;
    line-height: 1.1;
    max-width: 900px;
}

.hero h1 span {
    display: block;
    font-style: normal;
    font-weight: 400;
    text-transform: none;
    white-space: nowrap;
}

.hero p {
    color: var(--brand-white);
    font-size: 1.1rem;
    margin-top: 15px;
    max-width: 450px;
    font-weight: 300;
}

.btn-hero-pill {
    display: inline-block;
    background-color: #c1803e; 
    color: var(--brand-dark);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 2px;
    margin-top: 25px;
   font-size: 0.8rem;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-hero-pill:hover {
    transform: scale(1.05);
    background-color: #c1803e;
    box-shadow: 0 6px 20px rgba(51, 51, 51, 0.5);
}


.hero .btn-primary {
    background-color: #c1803e;
    color: #ffffff;
    padding: 18px 35px; /* Um pouco maior que o do cabeçalho */
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.hero .btn-primary:hover {
    background-color: #333333;
    color: #ede6c3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.about-section {
    width: 100vw;
    height: auto;
    max-height: 100vh;
    background-color: white;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
}

.about-image {
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    padding: 40px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-wrapper {
    max-width: 500px;
    margin-left: 8%;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-dark);
    margin-bottom: 20px;
    opacity: 0.7;
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-text .highlight {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--brand-dark);
}

.btn-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--brand-dark);
    padding-bottom: 5px;
    transition: opacity 0.3s;
}

.btn-link:hover {
    opacity: 0.6;
}

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.service-card { height: 550px; background-size: cover; background-position: center; position: relative; display: flex; align-items: flex-end; padding: 40px; transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.service-card:hover { transform: scale(1.02); }
.services-list-section {
    padding: 100px 5%;
    background-color: white;
}

.services-header {
    margin-bottom: 60px;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-category h4 {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--brand-dark);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 10px;
}

.service-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
}

.service-name {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--brand-dark);
    font-weight: 400;
    white-space: nowrap;
}

.service-line {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(0,0,0,0.2);
    margin: 0 15px;
}

.service-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--brand-dark);
}
.card-info h3 { color: var(--light); font-size: 2rem; margin-bottom: 10px; }
.card-info a { color: var(--light); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 1px; }

/* Botão Flutuante WhatsApp */
.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: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Animação de pulsação suave */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Ajuste para telas pequenas */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}

/* Seção Academy */
.academy-bg {
    background-color: var(--brand-white);
}

.section-subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.academy-content {
    padding-left: 40px;
}

.academy-description {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.8;
}

.academy-description p {
    font-size: 1.15rem;
    line-height: 1.9; /* Texto mais espaçado para leitura leve */
    color: #444;
    margin-bottom: 15px;
}

.academy-list {
    list-style: none;
    margin-bottom: 50px; /* Espaço generoso antes do botão */
}

.academy-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.academy-list li span {
    color: #c1803e; /* Destaque no check com a cor da paleta */
    font-weight: bold;
}

.academy-full-section {
    background-color: var(--brand-beige); /* Usando o bege da paleta */
    overflow: hidden;
}

.academy-text-content {
    padding: 100px 10% 100px 12%; /* Aumentado para o texto não ficar colado */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.academy-text-content .section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--brand-dark);
}

.split-section-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-section-full .content-image {
    width: 100%;
    height: 100%;
}

.split-section-full .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a foto preencher todo o lado direito */
    display: block;
}

.academy-text-content .btn-primary {
    align-self: flex-start;
    padding: 18px 40px;
    background-color: #c1803e;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 4px;
}

.academy-text-content .btn-primary:hover {
    background-color: var(--brand-dark);
    transform: translateY(-3px);
}

.btn-outline { border: 1px solid var(--light); padding: 15px 40px; color: var(--light); text-decoration: none; display: inline-block; margin-top: 30px; transition: 0.3s; }
.btn-outline:hover { background: var(--light); color: var(--dark); }

.main-footer {
    background-color: #ffffff;
    border-top: 1px solid #f2f2f2;
}


.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; margin-bottom: 50px; }
.flex-form { display: flex; justify-content: center; gap: 0; max-width: 500px; margin: 30px auto; }
.flex-form input { padding: 15px; border: 1px solid #ddd; width: 70%; border-radius: 0; }
.flex-form button { background: var(--dark); color: var(--light); border: none; padding: 0 30px; cursor: pointer; text-transform: uppercase; }

/* Seção do Time */
.team-container-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.team-section {
    padding: 100px 0;
    background-color: var(--brand-white);
    overflow-x: hidden;
}

.team-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    overflow-x: auto;
    padding: 40px 10%;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
}

.team-grid:active {
    cursor: grabbing;
}

.team-grid::-webkit-scrollbar {
    display: none;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--brand-beige);
    color: var(--brand-dark);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-button:hover {
    background: var(--brand-dark);
    color: white;
}

.scroll-button.left { left: 2%; }
.scroll-button.right { right: 2%; }

.team-member {
    flex: 0 0 350px;
    text-align: left;
    cursor: pointer;
}

.member-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    height: 500px;
    background-color: #f0f0f0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-overlay span {
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--brand-dark);
}

.team-member p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.team-member:hover img {
    transform: scale(1.08);
}

.team-member:hover .member-overlay { opacity: 1; }

/* Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto; 
    padding: 50px;
    width: 90%;
    max-width: 600px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: modalFadeIn 0.4s ease;
}

.modal-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}

.modal-image-side {
    flex: 1;
    max-width: 300px;
}

.modal-image-side img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.modal-text-side {
    flex: 1.5;
}

.modal-text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--brand-dark);
}

.modal-text-side h4 {
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.modal-text-side .divider {
    height: 1px;
    background: #ddd;
    margin-bottom: 20px;
}

.modal-text-side p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 35px;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--brand-dark);
}

/* Seção Diferenciais*/
.bg-light {
    background-color: #c1803e;
    color: #ffffff;
}

#diferenciais h2.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 80px !important;
}

#diferenciais h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #ede6c3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    text-align: center;
    padding-bottom: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333333;
    border-radius: 50%;
    color: #ede6c3;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.feature-icon svg {
    width: 42px;
    height: 42px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333333;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-item p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.25rem;
    max-width: 320px;
    margin: 0 auto;
}

.split-section-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.split-section-full .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.inline-logo {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-left: 5px;
    display: inline-block;
    filter: brightness(1) invert(0); 
}

/* Seção Gift Cards - Refinada */
.gift-section {
    background-color: #ffffff;
    overflow: hidden;
}

.gift-text-content {
    padding: 100px 10% 100px 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.gift-text-content .section-subtitle {
    color: #c1803e; /* Destaque na cor da paleta */
    font-weight: 600;
    margin-bottom: 15px;
}

.gift-text-content .section-title {
    font-size: 3.2rem; /* Título bem imponente */
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--brand-dark);
}

.gift-text-content .description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--brand-dark);
    font-weight: 400;
}

.gift-text-content .details {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 40px;
    border-left: 3px solid #c1803e; /* Detalhe lateral de sofisticação */
    padding-left: 20px;
    font-style: italic;
}

/* Customização do Botão para o Gift Card */
.gift-text-content .btn-primary {
    background-color: var(--brand-dark);
    color: #ede6c3;
    padding: 20px 40px;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: 0.4s;
    border: 1px solid var(--brand-dark);
}

.gift-text-content .btn-primary:hover {
    background-color: transparent;
    color: var(--brand-dark);
    transform: translateX(10px); /* Efeito de movimento lateral */
}

/* Coluna da Imagem com Efeito de Profundidade */
.gift-image-column {
    background-color: #ede6c3; /* Fundo bege para contrastar com o branco do texto */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.gift-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    /* Removemos o padding fixo para controlar via transform */
}

.gift-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.2);
    border-radius: 2px;
    transition: transform 0.5s ease;
}

.gift-image-wrapper:hover img {
    transform: translate(-10px, -10px); /* Efeito flutuante ao passar o mouse */
}

/* O quadrado decorativo atrás da foto */
.gift-image-wrapper .image-accent {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    border: 2px solid #c1803e; /* Em vez de bloco sólido, uma moldura elegante */
    z-index: 1;
}

/* Ajuste Responsivo */
@media (max-width: 992px) {
    .gift-text-content .section-title {
        font-size: 2.5rem;
    }
    
    .gift-image-column {
        padding: 60px 10%;
    }
}

/* Seção Franquia */
.franchise-section-simple {
    padding: 120px 0;
    background-color: #fcfbf7;
}

.franchise-simple-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.franchise-simple-content .description {
    font-size: 1.4rem;
    color: var(--brand-dark);
    margin-top: 20px;
    line-height: 1.4;
}

.franchise-simple-content .details {
    font-size: 1.1rem;
    color: #666;
    margin: 20px 0 40px;
}

.franchise-benefits-centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.benefit-badge {
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brand-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.franchise-simple-content .btn-primary {
    padding: 18px 45px;
}

/* Seção Shop */
.shop-section {
    background-color: #f9f8f3;
    overflow: hidden;
}

.grid-2-special {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.shop-image-wrapper {
    position: relative;
    padding-right: 40px;
}

.shop-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-accent {
    position: absolute;
    top: 40px;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: var(--brand-beige);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1;
}

.shop-image-wrapper:hover img {
    transform: translate(-15px, -15px);
}

.shop-subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #a59d84;
    margin-bottom: 15px;
    font-weight: 600;
}

.shop-text-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.shop-features {
    margin: 30px 0;
}

.s-feature {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.s-feature span {
    color: #a59d84;
    font-weight: bold;
}

/* --- FOOTER & NEWSLETTER --- */

.main-footer {
    background-color: var(--brand-dark);
    color: var(--brand-white);
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background-color: #c1803e;
}

.newsletter-section h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.newsletter-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--brand-white);
}

.newsletter-subtitle {
    font-family: var(--font-sans);
    font-weight: 200;
    letter-spacing: 1px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form input:focus {
    border-color: #c1803e; /* Cor da marca ao clicar */
    background-color: #ffffff;
}

.newsletter-form button {
    background-color: #c1803e; /* Cor base (dourado/acobreado) */
    color: #ffffff;
    border: 1px solid #c1803e;
    padding: 0 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #333333; /* Cor que "corre" por trás */
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.newsletter-form button:hover {
    color: #ede6c3; /* Cor do texto no hover (bege da paleta) */
    border-color: #333333;
}

.newsletter-form button:hover::before {
    width: 100%; /* Faz a cor escura preencher o botão */
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
}

.footer-main {
    padding: 60px 0;
    border-bottom: 1px solid #f2f2f2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
}

.brand-divider {
    margin: 0 15px;
    color: #c1803e;
}

.brand-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 0.5px;
    text-transform: none;
}

.footer-social a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 30px;
    transition: color 0.3s;
}

.footer-social a:hover {
    opacity: 0.6;
    color: #c1803e;
}

.footer-copy {
    text-align: center;
    font-size: 0.7rem;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.footer-legal-info {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Linha sutil para separar */
}

.footer-legal-info p {
    font-size: 0.85rem;
    color: #999;
    margin: 5px 0;
    letter-spacing: 0.5px;
    font-family: var(--font-sans);
}

/* Estilos do Modal de Privacidade */
.modal-privacy {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.8); /* Fundo escuro transparente */
    backdrop-filter: blur(5px);
}

.modal-privacy-content {
    background-color: #ffffff;
    margin: 5% auto;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-privacy-header {
    padding: 25px 30px;
    border-bottom: 1px solid #ede6c3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-privacy-header h2 {
    color: #c1803e;
    font-size: 1.8rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333333;
}

.modal-privacy-body {
    padding: 30px;
    max-height: 400px;
    overflow-y: auto; /* Scroll caso o texto seja longo */
    color: #444;
}

.modal-privacy-body h3 {
    color: #333333;
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.modal-privacy-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-privacy-footer {
    padding: 20px 30px;
    border-top: 1px solid #ede6c3;
    text-align: right;
}

.modal-privacy-footer .btn-primary {
    padding: 12px 30px;
    cursor: pointer;
}

.copy-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.copyright {
    font-size: 0.85rem;
    color: #999;
}

/* O Botão de Privacidade Estilizado */
.btn-privacy {
    text-decoration: none;
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-privacy-footer {
    text-decoration: none;
    color: #777;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    border: 1px solid #eee;
    border-radius: 50px; /* Formato pílula mais moderno */
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
}

.btn-privacy-footer .dot {
    color: #c1803e;
    font-size: 1.2rem;
}

.btn-privacy-footer:hover {
    border-color: #c1803e;
    color: #c1803e;
    box-shadow: 0 4px 15px rgba(193, 128, 62, 0.1);
    transform: translateY(-2px);
}

.btn-privacy span {
    color: #c1803e; /* O ponto dourado da paleta */
}

.btn-privacy:hover {
    color: #c1803e;
    border-color: #c1803e;
    background-color: rgba(193, 128, 62, 0.05); /* Um leve brilho ao fundo */
    transform: translateY(-1px);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .hero h1 span {
        white-space: normal;
        font-size: 2.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-text-wrapper {
        margin-left: 0;
        padding: 20px;
    }

    .academy-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .split-section-full {
        grid-template-columns: 1fr;
    }
    
    .split-section-full .content-image {
        height: 400px;
        order: 1;
    }
    
    .academy-text-content {
        padding: 40px 5%;
        order: 2;
    }
    
    .split-section-full .content-text {
        order: 2;
        padding: 40px 5%;
    }

    .gift-text-content {
        padding: 60px 5%;
        order: 2;
    }
    
    .gift-section .content-image {
        height: 450px;
        order: 1;
    }
    
    .gift-options {
        flex-direction: column;
        gap: 20px;
    }

    .gift-image-column {
        padding: 40px 5%;
    }
    
    .gift-image-wrapper {
        max-width: 100%;
        padding-bottom: 25px;
        padding-right: 25px;
    }

        .franchise-text-content {
        padding: 60px 5%;
        order: 2;
    }
    
    .franchise-section .content-image {
        height: 400px;
        order: 1;
    }

    .grid-2-special {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .shop-image-wrapper {
        padding-right: 0;
        order: 1;
    }
    
    .shop-text-content {
        order: 2;
        text-align: center;
    }
    
    .shop-text-content h2 {
        font-size: 2.5rem;
    }
    
    .s-feature {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .about-image {
        height: 350px; 
        width: 100%;
    }

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-text-wrapper {
        margin: 0 !important;
        width: 100% !important;
        padding: 40px 20px !important;
        position: static !important;
        box-shadow: none;
    }

    .about-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero h1 span {
        white-space: normal;
    }
    .scroll-button { display: none; }
    .team-grid { padding: 20px 5%; }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #diferenciais h2.section-title {
        font-size: 2.5rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-item h3 {
        font-size: 1.6rem;
    }

    .newsletter-title { font-size: 1.8rem; }
    
    .newsletter-form {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 15px; /* Espaço entre o campo e o botão para um look mais leve */
        max-width: 650px;
        margin: 40px auto 0;
    }
    
    .footer-content, .copy-wrapper {
            flex-direction: column;
            text-align: center;
            gap: 30px;
    }
    
    .footer-social a {
        margin: 0 15px;
    }
    
    .brand-divider { display: none; }
    .brand-tagline { display: block; margin-top: 10px; }

    .logo img {
        height: 40px; 
    }

    .footer-legal-info {
        margin-bottom: 20px;
    }
    
    .footer-legal-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .franchise-benefits-centered {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        flex: 1;
        padding: 15px 25px;
        border: 1px solid #ddd;
        background-color: transparent;
        font-size: 1rem;
        font-family: var(--font-sans);
        outline: none;
        transition: all 0.3s ease;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-form button {
        padding: 18px;
    }
}

/* --- RESPONSIVIDADE TOTAL --- */

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    h1 { font-size: 2.8rem !important; }
    h2 { font-size: 2.2rem !important; }
    h3 { font-size: 1.8rem !important; }

    .container {
        padding: 0 20px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .grid-2, .about-grid, .split-section-full, .grid-2-special {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .nav-wrapper {
        flex-direction: column;
        padding: 15px 0;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li a {
        font-size: 0.8rem;
    }

    .nav-right {
        width: 100%;
        text-align: center;
    }

    .btn-cta-header {
    background-color: #c1803e; /* Cor de destaque da paleta */
    color: #ffffff; /* Branco para contraste e legibilidade */
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #c1803e;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        text-align: center;
        height: auto;
        padding: 140px 0 80px;
    }

    .hero-content {
        max-width: 100%;
    }

    .split-section-full .content-image {
        height: 350px !important;
    }

    .split-section-full .content-text {
        order: 2;
    }
    .split-section-full .content-image {
        order: 1;
    }

    /* Seção Shop/Loja */
    .shop-image-wrapper {
        padding-right: 0 !important;
        padding-bottom: 30px;
    }

    .image-accent {
        width: 90% !important;
        height: 90% !important;
    }
}

@media (max-width: 768px) {
    .modal-layout {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .modal-image-side {
        max-width: 200px;
        margin: 0 auto;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 5% auto;
    }

    .modal-text-side h2 {
        font-size: 2rem;
    }
}