/* ===== VARIÁVEIS ===== */
:root {
    --primary-pink: #ff69b4;
    --light-pink: #fff0f5;
    --dark-pink: #ff1493;
    --soft-pink: #ffe4ec;
    --white: #ffffff;
    --gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-color: #2c3e50;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== UTILITÁRIOS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-pink);
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--dark-pink));
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 5px 0;
    background: rgba(255,255,255,0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-pink);
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
    border-color: var(--dark-pink);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-pink);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO / CARROSSEL ===== */
.hero {
    height: 100vh;
    position: relative;
    margin-top: 80px;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.slide-content {
    color: var(--white);
    z-index: 2;
    padding: 20px;
    max-width: 800px;
    margin-bottom: 60px; /* Espaço para o botão não sobrepor */
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--white);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-pink);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 120px; /* Ajustado para não sobrepor o botão */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-pink);
    transform: scale(1.2);
}

.btn-whatsapp {
    position: absolute;
    bottom: 40px; /* Ajustado para desktop */
    left: 50%;
    transform: translateX(-50%);
    background: #25d366;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    white-space: nowrap; /* Evita quebra de linha */
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateX(-50%) scale(1.05);
}

/* ===== SEÇÕES ===== */
section {
    padding: 80px 0;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--dark-pink);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Products Section (com fotos) */
.products {
    background: var(--light-pink);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255,105,180,0.3);
}

.product-image {
    width: 100%;
    height: 220px; /* Altura reduzida para não ficar tão grande */
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mudado de cover para contain para não cortar a imagem */
    background-color: #f9f9f9; /* Fundo suave para imagens com fundo transparente */
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05); /* Reduzido de 1.1 para 1.05 */
}

.product-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: var(--dark-pink);
}

.product-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* Gallery Carousel */
.gallery-carousel {
    position: relative;
    max-width: 900px; /* Reduzido de 1000px */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    height: 450px; /* Altura reduzida de 500px para 450px */
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mudado de cover para contain */
    background-color: #f5f5f5; /* Fundo neutro */
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--dark-pink);
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 10;
}

.gallery-btn:hover {
    background: var(--primary-pink);
    color: var(--white);
}

.gallery .prev {
    left: 20px;
}

.gallery .next {
    right: 20px;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-dots .dot {
    background: rgba(255,255,255,0.5);
}

.gallery-dots .dot.active {
    background: var(--primary-pink);
}

/* Menu Section (imagem) */
.menu {
    background: var(--gray);
}

.menu-image-container {
    max-width: 700px; /* Reduzido de 800px */
    margin: 0 auto;
    text-align: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.menu-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.menu-image:hover {
    transform: scale(1.02);
}

.btn-menu-whatsapp {
    display: inline-block;
    margin-top: 30px;
    background: #25d366;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-menu-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* Reviews Section */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,105,180,0.2);
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.reviewer h4 {
    color: var(--dark-pink);
    margin-bottom: 5px;
}

.reviewer p {
    color: #666;
    font-size: 0.9rem;
}

/* Location Section */
.location-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-info {
    padding: 40px;
    background: var(--primary-pink);
    color: var(--white);
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.location-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info i {
    font-size: 1.2rem;
}

.map-container {
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-info {
    text-align: center;
}

.footer-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--primary-pink);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-pink);
}

.footer-contact h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-pink);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
    .btn-whatsapp {
        bottom: 30px;
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .carousel-dots {
        bottom: 100px;
    }
}

@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .slide-content {
        margin-bottom: 80px;
    }
    
    .btn-whatsapp {
        bottom: 30px;
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .carousel-dots {
        bottom: 100px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-slide {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease-in-out;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .slide-content {
        margin-bottom: 100px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
    }
    
    .btn-whatsapp {
        bottom: 40px;
        padding: 12px 25px;
        font-size: 1rem;
        white-space: normal; /* Permite quebra em mobile */
        max-width: 90%;
        text-align: center;
    }
    
    .carousel-dots {
        bottom: 120px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .gallery-slide {
        height: 300px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .slide-content {
        margin-bottom: 120px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
    }
    
    .btn-whatsapp {
        bottom: 30px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .carousel-dots {
        bottom: 100px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-slide {
        height: 250px;
    }
    
    .btn-menu-whatsapp {
        padding: 12px 25px;
        font-size: 1rem;
    }
}