/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais - 100% alinhadas com logo Rosa Vermelha */
    --primary-color: #C41E3A;        /* Vermelho Rose (match perfeito logo) */
    --primary-dark: #8B0000;         /* Bordô escuro - profundidade */
    --primary-light: #E31E24;        /* Vermelho logo - acentos vibrantes */
    --secondary-color: #DC143C;      /* Crimson - destaques */
    --accent-gold: #D4AF37;          /* Ouro velho - premium elegante */
    --text-dark: #2C2C2C;            /* Preto suave */
    --text-light: #666666;           /* Cinza médio */
    --text-white: #FFFFFF;           /* Branco puro */
    --bg-light: #FFF5F7;             /* Rosa clarinho - elegância */
    --bg-dark: #1A1A1A;              /* Preto header */
    --border-color: #F8D7DA;         /* Rosa suave - bordas */

    /* Tipografia */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', serif;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);

    /* Motion Design System */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease-out;
    --transition-slowest: 800ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Easing Functions */
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Transição padrão (backward compatibility) */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Skip Link para Acessibilidade */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 4px 0;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Focus Indicators Premium */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Focus visible (só com teclado) */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header e Navegação */
.header {
    background: var(--bg-dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: var(--spacing-sm) 0;
}

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

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
    animation: subtle-glow 3s ease-in-out infinite;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(227, 30, 36, 0.4));
}

@keyframes subtle-glow {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }
    50% {
        filter: drop-shadow(0 2px 8px rgba(227, 30, 36, 0.2));
    }
}

.logo h1 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--text-white);
    font-style: italic;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(211, 47, 47, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

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

.trust-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .trust-items {
        justify-content: center;
        gap: var(--spacing-sm);
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .trust-item span:not(.trust-icon) {
        display: none;
    }

    .trust-item::after {
        content: attr(data-label);
    }
}

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg, rgba(196, 30, 58, 0.75) 0%, rgba(139, 0, 0, 0.80) 100%),
        url('FOTOS/1761827592941.webp') center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-white);
    padding: 8rem 0 4rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(227, 30, 36, 0.15) 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 16px 32px;
    border-radius: 60px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(196, 30, 58, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: pulse-badge 3s ease-in-out infinite;
    border: 2px solid rgba(196, 30, 58, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    animation: shine-badge 4s infinite;
}

@keyframes shine-badge {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
                    0 0 0 1px rgba(196, 30, 58, 0.1),
                    0 0 0 0 rgba(196, 30, 58, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5),
                    0 0 0 1px rgba(196, 30, 58, 0.2),
                    0 0 0 8px rgba(196, 30, 58, 0);
    }
}

.badge-stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.badge-text {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 4px 0;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.badge-highlight {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(227, 30, 36, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.95;
    font-weight: 400;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.hero-info {
    margin-top: var(--spacing-md);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.delivery-info {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-white);
    opacity: 0.8;
    animation: fadeInUp 1.5s ease-out 1s;
}

.scroll-indicator span {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Botões */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.35),
                0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(227, 30, 36, 0.5),
                0 8px 24px rgba(0, 0, 0, 0.2),
                0 0 0 3px rgba(227, 30, 36, 0.1);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.4);
}

.nav-cta {
    background: var(--primary-light) !important;  /* Vermelho vibrante do logo */
    color: var(--text-white) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3) !important;
}

.nav-cta:hover {
    background: var(--primary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.5) !important;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Seções Gerais */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    margin: 0 auto var(--spacing-sm);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
    position: relative;
}

.section-divider::after {
    content: '🌹';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Sobre Section */
.about {
    background: var(--text-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.feature-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    padding: var(--spacing-sm);
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-light);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: var(--shadow-lg);
}

.about-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s var(--ease-out);
}

.about-photo.active {
    opacity: 1;
    z-index: 1;
}

/* Why Choose Section */
.why-choose {
    background: var(--text-white);
    padding: var(--spacing-xl) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.why-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(196, 30, 58, 0.15);
    border-color: var(--primary-color);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.why-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Galeria Section */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.3);
    border: 2px solid var(--primary-light);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--text-white);
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.placeholder-item {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: var(--text-white);
}

