
 /* Estilo básico para modais */

 .icon-info {

     display: inline-flex;
     align-items: center;
     justify-content: center;

     width: 18px;
     height: 18px;

     margin-left: 4px;

     border-radius: 50%;

     border: 1px solid rgba(212, 175, 55, 0.75);

     color: #d4af37;

     font-size: 11px;
     font-weight: 700;
     line-height: 1;

     background: rgba(212, 175, 55, 0.08);

     vertical-align: middle;

     transition:
         background .25s ease,
         border-color .25s ease,
         transform .25s ease;
 }

 .icon-info:hover {
     background: rgba(212, 175, 55, 0.18);
     border-color: #f3d57a;
     transform: scale(1.06);
 }

 a {
     color: var(--gold-soft);
     font-weight: bold;
 }

 b {
    color: #d4af37;
 }

 .modal-content h2 {
    margin-top: 40px !important;
    color: #d4af37;
}



 .modal {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;
     background: rgba(0, 0, 0, 0.6);
 }

 .modal-content {
     background: #111;
     color: #fff;
     margin: 5% auto;
     padding: 20px;
     border-radius: 10px;
     max-width:700px;
     position: relative;
 }

 .close {
     color: #ffffff;
     border: 1px solid;
     border-radius: 10px;
     padding: 5px;
     position: absolute;
     top: 10px;
     right: 10px;
     font-size: 18px;
     font-weight: bold;
     cursor: pointer;
 }

 .close:hover {
     color: #000;
     background-color: #d4af37;
     text-decoration: underline;
 }


/*REGINA FIDEI QUEM SOMOS*/

#modalRegina {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.75);
}

#modalRegina .modal-content {
    background: #111;
    margin: 5% auto;
    padding: 30px;
    width: 80%;
    max-width: 700px;
    border-radius: 12px;
    color: #FFF;
}


 /*CAROUSEL DE IMAGENS*/
 .montligeon-carousel {
     position: relative;
     max-width: 70%;
     margin: 20px auto;
     overflow: hidden;
     border-radius: 12px;
 }

 .carousel-container img {
     width: 100%;
     display: none;
     border-radius: 12px;
 }

 .carousel-container img.active {
     display: block;
     animation: fade 1s;
 }

 /* Animação de fade */
 @keyframes fade {
     from {
         opacity: 0.4;
     }

     to {
         opacity: 1;
     }
 }

 /* Botões */
 .montligeon-carousel .prev,
 .montligeon-carousel .next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(0, 0, 0, 0.5);
     color: #fff;
     border: none;
     padding: 6px 13px;
     cursor: pointer;
     border-radius: 50%;
     font-size: 18px;
 }

 .montligeon-carousel .prev {
     left: 10px;
 }

 .montligeon-carousel .next {
     right: 10px;
 }

 .montligeon-carousel .prev:hover,
 .montligeon-carousel .next:hover {
     background: rgba(0, 0, 0, 0.8);
 }

 .ebook-img {
     height: 200px;
     width: auto;
     border-radius: 6px;
     transition: transform 0.6s ease;
     /* transição suave */
 }

 .ebook-img:hover {
     transform: scale(1.1);
     /* zoom leve ao passar o mouse */
 }

 /* Botão fixo */

 .jaMembroDesktop {
   display: flex;
     justify-content: flex-end;
     padding: 15px 15px 0 15px;
 }

 .jaMembroDesktop a {
     position: relative;
     top: 10px;
     /* distancia do topo */
     right: 10px;
     z-index: 999;
     width: 180px;
     background-color: #866616;
     border: 2px solid #fff;
     border-radius: 20px;
     text-decoration: underline;
     color: #fff;
     align-items: center;
     padding: 10px;
     font-size: 13px;
     font-weight: 600;
     text-align: center;
     transition: background 0.3s;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
 }

 .jaMembroDesktop a:hover {
     background-color: #640e0e;
 }


 @media (max-width: 600px) {

     .hero {
        padding:0 ;
     }
   
     .hero h2 {
         padding: 0px 10px 20px !important;
         margin: 0;
     }

     h3 {
         font-size: 1.6rem;
         line-height: 32px;
     }

     .nota-plano {
         font-size: 1rem;
     }

     .btn {
         margin: 20px 20px 0 0;
         font-size: 17px !important;
     }

     .ebook-img {
         margin-left: 10px;
     }

     .montligeon-carousel {
         max-width: 100%;
     }

     .jaMembroDesktop a {
         top: 0px;
         bottom: 10px;
         max-width: 150px;
         font-size: 10px;
         padding: 5px;
     }

 }