/* 
   BIO PURE - DESIGN SYSTEM
   Author: Senior Web Designer
   Style: Modern, Clean, Liquid-Inspired
*/

/* 1. VARIÁVEIS E DEFINIÇÕES GLOBAIS */
:root {
    --primary-blue: #00AEEF;    /* Extraído do lado direito do logo */
    --primary-gold: #FFD200;    /* Extraído do lado esquerdo do logo */
    --whatsapp-green: #25D366;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --white: #FFFFFF;
    --bg-light: #F9FAFB;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* 2. CABEÇALHO (STICKY HEADER) */
header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn-primary-nav {
    background: var(--primary-blue);
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.2);
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.3);
}

/* 3. HERO SECTION */
.hero {
    padding: 120px 0 40px;
    background: radial-gradient(circle at top right, rgba(0, 174, 239, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(255, 210, 0, 0.05), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text h1 span.blue { color: var(--primary-blue); }
.hero-text h1 span.gold { color: var(--primary-gold); }

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 20px;
}

.btn-main {
    background: var(--primary-blue);
    color: white;
    padding: 18px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 18px 40px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-main:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f0faff 0%, #fff 100%);
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    /* Simulação de imagem de produto */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.03);
}

/* 4. FEATURES (CARDS) */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
    display: inline-block;
}

/* 5. FOOTER & MAPA */
.main-footer {
    background-color: var(--bg-light);
    padding: 50px 0 20px;
    border-top: 1px solid #eee;
    margin-top: 50px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 3px;
    background: var(--primary-gold);
}

.footer-column.brand p {
    color: var(--text-light);
    margin: 25px 0;
    font-size: 0.95rem;
}

.social-medias {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-dark);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-5px);
}

.footer-column.links ul {
    list-style: none;
}

.footer-column.links ul li {
    margin-bottom: 15px;
}

.footer-column.links ul li a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-column.links ul li a:hover {
    color: var(--primary-blue);
    padding-left: 8px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    filter: grayscale(0.4) opacity(0.8);
    transition: 0.5s ease;
    height: 180px;
}

.map-wrapper:hover {
    filter: grayscale(0) opacity(1);
}

.address {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.address i { color: var(--primary-gold); }

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* 6. WHATSAPP FLUTUANTE & ANIMAÇÃO */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 85px;
    background: var(--text-dark);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* 7. RESPONSIVIDADE */
@media (max-width: 1024px) {
    .hero-text h1 { 
        font-size: 3.2rem; 
        margin-bottom: 15px;
    }
    .footer-grid { gap: 40px; }
}

@media (max-width: 768px) {
    header { height: 70px; }
    .nav-links { display: none; } /* Idealmente aqui entraria um menu mobile */
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-text p { margin: 0 auto 30px; margin-bottom: 25px; }
    .cta-group { justify-content: center; }
    .features { grid-template-columns: 1fr; margin-top: 40px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-column h4::after { left: 50%; transform: translateX(-50%); }
    .social-medias, .address { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .whatsapp-float { width: 55px; height: 55px; font-size: 28px; bottom: 20px; right: 20px; }
}
/* --- MENU HAMBÚRGUER (ESTILOS ADICIONAIS) --- */

.hamburger {
    display: none; /* Escondido no Desktop */
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

@media (max-width: 768px) {
    /* Garante que o ícone do hambúrguer apareça */
    .hamburger {
        display: block;
        position: relative;
        z-index: 1002; /* Fica acima do menu */
    }

    /* Ajuste do Menu Mobile */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%; /* Totalmente fora da tela à esquerda */
        width: 100%;
        height: 100vh; /* Ocupa a tela inteira */
        background-color: var(--white);
        display: flex; /* Agora usamos flex para alinhar os itens */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1001; /* Fica acima do resto da página, mas abaixo do X */
        visibility: hidden; /* Evita cliques acidentais quando escondido */
    }

    /* Quando o menu está ATIVO */
    .nav-links.active {
        left: 0; /* Desliza para o centro */
        visibility: visible;
    }

    /* Estilo dos links dentro do menu mobile */
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        /* Delays para os links aparecerem um por um (efeito sênior) */
        transition-delay: 0.3s;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
    }

    /* Esconder o botão de CTA original no mobile ou ajustá-lo */
    .btn-primary-nav {
        background: var(--primary-blue);
        padding: 15px 40px !important;
        border-radius: 10px !important;
    }

    /* Animação do X */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-hero-img {
    width: 100%;
    max-width: 500px; /* Limita o tamanho para não ficar gigante */
    height: auto;
    aspect-ratio: 1 / 1; /* Mantém o formato quadrado */
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
    border-radius: 40px; /* Mantém o estilo arredondado da sua imagem */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Sombra suave para dar profundidade */
    animation: float 6s ease-in-out infinite; /* Efeito flutuante opcional */
}

/* Efeito sutil de flutuação para um toque premium */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Estilo Sênior para o Botão de Direções */
.btn-directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px auto 20px auto;
    text-decoration: none;
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 220px;
}

.btn-directions i {
    font-size: 1.2rem;
}

.btn-directions:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.2);
}

.address {
    font-size: 0.9rem;
    justify-content: center;
    wi
    color: var(--text-light);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.address i {
    color: var(--primary-gold);
    margin-top: 4px;
}

.footer-column.map-col {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza os itens horizontalmente */
    text-align: center;  /* Centraliza os textos dentro da coluna */
}