/* Design System Brink & Festas */
:root {
    --primary: #00BFB2;
    /* Tiffany Turquoise */
    --secondary: #FF8C00;
    /* Vibrant Orange */
    --accent: #9370DB;
    /* Soft Purple */
    --dark: #1E293B;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --gray: #64748B;
    --bg-gradient: linear-gradient(135deg, #00BFB2 0%, #008f85 100%);
    --shadow: 0 10px 30px -5px rgba(0, 191, 178, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.brink {
    color: var(--primary);
}

.festas {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

/* Hero Section */
#hero {
    padding: 10rem 0 6rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    background: rgba(147, 112, 219, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

h1 span {
    color: var(--primary);
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-whatsapp {
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Hero Image Side */
.hero-image .image-box {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.circle-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0.1;
    filter: blur(50px);
}

/* Sections General */
.section-padding {
    padding: 8rem 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: #F1F5F9; /* Cinza bem claro para Avaliações */
}

.bg-primary-dark {
    background: linear-gradient(135deg, #00938a 0%, #00BFB2 100%);
    color: white;
}

.bg-primary-dark h2,
.bg-primary-dark p,
.bg-primary-dark li {
    color: white; /* Força o texto branco para contraste */
}

.bg-primary-dark .features-list li {
    font-weight: 400;
}

.bg-secondary-theme {
    background: var(--secondary); /* Laranja Vibrante */
    color: white;
}

.bg-secondary-theme h2,
.bg-secondary-theme p,
.bg-secondary-theme li {
    color: white; /* Força o texto branco para contraste */
}

.bg-secondary-theme .features-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bg-secondary-theme .features-list li {
    font-weight: 400;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

/* Product Showcase */
.product-showcase {
    display: flex;
    flex-direction: column; /* Coloca img e texto um em cima do outro */
    gap: 3rem;
    align-items: center;
}

.product-image {
    width: 100%;
    max-width: 600px;
}

.product-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Mais sombra no fundo escuro */
}

.product-details {
    width: 100%;
    max-width: 800px;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

/* Pricing Table */
.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-info {
    flex: 1;
}

.price-info .small-text {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.2rem;
}

.btn-whatsapp-order {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s, background 0.2s;
}

.btn-whatsapp-order:hover {
    transform: scale(1.05);
    background: #20BA56;
}

.price-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
}

.price-card span {
    color: var(--dark);
    font-weight: 600;
}

.price-card.popular {
    border: 2px solid var(--secondary);
    position: relative;
    background: #fff;
    transform: scale(1.02);
}

.price-card.popular .tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--secondary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Coming Soon Box */
.coming-soon-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: white;
    border-radius: 40px;
    box-shadow: var(--shadow);
}

.coming-soon-visual {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.skeleton-card {
    width: 100px;
    height: 140px;
    background: #f1f5f9;
    border-radius: 15px;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

.status {
    font-weight: 800;
    color: var(--primary);
    margin-top: 2rem;
}

/* Sobre Mim Section */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image {
    position: relative;
    text-align: center;
}

.sobre-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    aspect-ratio: 1/1;
}

.sobre-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--secondary); /* Laranja brilhante pra contrastar com fundo verde */
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.sobre-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: inherit;
}

.sobre-text p {
    font-size: 1.1rem;
    color: inherit;
    margin-bottom: 1.5rem;
}

/* Avaliações Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-header .generic-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    border: 2px solid rgba(0, 191, 178, 0.2);
    flex-shrink: 0;
}

.testimonial-header h4 {
    margin: 0;
    color: var(--dark);
    font-size: 1.1rem;
}

.stars {
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.testimonial-card p {
    color: var(--gray);
    font-style: italic;
    line-height: 1.6;
}

/* Footer Section */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-social h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4);
}

.instagram-btn svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    width: 100%;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Navbar elements */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 968px) {
    /* Navbar Mobile Fix */
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-links {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex; /* Shown when active */
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .sobre-badge {
        right: 50%;
        transform: translateX(50%);
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 {
        font-size: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .product-showcase {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        margin-top: 2rem;
    }
}