* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f7d5df 0%, #f092af 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Seção Hero Principal */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 1rem;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    z-index: 10;
    position: relative;
}

/* Logo destacado */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.main-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.brand-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-subtitle {
    font-size: 1.25rem;
    color: #374151;
    font-weight: 500;
}

/* Texto destacado sobre pedidos personalizados */
.highlight-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.highlight-text h2 {
    font-size: 2.5rem;
    color: #ec4899;
    margin-bottom: 1rem;
    font-weight: bold;
}

.highlight-text p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.highlight-text strong {
    color: #ec4899;
    font-weight: bold;
}

/* Botão principal moderno */
.main-action {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.menu-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ec4899 0%, #f092af 100%);
    color: white;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.menu-button:hover::before {
    left: 100%;
}

.menu-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.5);
}

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

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.menu-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Botões de redes sociais menores */
.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.social-btn.whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.ifood:hover {
    background: #ea1d2c;
    color: white;
}

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

/* Donuts flutuantes decorativos */
.floating-donuts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-donut {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.donut-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.donut-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.donut-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.donut-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

.donut-5 {
    top: 50%;
    left: 2%;
    animation-delay: 4s;
}

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

/* Seção de informações */
.info-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 1rem;
    backdrop-filter: blur(10px);
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: bold;
}

.info-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
/* Footer styles moved to footer-styles.css */

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

/* Responsividade */
@media (max-width: 768px) {
    .brand-title {
        font-size: 2.5rem;
    }
    
    .main-logo {
        width: 150px;
        height: 150px;
    }
    
    .highlight-text {
        padding: 1.5rem;
    }
    
    .highlight-text h2 {
        font-size: 2rem;
    }
    
    .menu-button {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-donut {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .main-logo {
        width: 120px;
        height: 120px;
    }
    
    .highlight-text h2 {
        font-size: 1.75rem;
    }
    
    .menu-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}