/* =========================================
   VARIÁVEIS E CONFIGURAÇÕES GERAIS
   ========================================= */
:root {
    --primary: #78866b;       /* Verde Sálvia */
    --secondary: #2a9d8f;     /* Verde Persa/Detalhes */
    --dark: #2c3e50;
    --light: #f9fbfb;
    --white: #ffffff;
    --text-gray: #5a6c7c;
    --black: #1a1a1a;
    --font-title: 'Black Mango', 'Playfair Display', serif; 
    --font-body: 'Poppins', sans-serif;
    --section-padding: 100px;
    --container-padding: 20px;
}

/* Configuração da Fonte Black Mango */
@font-face {
    font-family: 'Black Mango';
    src: local('Black Mango'), url('fonts/BlackMango-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; 
}

body {
    font-family: var(--font-body);
    color: var(--text-gray);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--primary);
    line-height: 1.2;
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   CLASSES UTILITÁRIAS
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.2);
}

.btn-primary:hover {
    background-color: #218c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.4);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-outline-dark {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-dark:hover {
    background-color: var(--primary);
    color: var(--white);
}

.section-padding {
    padding: var(--section-padding) 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   HEADER & NAVEGAÇÃO
   ========================================= */
header {
    background-color: var(--white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

header.scrolled {
    padding: 10px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    z-index: 1001;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 85px;        
    width: auto;         
    object-fit: contain; 
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a.active {
    color: var(--secondary);
    font-weight: 600;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn, .mobile-cta {
    display: none;
}

/* =========================================
   HERO SECTION (HOME)
   ========================================= */
.hero {
    position: relative;
    background: url('assets/img/flores_header.jpeg') no-repeat center center/cover;
    background-attachment: scroll;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 200px;      
    padding-bottom: 200px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px 0;
}

.hero h4 {
    color: var(--secondary);
    font-family: var(--font-body);
    letter-spacing: 3px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* =========================================
   SERVICES CARDS (HOME)
   ========================================= */
.services-cards {
    margin-top: -80px; 
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--secondary);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(120, 134, 107, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.8rem;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card p {
    flex-grow: 1;
    margin-bottom: 20px;
}

.card a {
    color: var(--secondary);
    font-weight: 600;
    display: inline-block;
}

/* =========================================
   SEÇÕES GERAIS (SOBRE, HISTÓRIA, SAGRADO)
   ========================================= */
.about-section {
    background-color: var(--white);
    overflow: hidden;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-img {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.split-img img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    width: 100%;
    object-fit: cover;
}

.split-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    top: 20px;
    left: -20px;
    z-index: -1;
    border-radius: 12px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.history-section {
    background-color: var(--light);
}

.founder-quote {
    font-family: var(--font-title);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    color: var(--primary);
    margin: 40px 0 0;
    line-height: 1.4;
    padding: 0 20px;
}

.sacred-section {
    background-color: #f4f4f2;
    color: var(--text-gray);
}

.sacred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sacred-text h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.sacred-text p, .sacred-list li {
    color: var(--dark);
}

.sacred-list i {
    color: var(--secondary);
}

.sacred-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.sacred-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section {
    background-color: var(--white);
}

.pricing-card {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    position: relative;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card.featured {
    background: var(--white);
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    border-radius: 0 15px 0 10px;
    font-weight: 600;
}

.pricing-features {
    margin: 25px 0 35px;
    width: 100%;
    text-align: left;
    flex-grow: 1;
}

/* =========================================
   FOOTER
   ========================================= */
.footer-area {
    background-color: var(--primary); 
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: var(--font-title);
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    /* Força logo branca */
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--white) !important;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--secondary) !important;
    transform: translateX(5px);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* =========================================
   PÁGINAS INTERNAS
   ========================================= */

/* --- PAGE HERO PADRÃO --- */
.page-hero {
    position: relative;
    background: url('assets/img/flores_header.jpeg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: var(--font-title);
    font-size: 3.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* --- ESTILOS DE SERVIÇOS --- */
.bg-light { background-color: #fafafa; }
.bg-cream { background-color: #f4f4f2; }

.services-include-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.services-include-box h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.check-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.check-list-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dark);
}

.check-list-grid i {
    color: var(--secondary);
    background: rgba(42, 157, 143, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.note {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* --- GRID DE EVENTOS --- */
.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.event-img {
    height: 250px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.event-card:hover .event-img img {
    transform: scale(1.05);
}

.event-text {
    padding: 30px;
}

.event-text h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--primary);
}

.mb-large { margin-bottom: 80px; }
.reverse-layout { flex-direction: row-reverse; }

/* --- CARDS INFORMATIVOS --- */
.info-card { text-align: left; }
.info-list { margin: 20px 0; }
.info-list li { font-size: 0.9rem; margin-bottom: 8px; color: var(--dark); }
.info-list i { font-size: 0.5rem; color: var(--secondary); vertical-align: middle; margin-right: 8px; }
.btn-link { color: var(--primary); font-weight: 600; text-decoration: underline; font-size: 0.95rem; }
.btn-link:hover { color: var(--secondary); }

/* --- PÁGINA SAGRADO --- */
.quote-box {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-top: 30px;
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--primary);
    font-style: italic;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.photo-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

.photo-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%; 
    border: 1px solid #f0f0f0;
}

.photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.photo-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content { padding: 20px; }
.card-content h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; }
.card-content p { font-size: 0.9rem; color: var(--text-gray); line-height: 1.5; }

.gallery-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 20px;
}

.mosaic-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.mosaic-item:hover img { transform: scale(1.03); }
.mosaic-item.large { grid-column: 1; grid-row: 1 / 3; }
.mosaic-item.medium { grid-column: 2; }

/* --- PÁGINA CONTATO --- */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--secondary);
}

.contact-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: #f4f4f2; 
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: 0.3s;
}

.contact-card:hover .icon-box {
    background-color: var(--primary);
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-card .link-text {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.contact-card.highlight {
    border: 2px solid var(--secondary);
    background: #fdfdfd;
}

.centered-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.payment-section .big-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.3;
}

.payment-section h2 { margin-bottom: 20px; }

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.payment-methods span {
    background: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid #ddd;
    color: var(--dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-methods i { color: var(--secondary); }

/* --- BOTÃO FLUTUANTE WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================
   ANIMAÇÕES
   ========================================= */
.fade-in, .fade-in-left, .fade-in-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}
.fade-in { transform: translateY(30px); }
.fade-in-left { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }
.visible { opacity: 1; transform: translate(0); }

/* =========================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================= */

@media (max-width: 1024px) {
    :root { 
        --section-padding: 80px; 
    }
    .split-layout, .sacred-grid { gap: 40px; }
    .pricing-card.featured { transform: scale(1); }
    .photo-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { 
        --section-padding: 60px;
    }

    .section-title h2 { font-size: 2rem; }
    .logo img { height: 55px; }

    /* Menu Mobile */
    .mobile-menu-btn {
        display: block; font-size: 1.5rem; color: var(--primary); cursor: pointer; z-index: 1002;
    }
    .desktop-cta { display: none; }
    .mobile-cta { display: block; margin-top: 20px; width: 100%; }

    .nav-menu {
        position: fixed; top: 0; right: 0; width: 80%; max-width: 300px;
        height: 100vh; background: var(--white); flex-direction: column;
        padding: 100px 30px 30px; box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        align-items: flex-start; z-index: 999;
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-links { flex-direction: column; width: 100%; gap: 20px; }
    .nav-links a { font-size: 1.1rem; display: block; padding: 10px 0; border-bottom: 1px solid #eee; }

    /* Hero */
    .hero { background-position: 70% center; text-align: center; justify-content: center; padding-top: 100px; }
    .hero-content { margin: 0 auto; }
    .hero-btns { justify-content: center; }

    /* Page Hero */
    .page-hero { height: 250px; }
    .page-hero h1 { font-size: 2rem; }

    /* Grids & Layouts */
    .services-cards { margin-top: 0; background-color: var(--light); padding-top: 40px; }
    .cards-grid { grid-template-columns: 1fr; padding: 0 10px; }
    .split-layout, .sacred-grid, .contact-grid {
        grid-template-columns: 1fr; flex-direction: column; text-align: center;
    }
    .split-layout { flex-direction: column-reverse; }
    .split-img::before { display: none; }
    .sacred-grid { display: flex; flex-direction: column-reverse; }
    .sacred-list li { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-logo { margin: 0 auto 20px auto; }
    .footer-contact p { justify-content: center; }
    
    .event-grid, .reverse-layout, .check-list-grid { grid-template-columns: 1fr; flex-direction: column; }
    .reverse-layout { flex-direction: column-reverse; }
    
    .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
    .mosaic-item.large, .mosaic-item.medium { grid-column: auto; grid-row: auto; height: 300px; }
    
    .photo-cards-grid { grid-template-columns: 1fr; }
    
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 25px; }
    
    .payment-methods { flex-direction: column; align-items: center; }
}