.placeholder-content span {
    font-size: 4rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.placeholder-content p {
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-cta {
    text-align: center;
}

/* Gallery Mini Carousel */
.gallery-item-carousel {
    position: relative;
}

.gallery-mini-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 800ms ease-in-out;
}

.gallery-carousel-img.active {
    opacity: 1;
    z-index: 1;
}

/* Indicador de carrossel na galeria */
.gallery-item-carousel::after {
    content: '●●●●';
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 8px;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    opacity: 0.7;
    animation: pulse 2s ease-in-out infinite;
}

.gallery-item-carousel:hover::after {
    opacity: 1;
}

/* Promoções Section */
.promotions {
    background: var(--bg-light);
}

.promo-card {
    background: var(--text-white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.promo-card.featured {
    border: 3px solid var(--primary-color);
}

.promo-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.promo-card h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.promo-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.promo-price {
    margin-bottom: var(--spacing-md);
}

.promo-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}


/* Reviews Section */
.reviews {
    background: var(--text-white);
    padding: var(--spacing-xl) 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.review-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-gold);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Contato Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    background: var(--text-white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.info-detail {
    font-size: 0.85rem !important;
    font-style: italic;
    margin-top: 0.3rem !important;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

.contact-cta-box {
    background: transparent;
    color: var(--text-white);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-cta-image {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.cta-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%);
    padding: var(--spacing-lg);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-overlay h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-overlay p {
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    color: var(--text-white);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.btn-cta-special {
    background: var(--text-white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-special:hover {
    background: var(--accent-gold);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.delivery-badges {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-md);
}

.badge-item {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm);
    border-radius: 12px;
    flex: 1;
}

.badge-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.3rem;
}

.badge-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-section h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-links li {
    opacity: 0.8;
    font-size: 0.95rem;
}

.social-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

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

.footer-social-proof {
    font-size: 1rem !important;
    opacity: 1 !important;
    margin-bottom: var(--spacing-sm) !important;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.footer-social-proof strong {
    color: var(--accent-gold);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0.3rem 0;
}

.footer-mission {
    font-style: italic;
}

/* Google Reviews Section */
.google-reviews-wrapper {
    margin-top: var(--spacing-lg);
}

.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--border-radius);
    flex-wrap: wrap;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.google-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-icon {
    font-size: 1.5rem;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
}

.google-avatar {
    background: var(--primary-color);
}

.google-icon-small {
    flex-shrink: 0;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
    font-style: italic;
}

/* Reviews Carousel */
.reviews-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.reviews-carousel {
    position: relative;
    min-height: 400px;
}

.reviews-grid-page {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    justify-items: center;
    width: 100%;
}

.reviews-grid-page.active {
    display: grid;
    opacity: 1;
    animation: fadeInReviews 0.5s var(--ease-out);
}

@keyframes fadeInReviews {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: var(--spacing-lg);
}

.carousel-btn {
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition-base);
    padding: 0;
}

.carousel-indicators .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-indicators .indicator:hover {
    transform: scale(1.15);
}

/* Instagram Feed Section */
.instagram-feed {
    background: #FAFAFA;
    padding: var(--spacing-xl) 0;
}

.instagram-feed .section-title {
    color: var(--text-primary);
}

.instagram-feed .section-subtitle {
    color: var(--text-secondary);
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--border-radius);
    flex-wrap: wrap;
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.instagram-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 8px;
}

.instagram-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.instagram-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--text-white);
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(188, 24, 136, 0.3);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: var(--bg-light);
}

.instagram-post-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.instagram-post-link:hover .instagram-overlay {
    opacity: 1;
}

.instagram-post-link:hover img {
    transform: scale(1.1);
}

.instagram-embed-container {
    margin-top: var(--spacing-lg);
    min-height: 400px;
}

.instagram-embed-container .elfsight-app-8e63b5cd-54ed-4ad7-8a3a-3d5f0c9e3a3c {
    width: 100%;
}

/* Hero CTA Melhorado */
.hero-main-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 10;
}

.btn-icon {
    font-size: 1.5rem;
    display: inline-block;
    animation: bounce-icon 2s infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.btn-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.95;
    margin-top: 2px;
    display: block;
}

/* Hero Trust Bar */
.hero-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-white);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out;
}

