/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #B0B0B0; /* Cinza claro */
    background-color: #0a0a0a; /* Preto profundo */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header mais premium - Dark Mode */
.header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #FFFFFF; /* Branco puro */
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    text-decoration: none;
    color: #B0B0B0; /* Cinza claro */
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #FFFFFF; /* Branco puro */
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #B0B0B0;
    transition: all 0.3s ease;
}

/* Hero Slider - Premium Dark Mode */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-slide.active {
    opacity: 1;
}

/* Prevenir overflow na página */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #FFFFFF;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 800px;
    font-weight: 300;
    color: #B0B0B0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Buttons - Melhorados Dark Mode */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #1E1E1E; /* Cinza chumbo */
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #2C2C2C;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #0a0a0a;
}

/* Seção de Benefícios (Ícones) */
.beneficios {
    background: #121212;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.beneficios-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.beneficio-item {
    text-align: center;
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #1E1E1E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.beneficio-item:hover .beneficio-icon {
    transform: translateY(-5px);
}

.beneficio-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.beneficio-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.beneficio-item p {
    font-size: 0.95rem;
    color: #B0B0B0;
    line-height: 1.6;
}

/* Seção "Nossa Essência" */
.nossa-essencia {
    background: #0a0a0a;
    padding: 120px 0;
}

.essencia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.essencia-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.essencia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.essencia-text {
    color: #FFFFFF;
}

.essencia-text .subtitulo {
    font-size: 0.9rem;
    color: #D9C5A1; /* Bege areia */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.essencia-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #FFFFFF;
}

.essencia-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #B0B0B0;
}

.essencia-text .citacao {
    font-style: italic;
    color: #D9C5A1;
    font-size: 1.2rem;
    margin-top: 2rem;
    padding-left: 2rem;
    border-left: 2px solid #D9C5A1;
}

/* Destaques Section - Dark Mode */
.destaques {
    padding: 120px 0;
    background: #0a0a0a;
}

.destaques-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.destaques h2 {
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.ver-todos {
    color: #B0B0B0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ver-todos:hover {
    color: #FFFFFF;
}

.ver-todos i {
    margin-left: 5px;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.produto-card {
    background: #1E1E1E;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.produto-imagem {
    background: #2C2C2C;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #6c757d;
    overflow: hidden;
    position: relative;
}

.produto-imagem .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0a0a0a;
    color: #FFFFFF;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.produto-card:hover img {
    transform: scale(1.05);
}

.produto-descricao-preview {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.4;
}

.produto-info {
    padding: 1.5rem;
}

.produto-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.produto-categoria {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.produto-preco {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-align: right;
}

.ver-mais {
    text-align: center;
    margin-top: 2rem;
}

/* Sobre Section - Premium Dark Mode */
.sobre {
    padding: 120px 0;
    background: #121212;
}

.sobre-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.sobre-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #B0B0B0;
    font-style: italic;
}

.sobre-text h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #D9C5A1;
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #B0B0B0;
}

.sobre-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contato Section - Melhorada Dark Mode */
.contato {
    padding: 120px 0;
    background: #0a0a0a;
}

.contato h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.contato > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #B0B0B0;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 2rem;
    color: #D9C5A1;
    margin-top: 5px;
}

.info-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.info-item p {
    color: #B0B0B0;
    line-height: 1.6;
}

.contato-form {
    background: #1E1E1E;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #B0B0B0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #2C2C2C;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #2C2C2C;
    color: #FFFFFF;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D9C5A1;
}

.form-group textarea {
    height: 180px;
    resize: vertical;
}

/* Footer - Dark Mode */
.footer {
    background: #121212;
    color: #B0B0B0;
    padding: 40px 0 20px;
    border-top: 1px solid #2C2C2C;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 50px;
    right: 20px;
    background: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4);
}

/* Depoimentos Section */
.depoimentos {
    padding: 120px 0;
    background: #121212;
}

.depoimentos h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.depoimentos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: #1E1E1E;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.depoimento-content .stars {
    color: #D9C5A1;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.depoimento-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #B0B0B0;
    font-style: italic;
}

