/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --secondary-orange: #FF8C42;
    --dark-gray: #2C2C2C;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --whatsapp-green: #25D366;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --header-height: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    height: var(--header-height);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Navegação */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--light-gray);
    color: var(--primary-orange);
}

.nav-link.active {
    background: var(--primary-orange);
    color: var(--white);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 16px;
}

.phone i {
    font-size: 18px;
}

.phone-link {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--secondary-orange);
}

/* Menu Toggle para Mobile */
.menu-toggle {
    display: none; /* Escondido por padrão em desktop */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark-gray);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 40px 0 80px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--whatsapp-green);
    color: var(--white);
}

.cta-button.primary:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-button.secondary {
    background: var(--primary-orange);
    color: var(--white);
}

.cta-button.secondary:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.cta-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: center;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;   
    overflow: hidden;
}

.loja-image {
    width: 100%;
    max-width: 500px;
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

/* Seções */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-gray);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    background: var(--light-gray);
    transition: var(--transition);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.product-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.product-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary-orange);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Estilo específico para o botão de cadastro de condomínio no CTA */
.cta-button.cta-cadastro-condominio {
    background: var(--white); /* Fundo branco para contraste */
    color: var(--primary-orange); /* Texto laranja */
    border: 2px solid var(--primary-orange); /* Borda laranja */
}

.cta-button.cta-cadastro-condominio:hover {
    background: var(--light-gray); /* Fundo cinza claro no hover */
    color: var(--primary-orange); /* Mantém texto laranja */
    border-color: var(--secondary-orange); /* Borda laranja mais escura no hover */
}

/* Location Section */
.location {
    padding: 80px 0;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.address {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.address i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    width: 20px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

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

.footer-logo .logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-info p {
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float-button a:hover {
    background: #1DA851;
    transform: scale(1.1);
}

.whatsapp-float-button i {
    font-size: 1.8rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        display: none; /* Esconde o menu de navegação padrão */
    }

    .header .container {
        justify-content: space-between; /* Ajusta o espaçamento */
    }

    .menu-toggle {
        display: block; /* Mostra o botão de menu */
    }

    .header .contact-info {
        display: none; /* Esconde informações de contato no mobile para dar espaço ao menu */
    }

    /* Menu Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-overlay .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    width: 90%;
    max-width: 320px;
    }

    .nav-overlay .nav-mobile .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 1.4rem;
    background: var(--light-gray);
    color: var(--dark-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    }

    .nav-overlay .nav-mobile .nav-link:hover {
    background: var(--primary-orange);
    color: var(--white);
    }

    .nav-overlay .nav-mobile .nav-link.active {
    background: var(--primary-orange);
    color: var(--white);
    }

    .nav-overlay .close-button {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--red);
        cursor: pointer;
        z-index: 9999;
    }


    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.large {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .whatsapp-float-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-button a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float-button i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 30px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .benefit-card,
    .product-card {
        padding: 25px 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        margin: 0 10px;
    }
}

