/*
Theme Name: Mary Malaquias Studio
Theme URI: https://malaquiasvogue.com.br
Author: Mary Malaquias Studio
Author URI: https://malaquiasvogue.com.br
Description: Tema personalizado do Mary Malaquias Studio - Seu refúgio de beleza.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mary-malaquias-theme
*/

@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: 2px 0;
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 110px;
    width: auto;
    display: block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.08));
}

.logo:hover img {
    transform: scale(1.10);
}

.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.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; 
    border-color: #333333;
    color: #ede6c3; 
    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;
    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;
    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.rem);
    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;
    right: 30px;
    bottom: 30px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.18),
        0 0 0 8px rgba(37,211,102,0.08);
    transition: all 0.35s ease;
    animation: whatsappFloat 3s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.22),
        0 0 0 12px rgba(37,211,102,0.12);
}

.whatsapp-float:hover::before {
    opacity: 1;
}

.whatsapp-tooltip {
    position: absolute;
    right: 85px;
    background-color: #333333;
    color: #ede6c3;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================================= */
/* FOOTER CORRIGIDO: DISTÂNCIA REDUZIDA E MAIS CENTRALIZADO           */
/* ================================================================= */
.copy-wrapper {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 60px;
    padding-top: 40px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 420px;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #ede6c3;
    line-height: 1;
}

.brand-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: rgba(237, 230, 195, 0.7);
    line-height: 1.6;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 18px;
}

.brand-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 1px;
    background-color: #c1803e;
}

.footer-actions {
    display: flex;
    align-items: center; 
    gap: 30px;          
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 25px; 
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    color: #c1803e;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    color: #c1803e;
    transform: translateY(-2px);
}

.footer-social a:hover svg {
    transform: scale(1.15);
}

.btn-privacy-footer {
    background-color: #f5f5f5;
    border: none;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-privacy-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    background-color: #ffffff;
    color: #c1803e;
}

.copyright {
    text-align: center;
    margin-top: 35px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
}

/* 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: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@keyframes whatsappFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0px); }
}

/* Seção Academy */
.academy-bg {
    background-color: var(--brand-white);
}

.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; 
    color: #444;
    margin-bottom: 15px;
}

.academy-list {
    list-style: none;
    margin-bottom: 50px; 
}

.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; 
    font-weight: bold;
}

.academy-full-section {
    background-color: var(--brand-beige); 
    overflow: hidden;
}

.academy-text-content {
    padding: 100px 10% 100px 12%; 
    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; 
    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;
}

.inline-logo {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-left: 5px;
    display: inline-block;
    filter: brightness(1) invert(0); 
}

/* Seção Gift Cards */
.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; 
    font-weight: 600;
    margin-bottom: 15px;
}

.gift-text-content .section-title {
    font-size: 3.2rem; 
    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; 
    padding-left: 20px;
    font-style: italic;
}

.gift-text-content .btn-primary,
.shop-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);
    text-decoration: none;
}

.gift-text-content .btn-primary:hover,
.shop-text-content .btn-primary:hover {
    background-color: transparent;
    color: var(--brand-dark);
    transform: translateX(10px); 
}

.gift-image-column {
    background-color: #ede6c3; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.gift-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.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); 
}

.gift-image-wrapper .image-accent {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    border: 2px solid #c1803e; 
    z-index: 1;
}

@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 {
    flex: 1;
    padding: 15px 25px;
    border: 1px solid #ddd;
    background-color: #ffffff;
    font-size: 1rem;
    font-family: var(--font-sans);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #c1803e; 
    background-color: #ffffff;
}

.newsletter-form button {
    background-color: #c1803e; 
    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; 
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.newsletter-form button:hover {
    color: #ede6c3; 
    border-color: #333333;
}

.newsletter-form button:hover::before {
    width: 100%; 
}

/* 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-divider {
    margin: 0 15px;
    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); 
}

.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; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.8); 
    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;
}

.modal-privacy-body {
    padding: 30px;
    max-height: 400px;
    overflow-y: auto; 
    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;
}

.btn-privacy-footer .dot {
    color: #c1803e;
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1;
}

/* Responsividade de Mídia Geral */
@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-image-column { padding: 40px 5%; }
    
    .gift-image-wrapper {
        max-width: 100%;
        padding-bottom: 25px;
        padding-right: 25px;
    }

    .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; 
        max-width: 650px;
        margin: 40px auto 0;
    }
    
    .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;
        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; 
        color: #ffffff; 
        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 {
        text-align: center;
        height: auto;
        padding: 140px 0 80px;
    }

    .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; }
}

/* ================================== */
/* MOBILE FIX DEFINITIVO (RODAPÉ)     */
/* ================================== */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; }
    .container { padding: 0 20px !important; }

    /* HEADER */
    .nav-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .nav-center {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-links a { font-size: 0.75rem; }
    .logo img { height: 50px; }

    /* HERO */
    .hero {
        height: auto !important;
        padding: 120px 0 60px;
    }

    .hero-container {
        padding: 0 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    .hero h1 span { white-space: normal !important; }
    .btn-hero-pill { padding: 14px 25px; font-size: 0.75rem; }

    /* SOBRE */
    .about-section { max-height: none !important; }
    .about-grid { display: flex !important; flex-direction: column; }
    .about-image { height: 300px; }
    .about-content { padding: 30px 20px !important; }
    .about-text-wrapper { margin: 0 !important; padding: 0 !important; }

    /* SERVIÇOS */
    .services-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .service-item {
        flex-wrap: wrap;
        gap: 5px;
    }

    .service-line { display: none; }
    .service-price { width: 100%; text-align: right; }

    /* DIFERENCIAIS */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* ACADEMY / GIFT / SPLIT */
    .split-section-full { grid-template-columns: 1fr !important; }
    .content-image { height: 300px !important; }

    .academy-text-content,
    .gift-text-content {
        padding: 40px 20px !important;
        text-align: center;
    }

    /* LOJA */
    .grid-2-special { grid-template-columns: 1fr !important; }
    .shop-image-wrapper img { height: 350px; }

    /* TEAM */
    .team-member { flex: 0 0 260px; }
    .member-image { height: 350px; }

    /* MODAL */
    .modal-content {
        width: 95%;
        padding: 25px 15px;
    }

    /* NEWSLETTER */
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    /* FIX CENTRALIZAÇÃO DOS ELEMENTOS DO RODAPÉ MOBILE */
    .copy-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding-top: 30px;
    }

    .footer-brand-block { 
        align-items: center;
        text-align: center;
    }
    
    .brand-name { font-size: 1.8rem; }
    .brand-tagline { padding-left: 0; }
    .brand-tagline::before { display: none; }

    .footer-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .footer-social {
        justify-content: center;
        gap: 25px;
        width: 100%;
    }

    .btn-privacy-footer {
        width: auto; 
        justify-content: center;
    }
}