@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

html, body{
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manjari", sans-serif !important;
  }
  
 
  body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: #FFF9F5;      
  }

  
/* ######## CARROSSEL ######### */
  .carousel-container {
    position: relative;
    max-width: 100%;
    height: 480px;
    background: #334155;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-slide > * {
    position: relative;
    z-index: 2;
}

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

.carousel-slide h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.carousel-slide p {
    font-size: 1.2rem;
    color: #fff9f5;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: #fff9f5;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 35%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 40px;
    height: 4px;
    background: #fff9f5;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ceb58d;
}

/* Progress bar animation */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #fff9f5, #ceb58d);
    width: 0%;
    transition: none;
    z-index: 10;
}

.progress-bar.animate {
    animation: progress 8s linear;
}

@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}





/* ######## CARROSSEL ######### */
  .primary-heading{
    font-size: clamp(2rem, 2vw, 4rem);
    display: flex;
    margin-top: 100px;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .primary-text {
    font-size: 1rem;
    color: #fff9f5;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  

  .card-container {
    position: relative;
  }

  /* ########################################################### */

:root {
            --color-bg-primary: #FFF9F5;
            --color-text-blue: #B8D8D8;
            --color-text-green: #C3D8CC;
            --color-text-pink: #EFC5D5;
            --color-text-purple: #D4B7D3;
            --color-hover: #D4B7D3;
        }

        /* Efeitos de transição para links */
        nav a {
            position: relative;
            text-decoration: none;
            font-weight: 500;
            
        }
        
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            
        }
        
        nav a:hover::after {
            width: 80%;
            left: 10%;
        }
        
        /* Animação do menu mobile */
        #mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }
        
        #mobile-menu.show {
            max-height: 300px;
            
        }

        /* Animação para o logo */

        /* Sombra suave na navbar ao rolar */
        .navbar-scrolled {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: box-shadow 0.3s ease;
        }

        #hamburguer-menu span{
          transition: all 0.3s ease;
          
        }

        .menu-opened span:first-child{
          transform: rotate(-45deg) translateY(11px);
        }
        .menu-opened span:nth-child(2){
          opacity: 0;
        }
        .menu-opened span:last-child{
          transform: rotate(45deg) translateY(-11px);

        }

        #menu-mobile{
          width: 0px;
          opacity: 0;
          transition: all 0.3s;
          background-color: #FFF9F5;
          text-align: center;
        }

 
  
  @media (max-width: 1000px) {
    .primary-heading{
      font-size: clamp(3rem, 3vw, 3rem);
      gap: 10px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      margin-bottom: 40px;
    }
    .primary-button{
      font-size: 1rem;
    }
    .primary-text {
      font-size: 1.4rem;
      text-align: center;
      justify-content: center;
      align-items: center;
    }
    .content-card{
      justify-content: center;
      align-items: center;
      margin-right: 1px;
      margin-bottom: -70px;
    }
    .home-primary-image img{
      width: 370px;
      height: 310px;
      object-fit: cover;
      margin-left: 5px;
    }
    .home-banner-container, .about-section-container{
      flex-direction: column-reverse;
      align-items: center;
      justify-content: center;
    }
    .about-section-container{
      flex-direction: column;
    }
  }

  .user-autenticated {
    color: #ceb58d;
    font-size: 1.4rem;
  }

  /* Cards de serviços oferecidos*/
  
  article {
    --img-scale: 1.001;
    --title-color: #ceb58d;
    --link-icon-translate: -20px;
    --link-icon-opacity: 0;
    position: relative;
    border-radius: 16px;
    box-shadow: none;
    background: #fff9f5;
    transform-origin: center;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    margin-top: 50px;
    
  }
  
  article a::after {
    position: absolute;
    inset-block: 0;
    inset-inline: 0;
    cursor: pointer;
    content: "";
  }
  
  /* basic article elements styling */
  article h2 {
    margin: 0 0 18px 0;
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    color: var(--title-color);
    transition: color 0.3s ease-out;
  }
  
  figure {
    margin: 0;
    padding: 0;
    aspect-ratio: 16 / 8;
    overflow: hidden;
  }
  
  article img {
    max-width: 100%;
    /* width: 100%;
    height: 100%; */
    transform-origin: center;
    transform: scale(var(--img-scale));
    transition: transform 0.4s ease-in-out;
  }
  article figure{
    min-height: 150px;
    height: fit-content;
  }
  
  .article-body {
    padding: 24px;
    height: 100%;
  }
  .article-body>div{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .article-title{
    color: #ceb58d;
  }
  
  /* using the has() relational pseudo selector to update our custom properties */
  article:has(:hover, :focus) {
    --img-scale: 1.1;
    --title-color: var(--bege);
    --link-icon-translate: 0;
    --link-icon-opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  }


  .articles {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
    gap: 24px;
    background-color: #FFF9F5;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .articles article {
    grid-column: span 12 / span 12;
    }

    @media (min-width: 480px){
      .articles{
        flex-direction: row;
        flex-wrap: wrap;
        background-color: #FFF9F5;
      }
      .articles article {
        grid-column: span 6 / span 6;
      }
    }
    @media (min-width:855px){
      .articles article {
        grid-column: span 4 / span 4;
    }
  }

  .detail-title {
    /* tamanho de fonte maior */
    font-size: 2.5rem;     /* ≈40 px – ajuste se quiser mais/menos */
    line-height: 1.2;

    /* cor primária do seu layout */
    color: #ceb58d;        /* troque pelo código ou nome de cor que preferir */

    /* opcional: fonte em negrito e margem inferior */
    font-weight: 700;
    margin-bottom: 1rem;

    
  }
  .text-muted{
    font-size: 1.4rem;     /* ≈40 px – ajuste se quiser mais/menos */
    margin-bottom: 30px;
  }

  .body-description{
    font-size: 1.1rem;     /* ≈40 px – ajuste se quiser mais/menos */
    margin-bottom: 30px;
    color: #ceb58d;
  }

  .body-description-blog{
    font-size: 1.4rem;     /* ≈40 px – ajuste se quiser mais/menos */
    margin-bottom: 30px;
    color: #ceb58d;
    text-align: center;
  }

  .product_detail_title {
    color: #333333;
    font-size: 2.5rem;
  }
  .product_detail_price {
    color: #333333;
    font-size: 1.5rem;
  }
  .product_detail_description {
    color: #333333;
    font-size: 1.1rem;
  }

  /* ############## Cards do painel ############ */

  .card-body {
    width: 100%;
  }


  .card-title {
    color: #ceb58d;
    font-size: 1.3rem;
  }

  .card-text {
    color: #ceb58d;
    font-size: 1rem;
  }


 

  /* Buttons */

.btn {
  border: none;
  font-size: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  padding: 20px 40px;
  display: inline-block;
  /* margin: 15px 30px; */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  outline: none;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;

}

.btn:after {
  content: '';
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

/* Pseudo elements for icons */
.btn:before {
  font-family: 'FontAwesome';
  speak-as: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  -webkit-font-smoothing: antialiased;
}


/* Icon separator */
.btn-sep {
  padding: 25px 60px 25px 120px;
}

.btn-sep:before {
  background: rgba(0,0,0,0.15);
}

/* Button 1 */
.btn-1 {
  background: #c3d8cc;
  color: #fff9f5;
}

.btn-1:hover {
  background: #efc5d5;
}

.btn-1:active {
  background: #efc5d5;
  top: 2px;
}

.btn-1:before {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  line-height: 3;
  font-size: 140%;
  width: 60px;
}

/* Button 2 */
.btn-2 {
  background: #2ecc71;
  color: #fff;
}

.btn-2:hover {
  background: #27ae60;
}

.btn-2:active {
  background: #27ae60;
  top: 2px;
}

.btn-2:before {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  line-height: 3;
  font-size: 140%;
  width: 60px;
}

/* Button 3 */
.btn-3 {
  background: #d4b7d3;
  color: #fff9f5;
}

.btn-3:hover {
  background: #efc5d5;
}

.btn-3:active {
  background: #efc5d5;
  top: 2px;
}

.btn-3:before {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  line-height: 3;
  font-size: 140%;
  width: 60px;
}

/* Button 4 */
.btn-4 {
  background: #c3d8cc;
  color: #fff9f5;
}

.btn-4:hover {
  background: #efc5d5;
}

.btn-4:active {
  background: #efc5d5;
  top: 2px;
}

.btn-4:before {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  line-height: 3;
  font-size: 140%;
  width: 60px;
}

/* Button 5 */
.btn-5 {
  background: #d4b7d3;
  color: #fff9f5;
}

.btn-5:hover {
  background: #b8d8d8;
}

.btn-5:active {
  background: #b8d8d8;
  top: 2px;
}

.btn-5:before {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  line-height: 3;
  font-size: 140%;
  width: 60px;
}

/* Button 6 */
.btn-6 {
  background: #ffe600;
  color: #343670;
}

.btn-6:hover {
  background: #343670;
  color: #ffe600;
}

.btn-6:active {
  background: #343670;
  top: 2px;
  
}

.btn-6:before {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  line-height: 3;
  font-size: 140%;
  width: 60px;
}

/* Button 7 */
.btn-7 {
  background: #2a3644;
  color: #ff9900;
}

.btn-7:hover {
  background: #ffffff;
  color: #2a3644;
}

.btn-7:active {
  background: #ffffff;
  top: 2px;
  
}

.btn-7:before {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  line-height: 3;
  font-size: 140%;
  width: 60px;
}

/* Button 8 */
.btn-8 {
  background: #f94f2f;
  color: #fdbdaf;
}

.btn-8:hover {
  background: #fdbdaf;
  color: #f94f2f;
}

.btn-8:active {
  background: #ffffff;
  top: 2px;
  
}

.btn-8:before {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  line-height: 3;
  font-size: 140%;
  width: 60px;
}

/* Button 9 */

.btn-9 {
  background: #fff9f5;
  color: #ceb58d;
}

.btn-9:hover {
  background: #ceb58d;
  color: #fff9f5;
}

.btn-9:active {
  background: #ffffff;
  top: 2px;
  
}

.btn-9:before {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  line-height: 3;
  font-size: 140%;
  width: 60px;
}

/* Button 10 */

.btn-10 {
  background: #ceb58d;
  color: #fff9f5;
}

.btn-10:hover {
  background: #fff9f5;
  color: #ceb58d;
}

.btn-10:active {
  background: #ffffff;
  top: 2px;
  
}

.btn-10:before {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  line-height: 3;
  font-size: 140%;
  width: 60px;
}


  
.sign-button{
  background-color: #ceb58d;
  color: #fff9f5;
  border: none;
  font-size: 1.2em;
}




/* Icons */

.icon-cart:before {
  content: "\f07a";
}

.icon-heart:before {
  content: "\f060";
}

.icon-info:before {
  content: "\f05a";
}

.icon-send:before {
  content: "\f56d";
}

.icon-cart:before{
  content: "\f54e";
}

.icon-search:before{
  content: "\f002";
  margin-left: -10px;
}

.icon-mercado-livre:before{
  content: "\f4c6";
}

.icon-amazon:before{
  content: "\f270";
}

.icon-shopee:before{
  content: "\f290";
}

.icon-book:before{
  content: "\f518";
}

.icon-star:before{
  content: "\f005";
}
  
  @media screen and (max-width: 960px) {
    article {
      container: card/inline-size;
    }
    
  }

  
  .article-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .article-body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  
  @container card (min-width: 1000px) {
    .article-wrapper {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .article-body {
      padding-left: 0;
    }
    figure {
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    figure img {
      height: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
    }
  }
  
  .sr-only:not(:focus):not(:active) {
    clip: rect(0 0 0 0); 
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap; 
    width: 1px;
  }



  /* ======= FOOTER ======= */
.site-footer{
  background:#fff9f5;          /* cor de fundo */
  color:#ceb58d;                  /* texto branco */
  padding:10px 0;
  font-family:Arial, sans-serif;
}

.footer-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:9rem;
  align-items:flex-start;
  flex-wrap:wrap;              /* quebra em telas menores */
}

.footer-logo img{
  width:160px;                 /* ajuste conforme a sua arte */
  margin-top: -50px;
  margin-left: 40px;

}

.footer-tables{
  display:flex;
  gap:2rem;
  flex-wrap:wrap;
}

.footer-table{
  border-collapse:collapse;
  font-size:1.2rem;
}

.footer-table thead th{
  padding-bottom:1px;
  font-size:1.5rem;
  border-bottom:1px solid #ceb58d;
  text-align: center;
}

.footer-table td{
  padding:2px 0;
  text-align:left;
}

.footer-table a{
  color:#ceb58d;
  text-decoration:none;
  transition:color .2s ease;  
  font-size:1.2rem;
}

.footer-table a:hover{
  color:#d4b7d3;               /* cor de destaque ao passar o mouse */
}
.copy {
    margin-top: 40px;
  }

/* --- responsividade simples --- */
@media (max-width:1080px){
  .footer-container{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .footer-tables{
    justify-content:center;
  }
  .footer-logo img{
  width:120px;                 /* ajuste conforme a sua arte */
  margin-top: -50px;
  margin-bottom: -80px;
  }
  .copy {
    margin-top: 40px;
  }

}


/* --- TELA DE ASSINANTES --- */

.title-subscriber {
  font-size: 1.5rem; 
  margin-bottom: 20px;
  text-align: center;
  color: #333333;
}

.subtitle-subscriber {
  font-size: 1.1rem; 
  margin-bottom: 20px;
  color: #333333;
  text-align: center;
}

.title-card-subscriber {
  font-size: 1.7rem;    
  color: #333333;
  margin-top: 15px;
  text-align: center;
}

.card-premium {
  color: #dfb017;
  text-align: center;
}

.card-subscriber-title {
  color: #333333;
  font-size: 1.4rem;    
  
}

.card-subscriber-subtitle {
  color: #575656;
  font-size: 1.1rem;    
  
}
/* Mantém o cartão ocupando 100% da altura da coluna Bootstrap */
.card.h-100{
  display: flex;          /* garante que o cartão inteiro seja flexível */
  flex-direction: column; /* conteúdo de cima para baixo */
}

/* Área interna em coluna */
.card-body{
  flex: 1 1 auto;         /* ocupa todo o espaço possível */
  display: flex;
  flex-direction: column; /* empilha título, texto e botão */
}