.cliente-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cliente-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2C2C2C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D9C5A1;
    font-size: 1.5rem;
}

.cliente-dados h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: #FFFFFF;
}

.cliente-dados p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
    font-style: normal;
}

/* Nosso Fundador Section */
.fundador-section {
    padding: 120px 0;
    background: #121212;
}

.fundador-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.fundador {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.fundador-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 400px;
}

.fundador-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fundador-content {
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fundador-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #D9C5A1;
    letter-spacing: 1px;
    text-align: left;
}

.fundador-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #B0B0B0;
    text-align: left;
}

/* Garantia Section */
.garantia {
    padding: 100px 0;
    background: #0a0a0a;
}

.garantia-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.garantia-item {
    text-align: center;
    padding: 2rem;
    background: #1E1E1E;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.garantia-item:hover {
    transform: translateY(-5px);
}

.garantia-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #2C2C2C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D9C5A1;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.garantia-item:hover .garantia-icon {
    background: #D9C5A1;
    color: #0a0a0a;
    transform: scale(1.1);
}

.garantia-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.garantia-item p {
    font-size: 0.95rem;
    color: #B0B0B0;
    line-height: 1.6;
}

/* Footer Melhorado */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: left;
}

.footer-links h4,
.footer-contato h4,
.footer-redes h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D9C5A1;
}

.footer-contato p {
    margin-bottom: 0.75rem;
    color: #B0B0B0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contato i {
    color: #D9C5A1;
    width: 20px;
}

.redes-sociais {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #2C2C2C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0B0B0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D9C5A1;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 197, 161, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .sobre-content {
        gap: 3rem;
    }
    
    .contato-content {
        gap: 2rem;
    }
    
    .essencia-content {
        gap: 3rem;
    }
    
    .fundador {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .fundador {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .fundador-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .fundador-content h3 {
        font-size: 1.8rem;
    }
    
    .fundador-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #121212;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contato-content {
        grid-template-columns: 1fr;
    }

    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .essencia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .destaques h2 {
        font-size: 2rem;
    }

    .sobre-text h2 {
        font-size: 2rem;
    }

    .essencia-text h2 {
        font-size: 2rem;
    }

    .contato h2 {
        font-size: 2rem;
    }

    .destaques-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Ajustes no slider para tablets */
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-indicators {
        bottom: 20px;
    }

    .slider-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .destaques {
        padding: 60px 0;
    }

    .destaques h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .produto-imagem {
        height: 200px;
    }

    .produto-info {
        padding: 1.25rem;
    }

    .produto-info h3 {
        font-size: 1.4rem;
    }

    .produto-preco {
        font-size: 1.1rem;
    }

    .sobre {
        padding: 60px 0;
    }

    .sobre-text h2 {
        font-size: 1.8rem;
    }

    .sobre-text h3 {
        font-size: 1.3rem;
    }

    .essencia-text h2 {
        font-size: 1.8rem;
    }

    .contato {
        padding: 60px 0;
    }

    .contato h2 {
        font-size: 1.8rem;
    }

    .contato-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }

    .beneficios-container {
        gap: 2rem;
    }

    /* Ajustes no slider para celulares */
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        left: 10px;
        right: 10px;
    }

    .slider-indicators {
        bottom: 15px;
    }

    .slider-indicator {
        width: 8px;
        height: 8px;
    }

    /* Ajustes nos benefícios para celulares */
    .beneficio-icon {
        width: 70px;
        height: 70px;
    }

    .beneficio-icon i {
        font-size: 1.7rem;
    }

    .beneficio-item h3 {
        font-size: 1.1rem;
    }

    .beneficio-item p {
        font-size: 0.9rem;
    }

    /* Ajustes no formulário de contato */
    .info-item i {
        font-size: 1.5rem;
    }

    .info-item h4 {
        font-size: 1.1rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    /* Ajustes no footer */
    .footer-info h3 {
        font-size: 1.3rem;
    }

    .footer-info p {
        font-size: 0.9rem;
    }
}

/* Animações AOS */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-in"] {
    opacity: 0;
    transition: opacity 0.8s ease;
}

[data-aos="fade-in"].aos-animate {
    opacity: 1;
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}