 * {
     margin: 0;
     padding: 0;
 }

 html,
 body {
     max-width: 100% !important;
     overflow-x: hidden !important;
 }

 /*Codigo importante para eliminar el error del espacio blanco! */
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Tangerine:wght@400;700&display=swap');

 body {
     font-family: 'Montserrat', sans-serif;
 }

 /* Programacion css para reutilizar en cada boton*/
 .seccionBotones {
     position: relative;
 }

 .redondeo {
     border-radius: 30px;
 }

 /* Hero code*/
 .hero-section {
     background: url(img/pexels-lukas-616358.jpg);
     background-size: cover;
     background-position: 0;
     height: 60vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     color: #fff;
     position: relative;
     overflow: hidden;
     padding: 20px;
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 .hero-content {
     z-index: 2;
     max-width: 800px;
 }

 .hero-content h2 {
     font-family: 'Tangerine', sans-serif;
     font-size: 4em;
     margin-bottom: 10px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
     color: #000000;
 }

 .hero-content p {
     font-size: 1.5em;
     margin-bottom: 30px;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
     line-height: 1.4;
 }

 .hero-content a {
     display: inline-block;
     padding: 15px 30px;
     background-color: #E91E63;
     color: #fff;
     text-decoration: none;
     border-radius: 50px;
     font-family: 'Montserrat', sans-serif;
     font-size: 1.1em;
     font-weight: bold;
     transition: background-color 0.3s ease, transform 0.3s ease;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
 }

 .hero-content a:hover {
     background-color: #C2185B;
     transform: translateY(-5px);
 }

 /* Fin del codigo hero */

 /*Codigo menu*/
 .menu {
     min-height: 50vh;
     background-color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 50px 20px;
 }

 .interior-menu {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: row;
     flex-wrap: wrap;
     max-width: 1100px;
     width: 100%;
     gap: 50px;
 }

 .titulo-menu {
     font-family: 'Tangerine', sans-serif;
     font-size: 4em;
     margin-bottom: 10px;
     text-align: center;
     /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
     color: #000000;
 }

 .interior-menu .img-menu {
     flex: 1 1 300px;
     width: 100%;
     text-align: center;
 }

 .interior-menu img.img-menu {
     width: 100%;
     max-width: 450px;
     height: auto;
     object-fit: cover;
     border-radius: 15px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 .interior-menu .presentacion-menu {
     flex: 1 1 300px;
 }

 .interior-menu .presentacion-menu p {
     font-size: 18px;
     line-height: 1.8;
     margin-bottom: 30px;
     color: #555;
 }

 .btn-menu {
     /*BOTON*/
     font-size: 18px;
     display: inline-block;
     background-color: #ffe4e1;
     text-decoration: none;
     color: #333;
     padding: 15px 40px;
     transition: all 0.3s ease;
     border-radius: 50px;
     font-weight: 600;
     letter-spacing: 1px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .btn-menu:hover {
     background-color: #ffb6c1;
     transform: translateY(-3px);
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
 }

 @media (max-width: 768px) {
     .interior-menu {
         flex-direction: column;
         gap: 30px;
     }

     .interior-menu .presentacion-menu {
         text-align: center;
         padding: 0 10px;
     }
 }

 /*Fin de la programacion del boton menu*/


 /*Inicio de la programacion del menu contacto*/

 .contact-section {
     padding: 80px 20px;
     background-color: #f9f9f9;
     text-align: center;
 }

 .contact-container {
     display: flex;
     justify-content: center;
     align-items: flex-start;
     flex-wrap: wrap;
     gap: 30px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .contact-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 20px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
     flex: 1 1 250px;
     border-bottom: 5px solid #ff69b4;
     transition: transform 0.3s ease;
 }

 .contact-card:hover {
     transform: translateY(-10px);
 }

 .contact-card i {
     font-size: 40px;
     color: #ff69b4;
     margin-bottom: 20px;
 }

 .contact-card h3 {
     font-size: 24px;
     margin-bottom: 15px;
     color: #333;
     font-family: 'Montserrat', sans-serif;
 }

 .contact-card p {
     color: #666;
     line-height: 1.6;
 }

 .contact-text {
     color: #666;
     line-height: 1.6;
     margin-bottom: 3vh;
 }

 @media (max-width: 768px) {
     .contact-container {
         flex-direction: column;
         align-items: center;
     }

     .contact-card {
         width: 100%;
         max-width: 350px;
     }
 }

 /*carousel styles*/
 .carousel-section {
     background-color: #ffafcc;
     padding: 50px 0;
     overflow: hidden;
 }

 .carousel-container {
     width: 80%;
     margin: 0 auto;
     overflow: hidden;
     position: relative;
     border-radius: 20px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 .carousel-track {
     display: flex;
     transition: transform 0.5s ease-in-out;
     width: 100%;
 }

 .carousel-slide {
     min-width: 100%;
     height: 400px;
 }

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

 @media (max-width: 768px) {
     .carousel-slide {
         height: 250px;
     }

     /* Hero Responsive */
     .hero-section {
         height: 50vh;
         padding: 40px 10px;
     }

     .hero-content h2 {
         font-size: 2.5em;
     }

     .hero-content p {
         font-size: 1.2em;
     }

     /* Contact Responsive Improvements */
     .contact-section {
         padding: 50px 15px;
     }

     .contact-container {
         gap: 20px;
     }

     .contact-card {
         width: 100%;
         max-width: 250px;
     }
 }