@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --color-primary: #6A1E2B; /* Vinho/Bordô */
    --color-bg: #FDF9F6; /* Bege super claro */
    --color-text: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

/* Utilitários e Animações Premium */
.text-primary { color: var(--color-primary); }
.bg-primary { background-color: var(--color-primary); }

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 30, 43, 0.15) 0%, rgba(253, 249, 246, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header Shrink */
header {
    transition: all 0.3s ease;
}
header.shrink {
    background-color: rgba(255, 253, 245, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}
img.logo-img {
    height: 85px;
    transition: height 0.3s ease;
}
header.shrink img.logo-img {
    height: 55px;
}
@media (max-width: 768px) {
    img.logo-img { height: 60px; }
    header.shrink img.logo-img { height: 60px; }
    
    h1 { 
        font-size: 1.85rem !important; 
        line-height: 1.3 !important; 
    }
    h2 { 
        font-size: 1.5rem !important; 
        line-height: 1.3 !important; 
    }
    p {
        font-size: 0.95rem !important; 
        line-height: 1.4 !important;
    }
    section:not(:first-of-type) {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* Animação Suave Float */
@keyframes floatAnim {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.animate-float-slow {
    animation: floatAnim 4s ease-in-out infinite;
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Novo Estilo Hero Banner */
.hero-mask {
    mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}

.brush-highlight {
    position: relative;
    display: inline-block;
    color: var(--color-primary);
}

.brush-highlight::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: -5%;
    width: 110%;
    height: 10px;
    background: rgba(212, 175, 55, 0.3); /* Dourado suave */
    z-index: -1;
    border-radius: 100% 10% 100% 10%;
    transform: rotate(-1deg);
}

@media (max-width: 768px) {
    .hero-banner-height {
        height: 280px;
    }
}
@media (min-width: 769px) {
    .hero-banner-height {
        height: 520px;
    }
}

/* Overlay Map */
.map-container {
    position: relative;
    width: 100%;
    height: 350px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(106, 30, 43, 0.1);
    pointer-events: none;
}
