* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f4c400;
    --primary-dark: #1F1F1F;
    --secondary: #D4A574;
    --light: #FFF8F0;
    --dark: #2C1810;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --footer-bg: #1F1F1F;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* ========== HEADER ========== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 0;
    font-size: 12px;
    width: 100%;
    z-index: 1002;
}

.top-bar-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.top-bar-info a, .top-bar-info span {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.top-bar-info a:hover {
    opacity: 0.8;
}

.top-bar-info i {
    font-size: 12px;
}

.main-header {
    background: var(--white);
    padding: 10px 0;
    box-shadow: var(--shadow);
    width: 100%;
    z-index: 1001;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* DESKTOP (header fixo) */
@media (min-width: 769px) {
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
    }
    
    .main-header {
        position: fixed;
        top: 32px;
        left: 0;
    }
    
    body {
        padding-top: 90px;
    }
}

/* CELULAR (header normal, não fixo) */
@media (max-width: 768px) {
    .top-bar,
    .main-header {
        position: relative;
        top: auto;
    }
    
    body {
        padding-top: 0 !important;
    }
}

/* ========== LOGO HEADER ========== */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    max-height: 45px;
    object-fit: contain;
    display: block;
}

.logo-text h1 {
    font-size: 20px;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
}

.logo-text p {
    font-size: 9px;
    color: var(--gray);
    letter-spacing: 2px;
    margin: 0;
}

/* ========== LOGO DENTRO DO MENU MOBILE (TOGGLE) ========== */
.menu-logo-mobile-item {
    display: none;
}

@media (max-width: 768px) {
    .menu-logo-mobile-item {
        display: block !important;
        width: 100% !important;
        list-style: none !important;
    }
    
    .menu-logo-mobile {
        text-align: center !important;
        padding: 0 0 20px 0 !important;
        margin-bottom: 20px !important;
        border-bottom: 2px solid var(--primary) !important;
    }
    
    .menu-logo-img-mobile {
        height: 80px !important;
        width: auto !important;
        max-height: 80px !important;
        object-fit: contain !important;
    }
}

@media (max-width: 480px) {
    .menu-logo-img-mobile {
        height: 70px !important;
        max-height: 70px !important;
    }
}

/* ========== MENU ========== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 14px;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.menu-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1002;
}

.menu-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 3px;
}

.menu-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.menu-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

section {
    padding: 80px 0;
    width: 100%;
}

/* ========== HERO ========== */
.hero {
    min-height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.hero-content {
    width: 100%;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BOTÕES ========== */
.btn-primary, .btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background: #000000;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: #000000;
    color: var(--primary);
    border-color: #000000;
}

.btn-arteterapia {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 16px;
}

.btn-arteterapia:hover {
    background: #000000;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-comprar {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-comprar:hover {
    background: #000000;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-mapa {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    border-radius: 25px;
    transition: var(--transition);
    text-align: center;
}

.btn-mapa i {
    color: var(--dark);
    margin-right: 8px;
    transition: var(--transition);
}

.btn-mapa:hover {
    background: #000000;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-mapa:hover i {
    color: var(--primary);
}

.btn-enviar {
    padding: 12px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: var(--transition);
}

.btn-enviar:hover {
    background: #000000;
    color: var(--primary);
}

/* ========== SECTIONS ========== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 15px;
}

.linha {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 18px;
}

/* ========== BIOGRAFIA ========== */
.biografia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.biografia-texto p {
    margin-bottom: 20px;
    font-size: 16px;
}

.lista-destaques {
    list-style: none;
    margin-top: 20px;
}

.lista-destaques li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    flex-wrap: wrap;
}

.lista-destaques li i {
    color: var(--primary);
    font-size: 18px;
    width: 25px;
}

.biografia-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: auto;
}

/* ========== ARTETERAPIA ========== */
.arteterapia {
    background: var(--light-gray);
}

