/* ============================================
   Casa Agrícola & Pet Shop Santa Bárbara
   Landing Page V2 — Estilos
   ============================================ */

/* --- Design Tokens --- */
:root {
    --primary-green: #6AA84F;
    --primary-green-dark: #4E8639;
    --primary-green-light: #8FCA74;
    --secondary-orange: #F9A42C;
    --secondary-orange-dark: #E08D1A;
    --accent-brown: #9A5444;
    --accent-red: #E25964;
    --accent-blue: #43ADD5;
    --bg-cream: #FFF8F0;
    --bg-light: #F5F7F3;
    --bg-white: #FFFFFF;
    --text-dark: #2D2D2D;
    --text-medium: #555555;
    --text-light: #FFFFFF;
    --whatsapp: #25D366;
    --whatsapp-dark: #1DAF54;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(106, 168, 79, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Global --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

h2.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 48px;
}

section {
    padding: 80px 0;
}

/* --- Animações --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Header --- */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(106, 168, 79, 0.1);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link img {
    height: 50px;
    width: auto;
    margin-top: -12px;
    margin-bottom: -12px;
    transition: all var(--transition);
}

.header.scrolled .logo-link img {
    height: 50px;
    margin-top: -4px;
    margin-bottom: -4px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-green);
    line-height: 1.1;
}

.logo-text small {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-brown);
    letter-spacing: 0.5px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 28px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--primary-green);
}

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

.nav-cta {
    background: var(--whatsapp);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--whatsapp-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 80px 30px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    padding: 16px 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--primary-green);
}

.mobile-menu .nav-cta-mobile {
    margin-top: 20px;
    background: var(--whatsapp);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    border-bottom: none;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* --- Status Badge --- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.status-badge.open {
    background: rgba(37, 211, 102, 0.15);
    color: #1a8a42;
}

.status-badge.open .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: pulse 2s infinite;
}

.status-badge.closed {
    background: rgba(226, 89, 100, 0.15);
    color: var(--accent-red);
}

.status-badge.closed .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-red);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.75) 0%, rgba(106, 168, 79, 0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    max-width: 680px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-content h1 span {
    color: var(--secondary-orange);
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* --- Botões --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    font-size: 1.1rem;
    padding: 16px 36px;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
}

.btn-orange {
    background: var(--secondary-orange);
    color: white;
}

.btn-orange:hover {
    background: var(--secondary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 164, 44, 0.35);
}

/* --- Produtos (Cards) --- */
/* --- Produtos (Cards) --- */
#produtos {
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
    transition: background-color 0.6s ease;
}

#produtos.bg-active {
    background: transparent;
}

/* Camadas de background por categoria */
.produtos-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.produtos-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.produtos-bg-layer.active {
    opacity: 1;
}

/* Imagens de background por categoria */
.produtos-bg-layer[data-layer="racoes"] {
    background-image: url('../img/racoes-premium-pet-shop.jpg');
    background-size: cover;
    background-position: center;
}

.produtos-bg-layer[data-layer="acessorios"] {
    background-image: url('../img/acessorios-brinquedos-pet.jpg');
    background-size: cover;
    background-position: center;
}

.produtos-bg-layer[data-layer="farmacia"] {
    background-image: url('../img/farmacia-veterinaria-medicamentos-pet.jpg');
    background-size: cover;
    background-position: center;
}

.produtos-bg-layer[data-layer="agricola"] {
    background-image: url('../img/produtos-agricolas-jardinagem.jpg');
    background-size: cover;
    background-position: center;
}

.produtos-bg-layer[data-layer="piscina"] {
    background-image: url('../img/produtos-tratamento-piscina.jpg');
    background-size: cover;
    background-position: center;
}

.produtos-bg-layer[data-layer="entrega"] {
    background-image: url('../img/entrega-moto.png');
    background-size: cover;
    background-position: center;
}

.produtos-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

#produtos.bg-active .produtos-bg-overlay {
    opacity: 1;
}

/* Conteúdo sobre o background */
.produtos-content {
    position: relative;
    z-index: 2;
}

/* Textos ficam brancos quando background ativo */
#produtos.bg-active .section-title {
    color: var(--text-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#produtos.bg-active .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.produtos-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.produto-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(106, 168, 79, 0.08);
}

.produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.produto-card:hover,
.produto-card.is-active {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.produto-card:hover::before,
.produto-card.is-active::before {
    transform: scaleX(1);
}

.produto-card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(106, 168, 79, 0.1), rgba(106, 168, 79, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition);
}

.produto-card:hover .icon-wrap,
.produto-card.is-active .icon-wrap {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    transform: scale(1.1);
}

