body {
    margin: 0;
    /*overflow-x: hidden;
    overflow-y: auto; */
    font-family: Arial, sans-serif;
    color: white;
}

.carousel-container {
    width: 100%;
    height: 100vh; /* Ajustado para ocupar a altura total da viewport */
    overflow: hidden;
    position: relative; /* Alterado para relative para fluir com o conteúdo */
    margin-top: 100px; /* Para não ficar por baixo do navbar */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1025px) {
  .carousel-container {
    height: 50vh; /* Reduz a altura do carrossel para 50% da tela */
    /* Você pode ajustar este valor como preferir: 60vh, 400px, etc. */
    margin-top: 70px;
  }
}

/* Para telas com largura máxima de 480px (celulares em modo retrato) */
@media (max-width: 480px) {
  .carousel-container{
    height: 40vh; /* Uma altura ainda menor para telas bem pequenas */
  }
}

.top-left-logo {
    position: fixed;
    top: 10px;
    left:50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(254, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 5px 5px;
   
    
}

.top-left-logo .logo {
    width: 400px;
    /*height: auto; 
    max-width: 100%;
    min-width: 70%;*/
    display: block;
}

.overlay-content {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}


/* Responsividade para dispositivos móveis */


@media (max-width: 768px) {
    .top-left-logo .logo {
        width: 150px;
    }
    
    .top-left-logo {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px;
    }
      
}

@media (max-width: 901px) {

 .top-left-logo .logo {
        width: 250px;

}
}

/* Rodapé */
.footer {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0px 20px 05px;
    z-index: 5;
    margin-top: 50px; /* Adicionado um espaçamento superior */
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.footer-section p {
    font-size: 0.95em;
    line-height: 1.8;
    margin: 8px 0;
}

.footer-section p.destaque-contato {
    font-size: 1.2em; /* Destaque maior */
    font-weight: bold;
    line-height: 1.8;
    margin: 10px 0; /* Mais espaçamento */
    transition: transform 0.3s ease; /* Transição para o hover */
}

.footer-section p.destaque-contato:hover {
    transform: translateX(5px); /* Efeito de movimento no hover */
}

.footer-section p.telefone-whatsapp a {
    color: #25D366; /* Cor verde para o telefone */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-section p.telefone-whatsapp a:hover {
    color: #1DA851; /* Tom mais escuro no hover */
}

.footer-section p.email-link a {
    color: #fff; /* Mantém a cor branca para o e-mail */
}

.footer-section p.email-link a:hover {
    color: #ddd;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ddd;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-social i {
    font-size: 1.5em;
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    padding-right: 30px;
    padding-left: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85em;
}

/* Responsividade do rodapé */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        min-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
}



/* Menu de Navegação */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(254, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li a {
    color: #1e3c72;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active,
.nav-menu li a:focus {
    background: rgba(42, 82, 152, 0.15);
    color: #2a5298;
}

/* Páginas Internas */
.page-content {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e8ba3 100%);
    padding: 80px 20px 60px; /* Ajustado o padding superior */
    min-height: auto; /* Removido min-height para seções */
}

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

.page-title {
    font-size: 3em;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 50px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    color: #333;
}

.blog-date {
    font-size: 0.9em;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

.blog-content h2 {
    font-size: 1.5em;
    color: #1e3c72;
    margin-bottom: 15px;
}

.blog-content p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.read-more {
    color: #2a5298;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1e3c72;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.2em;
    font-weight: 600;
    color: #1e3c72;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(42, 82, 152, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 1em;
    line-height: 1.7;
    margin: 0;
}

.faq-contact {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-contact h2 {
    font-size: 2em;
    color: #1e3c72;
    margin-bottom: 15px;
}

.faq-contact p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
}

.contact-button {
    display: inline-block;
    background: #2a5298;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

.contact-button:hover {
    background: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-badge.new {
    background: #51cf66;
}

.product-badge.romantic {
    background: #ff6b9d;
}

.product-content {
    padding: 25px;
    color: #333;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h2 {
    font-size: 1.6em;
    color: #1e3c72;
    margin-bottom: 15px;
}

.product-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-features span {
    background: rgba(42, 82, 152, 0.1);
    color: #2a5298;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 500;
}

.product-features i {
    margin-right: 5px;
}

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

.product-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85em;
    color: #666;
}

.price-value {
    font-size: 1.8em;
    font-weight: 700;
    color: #1e3c72;
}

.price-info {
    font-size: 0.8em;
    color: #888;
}

.product-button {
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(42, 82, 152, 0.3);
}

.product-button:hover {
    background: #1DA851 ;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 60, 114, 0.4);
}

.cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-section h2 {
    font-size: 2.2em;
    color: #1e3c72;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #2a5298;
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

.cta-button:hover {
    background: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

/* Responsividade para páginas internas */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu li a {
        font-size: 0.9em;
        padding: 6px 12px;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .page-subtitle {
        font-size: 1.1em;
    }
    
    .blog-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 8px;
    }
    
    .nav-menu li a {
        font-size: 0.8em;
        padding: 5px 8px;
    }
}



/* Botão Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: #1e3c72;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Responsividade do Menu Hambúrguer */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(254, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px;
        font-size: 1.2em;
    }
    
    .nav-logo img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        height: 50px;
    }
    
    .nav-menu {
        top: 70px;
    }
}



/* Estilos para Páginas de Posts de Blog Individuais */
.full-blog-post {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #333;
    margin-bottom: 50px;
}

.post-main-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.post-title {
    font-size: 2.5em;
    color: #1e3c72;
    margin-bottom: 20px;
    text-align: center;
}

.full-blog-post .blog-date {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1em;
    color: #666;
}

.full-blog-post p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.back-to-blog {
    display: inline-block;
    background: #2a5298;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background: #1e3c72;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .full-blog-post {
        padding: 20px;
    }

    .post-title {
        font-size: 1.8em;
    }

    .full-blog-post p {
        font-size: 1em;
    }


}