.arteterapia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.arteterapia-texto {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.arteterapia-img {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.arteterapia-img img {
    width: 100%;
    border-radius: 15px;
    height: auto;
    object-fit: cover;
}

.arteterapia-img p {
    margin-top: 15px;
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

.arteterapia-destaque {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.arteterapia-texto p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
}

.arteterapia-frase {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 25px;
    font-style: italic;
}

/* ========== BENEFÍCIOS ========== */
.beneficios-idosos {
    background: var(--primary);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    color: var(--dark);
}

.beneficios-idosos h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.beneficio-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.beneficio-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.beneficio-card i {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--dark);
}

.beneficio-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.beneficio-card p {
    font-size: 14px;
    opacity: 0.9;
    color: var(--dark);
}

/* ========== HORÁRIOS ========== */
.arteterapia-horarios {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.arteterapia-horarios h3 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
}

.dias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.dia-card {
    background: var(--light);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.dia-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.dia-nome {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.dia-horarios {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.horario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--light);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: var(--dark);
    width: 100%;
    max-width: 180px;
}

.horario i {
    color: var(--primary);
}

.cta-arteterapia {
    text-align: center;
    margin-top: 20px;
}

/* ========== GALERIA DO LOCAL ========== */
.galeria-local {
    background: var(--white);
    padding: 60px 0;
}

.carrossel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.carrossel-wrapper {
    overflow: hidden;
}

.carrossel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carrossel-item {
    flex: 0 0 25%;
    padding: 10px;
}

.carrossel-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.carrossel-item img:hover {
    transform: scale(1.03);
}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--dark);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
    z-index: 10;
}

.carrossel-btn:hover {
    background: #000000;
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carrossel-btn-prev {
    left: 10px;
}

.carrossel-btn-next {
    right: 10px;
}

.carrossel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* ========== LOJA ========== */
.loja-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.produto-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.produto-card:hover {
    transform: translateY(-5px);
}

/* Container da imagem com zoom */
.produto-card .img-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background-color: #f0ebe3;
    cursor: pointer;
}

.produto-card .img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produto-card .img-container:hover img {
    transform: scale(1.05);
}

/* Ícone da Lupa */
.produto-card .btn-zoom {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 20;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.produto-card .img-container:hover .btn-zoom {
    opacity: 1;
    visibility: visible;
}

.produto-card .btn-zoom i {
    font-size: 20px;
}

.produto-card .btn-zoom:hover {
    background: #000000;
    color: var(--primary);
    transform: scale(1.1);
}

.exclusive-tag {
    position: absolute;
    top: 15px;
    left: -35px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    font-size: 11px;
    font-weight: bold;
    padding: 6px 40px;
    transform: rotate(-45deg);
    z-index: 10;
    width: 140px;
    text-align: center;
}

.produto-info {
    padding: 20px;
}

.produto-card h4 {
    color: var(--gray);
    font-size: 12px;
    margin-bottom: 5px;
}

.produto-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.produto-preco {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
    margin: 10px 0;
}

/* ========== LOCALIZAÇÃO ========== */
.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.local-info {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.local-info i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.local-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.local-info p {
    margin-bottom: 12px;
    color: var(--gray);
    line-height: 1.6;
}

.local-info .endereco-loja {
    margin-top: 10px;
    margin-bottom: 15px;
}

.local-info .endereco-loja strong {
    color: var(--primary);
}

.horario-info {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.horario-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.horario-info p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.horario-info i {
    font-size: 16px;
    width: 25px;
    margin: 0;
}

.local-mapa {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 10px;
    height: 100%;
}

.local-mapa iframe {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

/* ========== CONTATO ========== */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.info-item i:hover {
    background: #000000;
    color: var(--primary);
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item a, .info-item p {
    color: var(--gray);
    text-decoration: none;
}

.info-item a:hover {
    color: var(--primary);
}

.contato-form input, 
.contato-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-bottom: 15px;
}

.contato-form input:focus, 
.contato-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* ========== FOOTER ========== */
footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
    background: #000000;
    color: var(--primary);
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    max-width: 90%;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary);
    line-height: 1.4;
}

.lightbox-caption i {
    margin: 0 8px;
    font-size: 18px;
    color: var(--primary);
}

.lightbox-caption small {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    color: #cccccc;
}

.close-lightbox {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-lightbox:hover {
    color: var(--primary);
    background: #000000;
    transform: scale(1.1);
    border-color: var(--primary);
}

/* ========== BOTÃO TOPO ========== */
.btn-topo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.btn-topo:hover {
    background: #000000;
    color: var(--primary);
}

.btn-topo.show {
    opacity: 1;
    visibility: visible;
}

/* ========== WHATSAPP FLUTUANTE ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

.whatsapp-tooltip {
    position: fixed;
    bottom: 100px;
    left: 30px;
    background: white;
    border-radius: 20px;
    padding: 15px 20px;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid #25D366;
}

.whatsapp-tooltip.show {
    display: block;
    opacity: 1;
    animation: slideIn 0.3s ease;
}

.whatsapp-tooltip p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.whatsapp-tooltip .close-tooltip {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #999;
    transition: color 0.3s;
}

.whatsapp-tooltip .close-tooltip:hover {
    color: #333;
}

.whatsapp-tooltip .btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
    transition: all 0.3s;
}

.whatsapp-tooltip .btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.02);
}

/* Animações */
@keyframes pulse {
    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);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
    .container { max-width: 95%; }
    .hero-content h1 { font-size: 48px; }
    .hero-content h2 { font-size: 30px; }
    .section-header h2 { font-size: 36px; }
    .carrossel-item { flex: 0 0 33.33%; }
}

@media (max-width: 768px) {
    .menu-hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 260px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: 0.3s ease-in-out;
        z-index: 1003;
        padding: 40px 20px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        margin: 0;
        list-style: none;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li a {
        font-size: 16px;
    }
    
    .logo-img {
        height: 35px;
        max-height: 35px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text p {
        font-size: 7px;
    }
    
    section { padding: 60px 0; }
    .section-header h2 { font-size: 32px; }
    
    .hero { min-height: 70vh; }
    .hero-content h1 { font-size: 32px; }
    .hero-content h2 { font-size: 22px; }
    .hero-content p { font-size: 14px; }
    
    .hero-buttons { gap: 15px; }
    .btn-primary, .btn-secondary { padding: 10px 20px; font-size: 13px; }
    
    .biografia-grid { grid-template-columns: 1fr; gap: 30px; }
    .arteterapia-grid { grid-template-columns: 1fr; gap: 30px; }
    .dias-grid { grid-template-columns: 1fr; gap: 15px; }
    .dia-horarios { flex-direction: row; justify-content: center; flex-wrap: wrap; }
    .horario { max-width: 150px; font-size: 12px; }
    
    .localizacao-grid { grid-template-columns: 1fr; gap: 30px; }
    .contato-grid { grid-template-columns: 1fr; gap: 35px; }
    .info-item { justify-content: center; text-align: center; flex-direction: column; }
    .info-item i { margin: 0 auto; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    
    .carrossel-item { flex: 0 0 50%; }
    .carrossel-item img { height: 200px; }
    
    .local-mapa iframe { min-height: 280px; }
    
    .lightbox-img { max-height: 55vh; }
    .lightbox-caption { padding: 12px 20px; font-size: 14px; }
    .close-lightbox { top: 15px; right: 15px; width: 45px; height: 45px; font-size: 26px; }
    
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; left: 20px; }
    .whatsapp-float i { font-size: 28px; }
    .whatsapp-tooltip { bottom: 80px; left: 20px; max-width: 260px; padding: 12px 16px; }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
        max-height: 30px;
    }
    
    .logo-text h1 {
        font-size: 14px;
    }
    
    .logo-text p {
        font-size: 6px;
    }
    
    .container { padding: 0 15px; }
    section { padding: 50px 0; }
    .section-header h2 { font-size: 26px; }
    
    .hero { min-height: 60vh; }
    .hero-content h1 { font-size: 26px; }
    .hero-content h2 { font-size: 18px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 80%; text-align: center; }
    
    .loja-grid { grid-template-columns: 1fr; }
    .produto-preco { font-size: 20px; }
    
    .local-info { padding: 20px; }
    .local-mapa iframe { min-height: 220px; }
    
    .btn-topo { width: 40px; height: 40px; font-size: 18px; bottom: 20px; right: 20px; }
    
    .carrossel-item { flex: 0 0 100%; }
    .carrossel-item img { height: 250px; }
    .carrossel-btn { width: 35px; height: 35px; font-size: 16px; }
    
    .top-bar-info { gap: 12px; font-size: 10px; }
    .top-bar-info a, .top-bar-info span { font-size: 9px; }
    
    .lightbox-img { max-height: 50vh; }
    .lightbox-caption { padding: 10px 16px; font-size: 12px; }
    .close-lightbox { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 22px; }
    
    .whatsapp-float { width: 45px; height: 45px; bottom: 15px; left: 15px; }
    .whatsapp-float i { font-size: 24px; }
    .whatsapp-tooltip { bottom: 70px; left: 15px; max-width: 240px; padding: 10px 14px; }
}

@media (max-width: 375px) {
    .lightbox-img { max-height: 45vh; }
    .lightbox-caption { padding: 8px 14px; font-size: 11px; }
}

/* ===== LOGO CENTRALIZADO E MAIOR NO CELULAR ===== */
@media (max-width: 768px) {
    /* Força o container do header a ter posição relativa para posicionar o menu */
    .main-header .container {
        position: relative;
        display: flex;
        justify-content: center !important;  /* centraliza o logo horizontalmente */
        align-items: center;
        flex-wrap: wrap;
    }

    /* Remove qualquer margem/padding extra do logo e centraliza */
    .logo {
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* AUMENTA O TAMANHO DA IMAGEM DO LOGO */
    .logo-img {
        height: 150px !important;      /* valor em destaque */
        max-height: 150px !important;
        width: auto;
        margin: 0 auto;
    }

    /* Caso exista texto de apoio, também centraliza e aumenta levemente */
    .logo-text h1 {
        font-size: 20px !important;
    }
    .logo-text p {
        font-size: 10px !important;
    }

    /* Menu hambúrguer fica absoluto à esquerda, centralizado verticalmente */
    .menu-hamburger {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
        z-index: 1100;
    }

    /* Garante que o menu dropdown (quando aberto) não sobreponha o logo de forma feia */
    .nav-menu {
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 260px;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    }
}

/* Ajuste fino para telas muito pequenas (até 480px) – reduz levemente para não ficar enorme */
@media (max-width: 480px) {
    .logo-img {
        height: 70px !important;
        max-height: 70px !important;
    }
    .menu-hamburger {
        left: 15px;
    }
}
