/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #db2e64;
    color: #ffffff;
    transition: background-color 0.5s ease;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== SCROLLBAR DINÂMICO ===== */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    transition: background 0.5s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.2);
    padding: 12px 5%;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    opacity: 0.8;
}

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

.lang-selector-desktop {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

.lang-selector-mobile {
    display: none;
}

.lang-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 50%;
}

.lang-btn:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.lang-btn.active {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-small {
    background: #fff;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-small:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-small i {
    font-size: 10px;
}

.btn-full {
    background: #fff;
    color: #000;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #f8f8f8;
}

/* ===== HERO SECTION ===== */
#hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 5% 80px 5%;
    min-height: 100vh;
    gap: 50px;
    position: relative;
}

.content-left {
    width: 50%;
    position: relative;
    z-index: 1;
}

.title-cursive {
    font-family: 'Lobster', cursive;
    font-size: 7rem;
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: -10px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 450px;
    opacity: 0.95;
}

/* ===== THUMBNAILS COM GLASSMORPHISM ===== */
.thumbnails {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.thumb {
    width: 80px;
    height: 90px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.thumb:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.thumb:hover img {
    transform: scale(1.1);
}

.thumb.active {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.1);
    transform: scale(1.08);
}

.thumb-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.thumb.active .thumb-glow {
    opacity: 1;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.content-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* AUMENTA O CONTAINER */
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1700px;  /* ← AUMENTE AQUI (era 500px) */
}

/* AUMENTA A IMAGEM */
.main-image {
    width: 100%;
    height: auto;
    max-height: 1700px;  /* ← AUMENTE AQUI (era 550px) */
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

/* ===== SHOP SECTION ===== */
.section-padding {
    padding: 80px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cursive {
    font-family: 'Lobster', cursive;
    font-weight: 400;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-img-wrapper {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1) rotate(-5deg);
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.product-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
    font-weight: 700;
    font-size: 1.4rem;
}

/* ===== DELIVERY SECTION ===== */
.bg-section {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
}

.delivery-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-text {
    flex: 1;
}

.delivery-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.delivery-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 550px;
}

.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.form-group.full-width {
    grid-column: span 2;
}

.delivery-form input, 
.delivery-form select {
    padding: 14px 15px 14px 45px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    color: #333;
}

.delivery-form input:focus, 
.delivery-form select:focus {
    border-color: #db2e64;
    box-shadow: 0 0 0 4px rgba(219, 46, 100, 0.2);
    background: #fff;
    transform: scale(1.02);
}

.delivery-form input:focus + i,
.delivery-form select:focus + i {
    color: #db2e64;
}

.delivery-form button {
    grid-column: span 2;
}

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

.delivery-animation {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.delivery-icon {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.15);
    animation: driveDelivery 3s infinite ease-in-out;
}

@keyframes driveDelivery {
    0%, 100% { transform: translateX(-20px) rotate(-5deg); }
    50% { transform: translateX(20px) rotate(5deg); }
}

.delivery-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #000;
    padding: 20px 25px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.delivery-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.delivery-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatParticle 4s infinite;
}

.delivery-particles span:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.delivery-particles span:nth-child(2) {
    top: 30%;
    right: 10%;
    animation-delay: 1.5s;
}
.delivery-particles span:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(0); opacity: 0; }
    50% { transform: translateY(-30px) scale(1); opacity: 1; }
}

/* ===== FOOTER ===== */
footer {
    background: rgba(0, 0, 0, 0.25);
    padding: 60px 5% 20px;
    backdrop-filter: blur(4px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 10px 0;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.socials a {
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
}

.socials a:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-info li i {
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .title-cursive { font-size: 5rem; }
    .subtitle { font-size: 2.8rem; }
    .delivery-container { gap: 40px; }
}

@media (max-width: 900px) {
    #hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 100px 5% 60px;
        gap: 30px;
    }
    
    .content-left, .content-right { 
        width: 100%; 
    }
    
    .description { 
        max-width: 100%; 
        margin: 0 auto 15px; 
    }
    
    .title-cursive { 
        font-size: 4.5rem; 
    }
    
    .subtitle { 
        font-size: 2.5rem; 
    }
    
    .thumbnails { 
        justify-content: center; 
    }
    
    .main-image { 
        max-height: 350px; 
    }

    .delivery-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .delivery-form {
        margin: 0 auto;
        grid-template-columns: 1fr;
    }
    
    .delivery-form .full-width,
    .delivery-form button {
        grid-column: span 1;
    }
    
    .delivery-icon { 
        font-size: 8rem; 
    }
    
    .delivery-animation {
        width: 200px;
        height: 200px;
    }
    
    .delivery-badge {
        padding: 15px 20px;
        font-size: 1.2rem;
    }
    
    .menu-toggle { 
        display: block; 
    }
    
    .lang-selector-desktop { 
        display: none; 
    }
    
    nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        padding: 80px 30px 30px;
        transition: all 0.4s ease;
        gap: 25px;
        overflow-y: auto;
    }
    
    nav.active {
        display: flex;
        right: 0;
    }
    
    nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        display: none;
    }
    
    nav.active::before {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links a {
        font-size: 1.3rem;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .lang-selector-mobile {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
        padding-top: 20px;
      
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .lang-selector-mobile .lang-btn {
        font-size: 2rem;
          background: rgba(255, 255, 255, 0.8);
    }
    
    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .socials {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .title-cursive { font-size: 3.5rem; }
    .subtitle { font-size: 2rem; }
    .description { font-size: 0.9rem; }
    .thumb { width: 65px; height: 75px; }
    .main-image { max-height: 250px; }
    .section-title { font-size: 2rem; }
    .product-card { padding: 20px 15px; }
    .delivery-form input, .delivery-form select { padding: 12px 15px 12px 40px; font-size: 13px; }
    .btn-full { font-size: 14px; padding: 12px 20px; }
    .logo { font-size: 22px; }
}