:root {
    --primary: #0075c3;
    /* Azul */
    --secondary: #e43724;
    /* Vermelho */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-height: 72px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    width: 200px;
    height: 35px;
    max-height: 100%;
    margin-top: 10px;
}

.logo h1 {
    font-size: 1.8rem;
}

.logo span {
    color: var(--primary), var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* faz o vídeo preencher e cortar corretamente */
    z-index: -1;
    display: block;
}

@media (max-width: 768px) {
    .hero-video {
        height: auto;
        min-height: 110vh;
        object-fit: cover;
        /* pode mudar pra 'cover', 'contain', ou 'fill' */
    }
}

.hero-img-mobile {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-video {
        display: none;
    }

    .hero-img-mobile {
        display: block;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
    height: 100px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 1;
    animation: fadeOutOnly 5s ease-in-out forwards;
}



@media (max-width: 768px) {
    .hero-video {
        display: none;
    }

    .hero-img-mobile {
        display: block;
    }
}


@keyframes fadeOutOnly {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #f61919;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #2472a4;
}

.btn-accent {
    background-color: var(--primary);
    color: var(--dark);
}

.btn-accent:hover {
    background-color: #e81b1b;
}


/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 2rem;
}



.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Product Categories */
.product-details {
    font-size: 0.85em;
    color: #666;
    display: block;
    margin-top: 4px;
}

.categories {
    padding: 3rem 2rem;
    background-color: var(--light);
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.categories-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-tab {
    padding: 0.8rem 1.5rem;
    background-color: linear-gradient(135deg, var(--secondary), var(--primary));
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-tab.active {
    background-color: linear-gradient(135deg, var(--secondary), var(--primary));
}

.category-tab i {
    font-size: 1.2rem;
}

.products-grid {
    display: none;
}

.products-grid.active {
    display: grid;
    /* ou block, dependendo do seu layout */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.product-image .btn-buy {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 10px 20px;
    background-color: #ff0000;
    color: white;
    border: none;
    cursor: pointer;
}


.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-category {
    display: inline-block;
    background-color: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #666;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-price span {
    font-size: 0.9rem;
    color: #2d2d2d;
    margin-left: 0.5rem;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.avaliacao {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 20px;


}



.product-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 2rem;
    text-align: center;

}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promo-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.countdown {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    min-width: 70px;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: white;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--primary), var(--secondary);
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary), var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}


.program-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.program-card p {
    font-size: 1rem;
    opacity: 0.9;
}

.about-image video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* ou 'contain' se quiser mostrar tudo sem corte */
    border-radius: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 1rem;
    background-color: white;
    overflow: hidden;
    /* evita rolagem vertical */
}

.testimonials h2 {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
}

.testimonials-wrapper {
    width: 100%;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 0;
    width: 100%;
    justify-content: flex-start;
    /* importante */
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-slider {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.testimonial-item img {
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .testimonial-item {
        flex: 1 1 100%;
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.contact p {
    color: white;
}


.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary), var(--secondary);
}

.contact-info p {
    color: white;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary), var(--secondary);
    margin-top: 0.3rem;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-details p,
.contact-details a {
    color: #fff6f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary), var(--secondary);
}

.contact-form {
    background-color: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #000000;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #e01e1e;
}

/* Map Section */
.map {
    height: 500px;
    position: relative;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    padding: 1rem 2rem;
    background-color: var(--primary), var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #e01e1e;
}

.variation-select{
    background-color: var(--primary)    ;
    border-radius: 50px;
    padding: 6px;
    font-size: 19px;
    color: white;
}

.variation-select::-ms-expand{
    border-radius: 60px;

}


/* Footer */
footer {
    background-color: var(--dark);
    color: rgb(0, 0, 0);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links i {
    font-size: 0.8rem;
}

.footer-bottom h4 {
    color: #0000008d;
    line-height: 1.8;
}

.footer-bottom h4 a {
    color: #000000a3;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgb(0, 0, 0);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #000000;
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background-color: white;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.052);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    right: 70px;
}

/* Quick Actions */
.quick-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgb(0, 0, 0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.action-btn.call {
    background-color: var(--primary), var(--secondary);
}

.action-btn.email {
    background-color: var(--primary), var(--secondary);
}

.action-btn.quote {
    background-color: var(--primary), var(--secondary);
}

.action-btn.community {
    background-color: var(--primary), var(--secondary);
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-tooltip {
    position: absolute;
    left: 60px;
    background-color: white;
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.action-btn:hover .action-tooltip {
    opacity: 1;
    left: 50px;
}

/* Brick Animation */
.brick-animation {
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.brick {
    position: absolute;
    width: 100px;
    height: 50px;
    background: url('https://images.unsplash.com/photo-1596541223131-5a2a0a5d0a89?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0;
    animation: fall 10s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Tile Animation */
.tile-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.tile {
    position: absolute;
    width: 80px;
    height: 80px;
    background: url('https://images.unsplash.com/photo-1622372738946-62e02505feb3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80') center/cover;
    opacity: 0;
    animation: float 15s linear infinite;
}

@keyframes float {
    0% {
        transform: translateX(-100px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateX(calc(100vw + 100px)) rotate(360deg);
        opacity: 0;
    }
}

/* Electric Animation */
.electric-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.bolt {
    position: absolute;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0;
    animation: zap 8s linear infinite;
}

@keyframes zap {
    0% {
        transform: translateY(-50px) scale(0.5);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    10% {
        transform: translateY(50px) scale(1);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .promo-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    nav ul {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 35%;
        height: calc(100vh - 72px);
        background-color: var(--secondary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: all 0.5s ease;
    }

    nav ul.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 50px;
        margin-bottom: 1rem;
    }

    .newsletter-btn {
        border-radius: 50px;
    }

    .quick-actions {
        bottom: 100px;
        left: 15px;
    }

    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.6rem 1.4rem;
    }

    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .brick {
        width: 80px;
        height: 40px;
    }

    .tile {
        width: 60px;
        height: 60px;
    }

    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }

    .community h2 {
        font-size: 2rem;
    }
}

.success-message {
    display: none;
    color: rgb(0, 153, 51);
    margin-top: 15px;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;

}

.product-description {
    margin-top: 10px;
    background-color: #f3f3f3;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}