:root{
    --verde:#2D4C32;
    --verdeB:#779648;
    --verdeC:#328051;
    --amarillo: #C49E2E;
    --rosado: #813C41;
    --azul: #3C4352;
    --blanco: #FEFEFE;
    --grisOscuro: #D9D9D9;
    --gris:#F4F4F4;
    --negro: #18191F;
}

body, html {
    Font-size: 13px;
    line-height: 26px;
    font-family: "Raleway",-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen-Sans,Ubuntu,Cantarell,'Helvetica Neue',sans-serif;
    text-transform: none;
    font-style: normal;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: var(--blanco) !important;
}

.row {
    width: 100%;
}

.button{
    background-color: var(--verde);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 400;
    padding: 1.3rem;
    margin: 1rem 0;
    box-shadow: 0 0.2rem 0.2rem rgba(0,0,0,.25);
    display: inline-block;
    color:var(--blanco);
    display: inline-block;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    transition: all 0.2s;
}

.button:hover {
  box-shadow: 0 7px rgba(0,0,0,.25);
}
.button:active {
  box-shadow: 0 5px rgba(0,0,0,.25);
  transform: translateY(4px);
}    
/*HEADER*/
.headerPc{
        top: 0;
        width: 100%;
        position: sticky;
        transition: top 0.3s;
    }
.headerMobile{
    display:none;
}
.header__nav{
    height: 6rem;
    background-color:#ffffffc2;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 0.2rem 0.2rem rgba(0,0,0,.25);
}
.header__nav--logo{
    width: 20%;
    display: flex;
    justify-content: center;
}
.header__nav--logo img{
    width: 200px;
    margin:10px;
    max-width:200px;
}
.header__nav--enlaces{
    min-width: 45%;
    display: flex;
    justify-content:space-between;
}
.header__nav--enlaces a{    
    text-decoration: none;
    color: var(--amarillo);
    font-size: 2rem;
    font-weight: 600;    
}
.header__nav--iconos{
    width: 10%;
    display: flex;
    justify-content: space-evenly;    
}
.header__nav--carrito{
    display: flex;
    gap:2rem;
}

.nav__cart__desplegable{
    width: 40vw;
    padding:0.5rem;
    box-shadow: 0 .2rem .2rem rgba(0,0,0,.25);
    display: none;
    background-color: var(--blanco);
    position: absolute;
    z-index: 20;
    position: fixed;
    top: 7rem;
    right: 0.5rem;
}
.iconos__redes--lateral{
    display: none;
    height: 12rem;
    width: 2rem;
    position: fixed;
    top:7rem;
    right:0.5rem;
    z-index: 10;
}
.iconos__redes--lateral{
        height: 12rem;
        width: 3rem;
        display:flex;
        flex-direction: column;
        justify-content: space-evenly;
        position: fixed;
        top:7rem;
        right:0.5rem;
        z-index: 10;
    }

.iconos__redes--lateral img{
    width: 1rem;
}

/* HEADER MOBILE */

.nav__mb{    
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    box-shadow: 0 .2rem .2rem rgba(0,0,0,.25);
    background-color: var(--blanco);
}
.nav__menu{
    display: flex;
    align-items: center;
    justify-content: space-evenly;    
}
.nav__menu img{
    cursor: pointer;
}
.nav__mb__logo{
    display: flex;
    justify-content: center;
    text-align: center;    
}
.nav__mb__logo img{
    width: 10rem;
    cursor: pointer;
    margin: 5px;
}
.nav__mb__iconos{
    display: flex;
    justify-content: space-evenly;
    margin-right: 1rem;
}
.nav__mb__iconos img:first-of-type{
    width: 2rem;
}
/* MENU HAMBURGUESA CARRITO DESPLEGABLE */
.nav__mob__desplegable{
    width: 100%;
    box-shadow: 0 .2rem .2rem rgba(0,0,0,.25);
    display: none;
    background-color: var(--blanco);
    position: absolute;
    z-index: 20;
}

