/* ===== Variáveis Globais ===== */
:root {
    --color-primary: #E91E63;       /* Hot Pink / Magenta Vibrante */
    --color-primary-hover: #D81B60;
    --color-secondary: #1A2A3A;     /* Azul profundo (texto) */
    --color-accent: #FFB347;        /* Amarelo/Laranja suave (gelato) */
    --color-bg: #FFF8F5;            /* Fundo creme/rosa muito suave */
    --color-surface: #FFFFFF;       /* Branco para cards */
    --color-text: #4A5568;          /* Texto secundário (cinza azulado) */
    --color-border: #FEECE9;
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #128C7E;
    
    --font-main: 'Outfit', sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 999px;
    
    --shadow-sm: 0 4px 6px -1px rgba(26, 42, 58, 0.05), 0 2px 4px -1px rgba(26, 42, 58, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(26, 42, 58, 0.05), 0 4px 6px -2px rgba(26, 42, 58, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(224, 82, 122, 0.1), 0 10px 10px -5px rgba(224, 82, 122, 0.04);
    
    --transition: all 0.3s ease;
}

/* ===== Resets Básicos ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

/* ===== Layout & Utilitários ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-header.center {
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text);
}

/* ===== Botões ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(224, 82, 122, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 82, 122, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(224, 82, 122, 0.3);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-text {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--color-primary-hover);
    gap: 10px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
    padding: 20px 0;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.header-logo-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.header-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transform: scale(1.32);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-secondary);
    transition: var(--transition);
    position: relative;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-secondary);
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 82, 122, 0.08) 0%, rgba(255, 248, 245, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(224, 82, 122, 0.1);
    color: var(--color-primary);
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
    max-width: 90%;
}

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

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob {
    width: 280px;
    height: 280px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.hero-blob::before, .hero-blob::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.1;
    z-index: -1;
    animation: ripple 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-blob::after {
    animation-delay: 1.5s;
}

.hero-circle {
    width: 280px;
    height: 280px;
    background-color: var(--color-surface);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.15); /* Sombra baseada no #E91E63 */
    z-index: 2;
    border: 4px solid var(--color-bg);
    overflow: hidden;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(1.32);
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ===== Products Section ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--color-surface);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(224, 82, 122, 0.2);
}

.product-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.product-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* ===== Features Section ===== */
.features {
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

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

.features-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-secondary);
}

.feature-icon {
    color: var(--color-primary);
    background-color: rgba(224, 82, 122, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-visual {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, #F9F0FF 0%, #FFF4F4 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.visual-box {
    width: 250px;
    height: 350px;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255,255,255,0.6);
    position: absolute;
    transform: rotate(10deg);
}

.visual-image {
    font-size: 5rem;
    color: var(--color-accent);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ===== Galeria (Últimas Delícias) ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== Prova Social (Depoimentos) ===== */
.testimonials {
    background-color: var(--color-surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-bg);
    padding: 30px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .stars {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-secondary);
}

/* ===== CTA WhatsApp (Banner Gráfico) ===== */
.cta-whatsapp {
    padding: 0 20px;
}

.banner-link {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.25); /* Brilho rosa combinando com a nova identidade */
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===== Location ===== */
.location-wrapper {
    background-color: var(--color-surface);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--color-border);
}

.location-address {
    font-size: 1.2rem;
    margin: 20px 0 30px;
    color: var(--color-secondary);
}

.location-address i {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 2rem;
    display: block;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-surface);
    padding: 60px 0 20px;
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.footer-brand p {
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    align-items: center;
}

.social-link {
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--color-primary-hover);
}

.location-link {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-contact i {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: #94A3B8;
}

/* ===== Media Queries (Responsividade) ===== */
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 2; }
    .hero-image-wrapper { order: 1; }
    .hero-subtitle { max-width: 100%; margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .features-container { grid-template-columns: 1fr; }
    .cta-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mobile-toggle {
        display: block;
    }

    .header-actions .btn {
        display: none; /* Esconde o botão de pedir no header mobile para não poluir, tem o cta principal no banner */
    }

    .hero { padding: 120px 0 80px; }
    .hero-title { font-size: 2.2rem; }
    .hero-blob { width: 240px; height: 240px; }
    .hero-circle { width: 240px; height: 240px; }
    .hero-icon { font-size: 5rem; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    
    .section { padding: 60px 0; }
    .cta-box { padding: 40px 20px; }
    .footer-container { flex-direction: column; text-align: center; }
    .footer-brand p { margin: 0 auto; }
    .footer-contact p { justify-content: center; }
    .footer-socials { justify-content: center; }
    .footer-links-list { align-items: center; }
}

/* ===== Efeito Pulsar para CTAs ===== */
@keyframes pulse-pink {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(224, 82, 122, 0.4);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 8px 24px rgba(224, 82, 122, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(224, 82, 122, 0.4);
    }
}

.pulse-btn {
    animation: pulse-pink 2s infinite ease-in-out;
    display: inline-flex !important;
}

/* Links do Rodapé */
.footer-link {
    color: var(--color-text);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-link:hover {
    color: var(--color-primary) !important;
}

/* Novo Layout Rodapé */
.footer-links-col h4 {
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li {
    display: flex;
}

.footer-bottom a:hover {
    color: var(--color-primary-hover) !important;
    text-decoration: underline !important;
}

/* ===== Botão iFood e Pulsar Vermelho ===== */
.btn-ifood {
    background-color: #EA1D2C; /* Vermelho iFood Oficial */
    color: white;
    box-shadow: 0 4px 14px rgba(234, 29, 44, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    text-decoration: none;
}

.btn-ifood:hover {
    background-color: #D1101E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 29, 44, 0.45);
    color: white !important;
}

@keyframes pulse-ifood {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(234, 29, 44, 0.4);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 8px 24px rgba(234, 29, 44, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 14px rgba(234, 29, 44, 0.4);
    }
}

.pulse-ifood {
    animation: pulse-ifood 2s infinite ease-in-out;
    display: inline-flex !important;
}




