/* ===== VARIÁVEIS - CORES VIBRANTES ===== */
:root {
    --azul-primario: #1565C0;
    --azul-vibrante: #1976D2;
    --azul-claro: #2196F3;
    --azul-escuro: #0D47A1;
    --dourado: #FFD700;
    --dourado-brilhante: #FFC107;
    --dourado-escuro: #FFA000;
    --vermelho: #E53935;
    --branco: #ffffff;
    --cinza-claro: #f8f9fa;
    --cinza: #6c757d;
    --preto: #1a1a1a;
    --sombra: 0 4px 20px rgba(0, 0, 0, 0.15);
    --sombra-forte: 0 8px 40px rgba(0, 0, 0, 0.2);
    --sombra-dourada: 0 4px 20px rgba(255, 215, 0, 0.3);
    --transicao: all 0.3s ease;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--preto);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transicao);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--branco);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    min-width: 220px;
    justify-content: center;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--azul-primario) 0%, var(--azul-escuro) 100%);
    box-shadow: var(--sombra);
    transition: var(--transicao);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    color: var(--branco);
    position: relative;
    padding: 5px 0;
    transition: var(--transicao);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dourado);
    transition: var(--transicao);
}

.nav-link:hover {
    color: var(--dourado);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--branco);
    border-radius: 3px;
    transition: var(--transicao);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--azul-vibrante) 0%, var(--azul-escuro) 100%);
    overflow: hidden;
    padding-top: 80px;
}

/* Padrão hexagonal */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--branco);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--dourado);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SEÇÕES ===== */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--azul-escuro);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dourado) 0%, var(--dourado-brilhante) 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--azul-primario);
    margin-top: -40px;
    margin-bottom: 50px;
    font-weight: 500;
}

/* ===== SOBRE ===== */
.sobre {
    background: linear-gradient(180deg, var(--branco) 0%, var(--cinza-claro) 100%);
}

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

.sobre-text p {
    margin-bottom: 20px;
    color: var(--cinza);
    font-size: 1.1rem;
    line-height: 1.8;
}

.sobre-text strong {
    color: var(--azul-primario);
}

.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--branco);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transicao);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-brilhante) 100%);
    color: var(--azul-escuro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature span {
    font-weight: 500;
    color: var(--azul-escuro);
}

.sobre-image .image-placeholder {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra-forte);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--azul-vibrante) 0%, var(--azul-escuro) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sobre-image .image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.image-placeholder.no-image::after {
    content: 'GOLD FARMA';
    color: var(--dourado);
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

/* ===== SERVIÇOS ===== */
.servicos {
    background: linear-gradient(135deg, var(--azul-vibrante) 0%, var(--azul-escuro) 100%);
    position: relative;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.servicos .section-title {
    color: var(--branco);
}

.servicos .section-title::after {
    background: linear-gradient(90deg, var(--dourado) 0%, var(--dourado-brilhante) 100%);
}

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

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.servico-card {
    background: var(--branco);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--sombra);
    transition: var(--transicao);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dourado) 0%, var(--dourado-brilhante) 100%);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-forte);
}

.servico-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.servico-card h3 {
    color: var(--azul-escuro);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.servico-card p {
    color: var(--cinza);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== LOCALIZAÇÃO ===== */
.localizacao {
    background: linear-gradient(180deg, var(--cinza-claro) 0%, var(--branco) 100%);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.lojas-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.loja-card {
    background: var(--branco);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--sombra);
    border-left: 5px solid var(--dourado);
    transition: var(--transicao);
}

.loja-card:hover {
    transform: translateX(5px);
    box-shadow: var(--sombra-forte);
}

.loja-card h3 {
    color: var(--azul-escuro);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.loja-card .endereco {
    font-weight: 500;
    color: var(--preto);
    font-size: 1rem;
}

.loja-card .cidade {
    color: var(--cinza);
    margin-bottom: 10px;
}

.loja-card .horario {
    font-size: 0.9rem;
    color: var(--azul-primario);
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-loja-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--branco);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transicao);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-loja-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-loja-whatsapp svg {
    width: 18px;
    height: 18px;
}

.mapa-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra-forte);
}

#mapa {
    width: 100%;
    height: 450px;
    background: #e0e0e0;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--azul-vibrante) 0%, var(--azul-escuro) 100%);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta h2 {
    color: var(--branco);
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-destaque {
    font-size: 1.5rem !important;
    font-weight: 600;
    color: var(--dourado) !important;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ===== CONTATO ===== */
.contato-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contato-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.contato-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--branco);
    border-radius: 20px;
    transition: var(--transicao);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 2px solid transparent;
}

.contato-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra);
    border-color: var(--dourado);
}

.contato-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contato-item h3 {
    color: var(--azul-escuro);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contato-item p {
    color: var(--cinza);
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, #051c3d 100%);
    color: var(--branco);
    padding: 70px 0 25px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--dourado);
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    transition: var(--transicao);
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--dourado);
    padding-left: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transicao);
    border: 2px solid transparent;
}

.social-icons a:hover {
    background: var(--dourado);
    border-color: var(--dourado);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 22px;
    height: 22px;
}

.instagram-handle {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    transition: var(--transicao);
    animation: pulse 2s infinite;
    border: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--branco);
}

.whatsapp-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: var(--branco);
    border-radius: 16px;
    box-shadow: var(--sombra-forte);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transicao);
    min-width: 200px;
}

.whatsapp-float-container.active .whatsapp-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    color: var(--preto);
    font-weight: 600;
    transition: var(--transicao);
    border-bottom: 1px solid var(--cinza-claro);
}

.whatsapp-menu-item:last-child {
    border-bottom: none;
}

.whatsapp-menu-item:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--branco);
}

.whatsapp-menu-icon {
    font-size: 1.3rem;
}

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

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .localizacao-content {
        grid-template-columns: 1fr;
    }

    .contato-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contato-grid.three-cols {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 79px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--azul-primario) 0%, var(--azul-escuro) 100%);
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        box-shadow: var(--sombra);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transicao);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 70px 0;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-image {
        order: -1;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .sobre-features {
        grid-template-columns: 1fr;
    }

    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
    }

    .whatsapp-menu {
        right: -10px;
        min-width: 180px;
    }

    .section-title {
        font-size: 1.7rem;
    }
}

/* ===== PÁGINAS LEGAIS (Privacidade, Termos) ===== */
.pagina-legal {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--cinza-claro) 0%, var(--branco) 100%);
}

.pagina-legal h1 {
    font-size: 2.5rem;
    color: var(--azul-escuro);
    margin-bottom: 10px;
    text-align: center;
}

.pagina-legal .ultima-atualizacao {
    text-align: center;
    color: var(--cinza);
    font-size: 0.95rem;
    margin-bottom: 50px;
}

.pagina-legal section {
    padding: 0;
    margin-bottom: 35px;
}

.pagina-legal h2 {
    font-size: 1.4rem;
    color: var(--azul-primario);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dourado);
}

.pagina-legal p {
    color: var(--cinza);
    line-height: 1.8;
    margin-bottom: 15px;
}

.pagina-legal ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.pagina-legal li {
    color: var(--cinza);
    line-height: 1.8;
    margin-bottom: 8px;
}

.pagina-legal strong {
    color: var(--azul-escuro);
}

.pagina-legal .contato-legal {
    background: var(--branco);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--dourado);
}

.pagina-legal .contato-legal p {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .pagina-legal {
        padding-top: 100px;
    }

    .pagina-legal h1 {
        font-size: 1.8rem;
    }

    .pagina-legal h2 {
        font-size: 1.2rem;
    }
}