.cerrar__menu{
    width: 90%;
    margin-left: 1rem;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 2rem;
    text-align:right;
}
.nav__mob__desplegable ul li{
    list-style: none;
    font-size: 2rem;
    margin: 1.5rem 0;
    text-align:center;
}
.nav__mob__desplegable li:last-of-type{
    margin-bottom: 1rem;
}
.nav__mob__visible{
    display: block;    
}
@media (max-width: 768px) {
    .headerPc{
        display:none;
    }
    .headerMobile{
        display:block;
    }
    .iconos__redes--lateral {
        display:none;
    }
}
/*FIN HEADER*/
/*FOOTER*/
.footer {
    background-color: var(--azul); /* Azul */
    color: var(--blanco); /* Blanco */
    padding: 20px;
    border-top: 3px solid var(--amarillo); /* Borde superior blanco */
    display: flex;
    flex-wrap: wrap; /* Permitir que los elementos se envuelvan en pantallas más pequeñas */
    justify-content: space-between;
    width:100%;
}

.footer__section1,
.footer__section2 {
    flex-basis: calc(50% - 10px); /* Ocupar la mitad del ancho menos el espacio entre las secciones */
    margin-bottom: 20px; /* Espacio entre las secciones */
}

@media screen and (max-width: 768px) {
    .footer__section1,
    .footer__section2 {
        flex-basis: 100%; /* Ocupar todo el ancho en pantallas pequeñas */
    }
}

.footer__logo {
    width: 100%; /* El logo se ajusta al 100% del contenedor */
    display:flex;
    text-align:center;
}

.footer__logo img{
    max-width: 150px; /* Tamaño máximo del logo */
    margin-left: auto;
    margin-right: auto;
}

.footer__menu {
    margin-top: 10px;
    display:flex;
    justify-content: center;
}

.footer__menu a {
    color: var(--blanco); /* Blanco */
    text-decoration: none;
    margin-right: 10px;
}

.footer__menu a:hover {
    text-decoration: underline;
}

.footer__section2 h2 {
    margin-bottom: 10px;
}

.footer__subscribe {
    background-color: var(--blanco); 
    color: var(--azul);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.footer__subscribe:hover {
    background-color: var(--amarillo);
}


/*FIN FOOTER*/
/*BANNER PRINCIPAL*/
.banner {
  background-image: url('/wp-content/uploads/Banner-trebol.png'); /* Reemplaza 'imagen.jpg' con la ruta de tu imagen de fondo */
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: -12px;
}

.container--banner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 90%;
  height: auto; /* Ajusta el alto del contenedor según lo requerido */
  margin-bottom:5%;
}