.produto-card .icon-wrap i {
    font-size: 1.8rem;
    color: var(--primary-green);
    transition: color var(--transition);
}

.produto-card:hover .icon-wrap i,
.produto-card.is-active .icon-wrap i {
    color: white;
}

.produto-card h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.produto-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Placeholder de imagem --- */
.img-placeholder {
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 50%, #e8e8e8 100%);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: var(--radius-md);
    border: 2px dashed #ccc;
    color: #999;
    padding: 24px;
    min-height: 200px;
    text-align: center;
}

.img-placeholder i {
    font-size: 2.5rem;
    opacity: 0.5;
}

.img-placeholder .prompt-text {
    font-size: 0.75rem;
    font-style: italic;
    max-width: 300px;
    opacity: 0.7;
    line-height: 1.4;
}

/* --- Sobre Nós --- */
#sobre {
    background: var(--bg-light);
}

.sobre-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.sobre-reviews {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

.reviews-swiper {
    width: 100%;
    padding-bottom: 40px !important;
    /* espaço para os dots */
}

.review-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.review-author {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.2;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-top: 2px;
}

.review-stars {
    color: var(--secondary-orange);
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.swiper-pagination-bullet-active {
    background: var(--primary-green) !important;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h2 {
    text-align: left;
    margin-bottom: 20px;
}

.sobre-texto p {
    color: var(--text-medium);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.sobre-texto .highlight {
    color: var(--secondary-orange);
    font-weight: 700;
}

.sobre-destaques {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.destaque-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.destaque-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.google-review-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all var(--transition);
}

.google-review-summary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.google-logo {
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #4285F4;
    flex-shrink: 0;
}

.google-stats {
    display: flex;
    flex-direction: column;
}

.google-stats .rating-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.google-stats .stars {
    color: var(--secondary-orange);
    font-size: 1.1rem;
    margin: 4px 0;
}

.google-stats .total-reviews {
    font-size: 0.85rem;
    color: var(--text-medium);
}

/* --- Horário & Localização --- */
#localizacao {
    background: var(--bg-light);
    padding: 30px 0;
}

.local-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.info-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--secondary-orange);
}

.horario-table {
    width: 100%;
    border-collapse: collapse;
}

.horario-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.horario-table td {
    padding: 12px 0;
    font-size: 1rem;
}

.horario-table td:first-child {
    font-weight: 600;
}

.horario-table td:last-child {
    text-align: right;
    color: var(--text-medium);
}

.horario-table tr.hoje {
    background: rgba(106, 168, 79, 0.08);
    border-radius: var(--radius-sm);
}

.horario-table tr.hoje td {
    color: var(--primary-green);
    font-weight: 700;
}

.info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}

.info-item-small {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.info-item-small i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.info-item-small a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition);
}

.info-item-small a:hover {
    color: var(--primary-green);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-top: 3px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.info-item p {
    font-size: 1rem;
}

.info-item a {
    color: var(--primary-green);
    font-weight: 600;
    transition: color var(--transition);
}

.info-item a:hover {
    color: var(--primary-green-dark);
}

.mapa-col {
    display: flex;
    flex-direction: column;
}

.mapa-container {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--bg-white);
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: 0;
    display: block;
}

/* --- CTA Final --- */
.cta-final {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 50%, #3d7a28 100%);
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://cdn.awsli.com.br/1710/1710899/arquivos/passaros_sem_olhos.png');
    opacity: 0.05;
}

.cta-final .container {
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final .btn-whatsapp {
    font-size: 1.2rem;
    padding: 18px 42px;
}

.cta-contatos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
    opacity: 0.9;
}

.cta-contatos a {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    transition: opacity var(--transition);
}

.cta-contatos a:hover {
    opacity: 0.8;
}

/* --- Footer --- */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-orange);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

/* --- WhatsApp Flutuante --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.whatsapp-float .tooltip {
    background: white;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float a {
    width: 64px;
    height: 64px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    animation: pulse 2.5s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    animation: none;
}

/* --- Responsivo: Tablet --- */
@media (min-width: 768px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-grid {
        flex-direction: row;
    }

    .sobre-reviews,
    .sobre-texto {
        flex: 1;
        min-width: 0;
    }

    .sobre-texto h2 {
        font-size: 2.2rem;
    }

    .local-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .mapa-container iframe {
        height: 100%;
        min-height: 240px;
    }

    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .mobile-menu,
    .mobile-overlay {
        display: none;
    }
}

/* --- Responsivo: Desktop --- */
@media (min-width: 1024px) {
    .produtos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    section {
        padding: 100px 0;
    }

    .container {
        padding: 0 40px;
    }
}