.trust-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.trust-text {
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Urgency Banner */
.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.sticky-cta-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
}

.sticky-icon {
    font-size: 1.5rem;
}

.sticky-message {
    font-size: 1rem;
    font-weight: 500;
}

.btn-sticky {
    padding: 0.75rem 2rem;
    background: var(--text-white);
    color: var(--primary-color);
    font-weight: 700;
    white-space: nowrap;
}

.btn-sticky:hover {
    background: var(--accent-gold);
    color: var(--text-white);
}

/* Exit Intent Modal */
.exit-intent-modal {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.exit-intent-content {
    max-width: 540px;
    background: linear-gradient(135deg, #FFF 0%, #FFF5F7 100%);
    text-align: center;
    padding: 0;
    position: relative;
    animation: slideUpBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideUpBounce {
    0% {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.exit-intent-body {
    padding: 3rem 2rem 2rem;
}

.exit-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: rotate-emoji 0.6s ease-out;
}

@keyframes rotate-emoji {
    0% { transform: rotate(-20deg) scale(0); }
    100% { transform: rotate(0) scale(1); }
}

.exit-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.exit-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.exit-subtitle strong {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
}

.exit-offer {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 2px dashed var(--primary-color);
}

.offer-badge {
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.offer-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.code-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.code-value {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    background: white;
    padding: 8px 20px;
    border-radius: 8px;
    letter-spacing: 2px;
    border: 2px solid var(--primary-color);
}

.code-copy {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.code-copy:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.exit-cta {
    width: 100%;
    margin-bottom: 1rem;
}

.exit-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
}

.exit-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.exit-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-md) 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .hero-cta {
        flex-direction: column;
    }

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

    .image-placeholder {
        height: 300px;
        font-size: 5rem;
    }

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .google-reviews-header,
    .instagram-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

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

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .contact-cta-image {
        height: 450px;
    }

    .cta-overlay h3 {
        font-size: 1.6rem;
    }

    .about-photo {
        height: 300px;
    }

    .about-carousel {
        height: 300px;
    }
}

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

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

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

    .placeholder-content span {
        font-size: 3rem;
    }

    .placeholder-content p {
        font-size: 1rem;
    }

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

    .btn-instagram {
        width: 100%;
        justify-content: center;
    }

    .reviews-grid-page {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-indicators {
        gap: 8px;
    }

    .carousel-indicators .indicator {
        width: 10px;
        height: 10px;
    }

    .contact-cta-image {
        height: 400px;
    }

    .cta-overlay h3 {
        font-size: 1.4rem;
    }

    .cta-overlay p {
        font-size: 0.9rem;
    }

    .btn-cta-special {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .delivery-badges {
        flex-direction: column;
        gap: 0.5rem;
    }

    .about-photo {
        height: 250px;
    }

    .about-carousel {
        height: 250px;
    }
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

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

.hero-content,
.section-header {
    animation: fadeInUp 0.8s var(--ease-out);
}

/* Respeitar preferências de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-content,
    .section-header,
    .logo-img,
    .scroll-arrow,
    .whatsapp-float {
        animation: none !important;
    }
}

/* Guarantees Section */
.guarantees {
    background: linear-gradient(to bottom, #FAFAFA 0%, #FFFFFF 100%);
    padding: var(--spacing-xl) 0;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
    border-color: var(--primary-color);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.guarantee-card h3 {
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.guarantee-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.guarantee-card p strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        max-width: 600px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--bg-light);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(139, 0, 0, 0.05) 100%);
}

.modal-header h2 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--spacing-lg);
    overflow-y: auto;
    flex: 1;
    color: var(--text-primary);
    line-height: 1.8;
}

.modal-body h3 {
    color: var(--primary-color);
    font-family: var(--font-secondary);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
}

.modal-body h4 {
    color: var(--primary-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    font-size: 1.2rem;
}

.modal-body p {
    margin-bottom: var(--spacing-sm);
}

.modal-body ul, .modal-body ol {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.modal-body li {
    margin-bottom: var(--spacing-xs);
}

.legal-link {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-base);
}

.legal-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 95vh;
        margin: 10px;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: var(--spacing-md);
    }

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

    .footer-logo {
        margin: 0 auto var(--spacing-sm);
    }
}