.box--banner {
  width: 45%; /* Ancho del 45% para los recuadros */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.box-img {
    display:none;
}
.boxL{
   background-color: #2d4c32b8; /* Transparencia del 50% */ 
}
.boxR{
    background-color: #c49e2e69; /* Transparencia del 50% */
}

.box--banner h2, .box--banner p {
  color: white;
  margin: 1rem;
  
}


 .button.buttonL,  .button.buttonR {
    width: 60%; /* Ambos elementos ocupan el 50% del contenedor */
    padding: 0.4rem; 
    margin:2% auto;
    
}
 .button.buttonL {
    float: right;
    background-color: var(--amarillo);
    color: var(--verde);
}
 .button.buttonR {
    float: left;
    background-color: var(--verde);
    color: var(--amarillo);
    
}


.button.buttonL:hover,  .button.buttonR:hover {
    background-color: var(--rosado);
    color:var(--gris);
}
@media screen and (max-width: 768px) {
    .banner {
    background-image: none; /* Reemplaza 'imagen.jpg' con la ruta de tu imagen de fondo */
    height:auto;
    }
  .container--banner {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding-bottom: 0;
    width:80%;
    margin-top: -20px;
  }
  
  .box--banner {
    width: 100%;
    margin-bottom: 20px;

  }
  
  .box-img {
      display:block;
      height: auto;
      width: 100%;
  }
  .boxL{
   background-color: var(--verde); /* Transparencia del 50% */ 
    }
    .boxR{
    background-color: var(--amarillo); /* Transparencia del 50% */
    }
  
  .box--banner h2, .box--banner p {
    text-align: center;
  }
  .text-box {
    min-height: auto;
    }
  
  .button {
    margin:2% auto;
    
  }
  .button.buttonL {
    float:none;

    }
    .button.buttonR {
    float: none;
    background-color: var(--verde);
    }
}
/* FIN BANNER PRINCIPAL*/
/*CONTENEDOR POINT HOME*/
.container__points {
    display: flex;
    margin: 4rem;
}

.icono__points {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icono__contenido__points {
    width: 15vw;
    height: 15vw;
    border-radius: 50%;
    background-color: #ccc; /* Color de fondo del icono */
}

.icono__contenido__points img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.texto__points {
    text-align: center;
    padding: 0 5vw;
}

.titulo__points {
    margin-bottom: 10px;
}

.parrafo__points {
    margin: 0;
}

@media screen and (max-width: 768px) {
    .container__points {
    flex-direction: column;
    margin:0 0 4rem 0;
    }
    .icono__contenido__points {
    width: 35vw;
    height: 35vw;
    margin: 20px;
    }
    
}

/* FIN CONTENEDOR POINT HOME*/
.call-to-action {
    background-color: var(--verde); /* Fondo azul */
    color: var(--blanco); /* Texto blanco */
    padding: 50px;
    text-align: center;
}

.cta-content {
    margin-bottom: 20px;
}

.cta-content h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

.cta-content p {
    margin: 0;
}

.button, .wc-block-components-button__text {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--amarillo);
    color: var(--blanco);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
    background-color: var(--grisOscuro); /* Fondo gris claro al pasar el ratón */
    color: var(--negro); /* Texto negro */
}

/*test*/
.test{
    background-color:var(--verde);
    height:80vh;
    text-align:center;
    color:var(--blanco);
    padding:1%;
}
/*FIN TEST*/


/* Estilos para el contenido principal */

.about {
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.illustration {
    flex: 1;
    text-align: center;
}

.illustration img {
    max-width: 100%;
    height: auto;
}

.content {
    flex: 1;
    padding: 40px;
}

.content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}
/* Fomulario*/
/* Estilos del Formulario */
.formulario-contacto {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.campo-formulario {
    margin-bottom: 15px;
}

.campo-formulario input,
.campo-formulario textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.campo-formulario input[type="submit"] {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
}

.campo-formulario input[type="submit"]:hover {
    background-color: #0056b3;
}

/* styles.css */
.custom-product-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-banner img {
    width: 100%;
    height: 50vh;
}

.product-content {
    display: flex;
    width: 95%;
    justify-content: space-between;
    padding: 20px;
}

.left-column {
    width: 60%;
}

.right-column {
    width: 100%;
    /*position: sticky;*/
    top: 20px; /* Adjust as needed */
    padding: 35px;
}

.product-extra-content {
    width: 100%;
    padding: 20px;
}

/* Product Title */
.product_title.entry-title {
    font-size: 1.8em;
    margin-bottom: 10px;
    text-align: center;
}
.product-price {
    font-size: 2em;
    color: var(--rosado); /* Bright color for visibility */
    text-align: center;
    margin-bottom: 10px;
}
.product-price {
    font-size: 2em;
    text-align: center;
    margin-bottom: 10px;
}
.woocommerce-variation-price {
    text-align: center;
    color: var(--rosado); /* Bright color for visibility */
    font-size: 1.8em;
}
.product-options {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-options .quantity {
    margin-bottom: 10px;
}
.single_add_to_cart_button {
    width: 100%;
}
.productos-relacionados {
    text-align:center;
}
@media (max-width: 1080px) {
    .product-banner img {
    height: auto;
    margin-bottom: 20px;
    }
    .product-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    }
    /* Left Column (Description) */
.left-column {
    order: 2;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* Right Column (Price and Options) */
.right-column {
    order: 1;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.product-price {
    font-size: 1.5em;
    
}


}    
/* Estilos generales para la tabla */
.variations {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.variations th,
.variations td {
    padding: 15px;
    text-align: left;
}

.variations th label {
    color: var(--negro);
    font-weight: normal;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.variations td.value {
    background-color: #fff;
    position: relative;
}

.variations select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    appearance: none;
}

.variations select:focus {
    border-color: #007cba;
    outline: none;
}

.variations .reset_variations {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #007cba;
    text-decoration: none;
}

.variations .reset_variations:hover {
    text-decoration: underline;
}

/* Estilos responsive */
@media (max-width: 768px) {
    .variations th.label,
    .variations td.value {
        display: block;
        width: 100%;
        text-align: left;
    }

    .variations th.label {
        background-color: #f1f1f1;
        border-bottom: 1px solid #ddd;
    }

    .variations td.value {
        background-color: #fff;
    }

    .variations {
        box-shadow: none;
    }

    .variations select {
        margin-bottom: 10px;
    }

    .variations .reset_variations {
        margin: 0;
        display: block;
        text-align: right;
    }
}


/* General styles for the tabs and panels */
.woocommerce-tabs {
    margin-top: 30px;
}

.woocommerce-tabs .tabs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid #e0e0e0;
}

.woocommerce-tabs .tabs li {
    margin: 0 15px 0 0;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-bottom: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-tabs .tabs li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.woocommerce-tabs .tabs li.active {
    border-color: var(--grisOscuro);
    border-radius: 5px 5px 0 0;
    background-color: #fff;
}

.woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 20px;
    
    border-top: none;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .woocommerce-tabs .tabs {
        flex-direction: row;
    }

    .woocommerce-tabs .tabs li {
        margin: 0 0 10px 0;
        padding: 10px 5px;
        text-align: center;
    }

    .woocommerce-tabs .tabs li.active {
        border-color: var(--gris);
    }

    
}


/* Toggle buttons for sections in tabs */
.woocommerce-tabs .woocommerce-Tabs-panel h2 {
    cursor: pointer;
    padding: 10px;
    background: var(--gris);
    border: 1px solid #e0e0e0;
    margin: 0 0 10px 0;
    transition: background 0.3s ease;
}

.woocommerce-tabs .woocommerce-Tabs-panel h2:hover {
    background: var(--grisOscuro);
    color: #fff;
}



/* Carrito*/
/* styles.css */

/* Define custom colors */

/* General cart page styles */
.woocommerce-cart .cart-collaterals .cart_totals {
    
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    width: 90%;
}

.woocommerce-cart table.shop_table_responsive {
    width: 90%;
    border-collapse: collapse;
    margin: 20px auto;
}

.woocommerce-cart table.shop_table_responsive th,
.woocommerce-cart table.shop_table_responsive td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}



.woocommerce-cart table.shop_table_responsive td {
    background: #fff;
}

.woocommerce-cart table.shop_table_responsive td.actions {
    text-align: right;
}

.woocommerce-cart .actions .coupon {
    margin-bottom: 10px;
}

.woocommerce-cart .actions .button {
    background: var(--verde);
    
}

.woocommerce-cart .actions .button:hover {
    background: darken(var(--verde), 10%);
}
span#cart-count {
    background-color: white;
    padding: 5px;
    color: var(--amarillo);
    font-size: 1.2rem;
}
/* Responsive styles */
@media (max-width: 768px) {
    img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail.ls-is-cached.lazyloaded {
    width: 100% !important;
    object-fit: contain;
    }
    .woocommerce-cart table.shop_table_responsive th,
    .woocommerce-cart table.shop_table_responsive td {
        display: block;
        width: 100%;
        text-align: left;
    }

    .woocommerce-cart table.shop_table_responsive th {
       display:none;
    }

    .woocommerce-cart table.shop_table_responsive td {
        border-bottom: none;
        padding: 10px 0;
    }

    .woocommerce-cart table.shop_table_responsive td:before {
        content: attr(data-title);
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }

    .woocommerce-cart .actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .woocommerce-cart .actions .button {
        width: 100%;
        margin-top: 10px;
    }

    .woocommerce-cart .actions .coupon {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* custom.css */
form.woocommerce-form.woocommerce-form-login.login {
    padding:10vh 0;
}

.login form {
    border: 1px solid var(--verde);
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
   
}

.login label {
    color: var(--rosado);
}

.login #login_error, .login .message {
    border-left: 4px solid var(--verde);
}

button.btn.btn-primary.btn-block {
    background-color: var(--verde);
    border-color: var(--verde);
    color: #fff;
    text-shadow: none;
    width:100%;
}


/* custom.css */

/* Limpiar los estilos predeterminados de WooCommerce */
.woocommerce ul.products, .woocommerce-page ul.products {
    margin: 0;
    padding: 0;
    list-style: none;
}




.custom-shop {
    width: 90%;
    margin: auto;
}

#eventplus_event_total_seats, #eventplus_event_available_seats {
	display: none;
}
.bann3r img {
    max-height: 30vh;
}

.events-plus-2.event-id-2 {
    margin: 0 5%;
}

/* custom.css */

/* Contenedor principal de "Mi cuenta" */
.my-account-container {
    margin-top: 30px;
}

/* Navegación de "Mi cuenta" */
.my-account-navigation {
    background-color: var(--rosado);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.my-account-navigation a {
    color: #fff;
    display: block;
    padding: 10px 15px;
    margin-bottom: 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.my-account-navigation a:hover {
    background-color: var(--amarillo);
    color: #333;
}

.my-account-navigation .is-active {
    background-color: var(--amarillo);
    color: #333;
}

/* Contenido de "Mi cuenta" */
.my-account-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.u-column1.col-1.woocommerce-Address {
    min-width: 100%;
}
/* Estilos responsivos */
@media (max-width: 767px) {
    .my-account-navigation {
        margin-bottom: 20px;
    }
}
/* Estilos para la página de tienda */
.shop-container {
    padding: 50px 0;
    flex-direction: column;
}

.shop-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.courses-grid, .products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width:100%;
}

.course-item, .product {
    background-color: #fff;
    border: 1px solid #eaeaea;
    padding: 20px;
    width: calc(25% - 20px); /*Ajuste para 4 columnas */
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s;
    margin: 10px 0 10px;
}
img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
    width: 100%;
    height:auto;
}


.course-item:hover {
    transform: translateY(-10px);
}

.course-link img {
    width: 100% !important;
    height: auto;
    margin-bottom: 20px;
}

.course-title {
    
    margin-bottom: 15px;
    color: #333;
    font-size: 90%;
    

}

.course-price {
    font-size: 1.2em;
    color: #000;
    margin-bottom: 15px;
}

.course-add-to-cart {
    margin-top: 10px;
}

.course-add-to-cart a {
    display: inline-block;
    background-color: #333;
    color: #fff !important;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.course-add-to-cart a:hover {
    background-color: #555;
    color: #fff !important;
}
span.onsale {
    position: absolute;
}

/* Estilos responsive */
@media (max-width: 768px) {
    .course-item .product{
        width: calc(50% - 20px); /* Ajuste para 2 columnas en pantallas pequeñas */
    }
    .products {
    flex-direction: column;
    }
    .product{
        width: 100%; /* Ajuste para 1 columna en pantallas pequeñas */
    }
    img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
    width: 100%;
    }
}

@media (max-width: 480px) {
    .course-item {
        width: 100%; /* Una columna en pantallas muy pequeñas */
    }
}

/*CSS woocommerce
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
    background-color: var(--gris); 

}
*/

/*wp button*/
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}

.whatsapp-button {
  position: relative;
  display: flex;
  align-items: center;
}

.whatsapp-button img {
  width: 80px;
  height: 80px;
}

.hover-message {
  display: none;
  position: absolute;
  right: 90px;
  background-color: #25D366;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  transition: opacity 0.3s ease; /* Agrega una transición suave */
}

.whatsapp-button:hover .hover-message {
  display: inline-block;
  opacity: 1; /* Asegura que el mensaje sea visible al pasar el cursor */
}
.accordion {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.accordion li {
  border-bottom: 1px solid #ccc;
}

.accordion h3 {
  margin: 0;
  padding: 10px;
  cursor: pointer;
  position: relative; /* Para posicionar el icono */
}

.accordion h3 i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.accordion div {
  display: none;
  padding: 10px;
  overflow: hidden;
  transition: max-height 0.3s ease-out; /* Para la animación */
}

.accordion .open div {
  display: block;
}

.accordion li:hover {
  background-color: #f5f5f5;
}