/* Copyright (c) 2025 by Leonam Silva de Souza (https://codepen.io/leonam-silva-de-souza/pen/raBmdbQ) */
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

:root {
    --main-color: #65D2E0;
    --black900: #01010F;
    --black400: #555555;
    --black100: #3A3A3A;
    --white: #FFFFFF;
    --white100: #F7F7F7;

    --shadow-black100: 0 5px 15px rgba(0, 0, 0, .1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kaushan Script', cursive;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: normal;
    overflow-x: hidden;
    background-color: var(--white100);
}

::before, ::after {
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
.container {
    max-width: 1100px;
    margin: auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.justify-content-between {
    justify-content: space-between;
}
.align-items-center {
    align-items: center;
}
.full-screen {
    padding: 80px 0 0;
    min-height: 100vh;
}
.section-padding {
    padding: 80px 0;
}
.full-width {
    width: 100%;
}

.section-title {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;
    text-align: center;
}
.section-title .title {
    font-size: 2.2rem;       /* Tamaño grande (ajusta según necesites) */
    color: #8dc100;          /* Color verde claro (#8dc100) */
    text-align: center;      /* Centrado (opcional) */
    margin-bottom: 2rem;     /* Espacio inferior */
    font-weight: bold;       /* Negrita (opcional) */
    text-transform: uppercase; /* Mayúsculas (opcional) */
}
.section-title .title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    border-radius: 4px;
    z-index: -1;
    opacity: .1;
}

.section-title .subtitle {
    font-size: 30px;
    color: var(--black900);
    font-weight: 700;
    line-height: 38px;
}

.btn1 {
    background-color: var(--main-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    transition: all .3s ease-out;
}
.btn1:hover {
    border: 1px solid var(--main-color);
    background-color: transparent;
    color: var(--main-color);
}

.effect-wrap .effect {
    position: absolute;
    z-index: -1;
}
.effect1 {
    width: 30px;
    height: 30px;
    border: 4px solid var(--main-color);
    right: 10%;
    bottom: 10%;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.effect2 {
    left: 3%;
    bottom: 8%;
    width: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    animation: topbounce 3s ease-in-out infinite;
}

@keyframes topbounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(25px);
    }
}

.effect2 div {
    height: 3px;
    width: 3px;
    background-color: var(--main-color);
    margin: 0 3px 8px;
}

.effect3 {
    border-top: 30px solid transparent;
    border-left: 30px solid var(--white);
    left: 30%;
    top: 20%;
    animation: spin 15s linear infinite;
}
.effect3::before {
    content: '';
    border-top: 30px solid transparent;
    border-left: 30px solid var(--white);
    position: absolute;
    left: -35px;
    top: -25px;
    opacity: .5;
}

.effect4 {
    height: 50px;
    width: 50px;
    right: 14%;
    top: 30%;
    display: flex;
    justify-content: space-between;
    border-radius: 50%;
    overflow: hidden;
    animation: spin 15s linear infinite;
}

.effect4 div {
    width: 1px;
    background-color: var(--main-color);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 90%;
  margin-top: 5%;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ccc;
}

/*Button*/

.catalogo-button-container {
    display: flex;
    justify-content: center;  /* Esto centra horizontalmente */
    align-items: center;      /* Esto centra verticalmente si tiene altura */
    margin-top: 2em;          /* Espacio arriba */
}

.catalogo-button {
    background: linear-gradient(90deg, #65D2E0, #8dc100);
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    padding: 0.75em 2em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.catalogo-button:hover {
    background: linear-gradient(90deg, #8dc100, #65D2E0);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.catalogo-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}



/*NAVBAR*/

.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 25px;
    transition: all .5s ease;
}
.navbar.sticky {
    padding: 10px 25px;
    box-shadow: var(--shadow-black100);
    background-color: var(--main-color);
}
.navbar .container {
    padding: 0 10px;
}
.navbar .menu .nav-item {
    display: inline-block;
    margin-right: 30px;
}
.navbar .menu .nav-item .nav-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    display: block;
    text-transform: capitalize;
}

.logo a {
    font-size: 15px; /* Tamaño del texto */
    color: #8dc100;
    font-weight: 700;
    text-transform: capitalize;
    display: flex; /* Alinea elementos horizontalmente */
    align-items: center; /* Centra verticalmente */
}
.logo img {
    height: 110px; /* Ajusta el tamaño de la imagen */
    width: auto; /* Mantiene la proporción */
    margin-right: 8px; /* Espacio entre la imagen y el texto */
}

.menu-btn {
    color: var(--white);
    background-color: var(--main-color);
    height: 34px;
    width: 44px;
    padding: 0;
    border-radius: 5px;
    line-height: 34px;
    text-align: center;
    font-size: 18px;
    display: none;
    box-shadow: var(--shadow-black100);
    cursor: pointer;
}

/*HOME*/
.home-section {
    position: relative;
}
.home-section::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 150%;
    bottom: 0;
    background-color: #010f1d;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Para que sea responsivo */
    gap: 0px;
}

.home-text.left-text {
    margin-right: -95px; /* Ajusta este valor según lo pegado que lo quieras */
}

.home-text.right-text {
    margin-left: -85px; /* Ajusta este valor según lo pegado que lo quieras */
}

.home-text.left-text h2,
.home-text.right-text h2 {
   font-size: 130px;
    font-weight: 800;
    color: var(--white);
    line-height: 150px;
    background: linear-gradient(90deg, #65D2E0, #8dc100);
    -webkit-background-clip: text;
    color: transparent;
    align-self: flex-start; /* Hace que se alineen hacia arriba */
    margin-top: -50px; 
}


.home-image .img-box {
    max-width: 400px;
    margin: auto;
}

.home-image .img-box img {
    width: 100%;
    animation: productAnimation 5s linear infinite;
}

@keyframes productAnimation {
    0%, 100% {
        transform: translateY(15px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Estructura específica para esta sección */
.about-section {
    position: relative;
    z-index: 1;
    padding: 80px 15px;
}

.about-section::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: #ebfdff;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.about-features {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-section .title {
    font-size: 2.2rem;
    color: #8dc100;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}
.feature {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature h3 {
    color: #9c164e;
    text-align: center;
    margin: 0 auto 15px;
    width: fit-content;
    display: block;
    font-size: 1.5rem;
}

.feature p {
    text-align: justify;
    text-justify: inter-word;
    margin: 10px 0;
    line-height: 1.6;
    color: var(--black400);
    font-size: 1rem;
}

/* Contenedor de la imagen */
.img-box {
    perspective: 1000px;
}

/* Imagen con efecto de volteo */
.img-box img {
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Al pasar el mouse, la imagen gira */
.img-box:hover img {
    transform: rotateY(180deg);
}
#main-watch {
    transform-style: preserve-3d;
    animation: girar-sola 8s linear infinite;
}

@keyframes girar-sola {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Ajusta el tamaño de los iconos */
.feature img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
    transition: transform 0.3s ease;
}

.feature img:hover {
    transform: scale(1.1);
}

/*PRODUCT*/
.product-items {
    position: relative;
    z-index: 1; /* Asegura que el contenido quede arriba del fondo */
}

.product-items::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(11,35,49,255) 0%, rgba(11,35,49,255) 100%);
    background-repeat: no-repeat;
    background-size: cover;
}

.product-items .title {
    font-size: 2.2rem;       /* Tamaño grande (ajusta según necesites) */
    color: #8dc100;          /* Color verde claro (#8dc100) */
    text-align: center;      /* Centrado (opcional) */
    margin-bottom: 2rem;     /* Espacio inferior */
    font-weight: bold;       /* Negrita (opcional) */
    text-transform: uppercase;
}

.swiper {
	display: flex;
	justify-content: center;
	gap: 20px;
	max-width: 300px;
        
}

.swiper-slide {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #8dc100;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.details {
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 0 10px;
	border-radius: 12px 12px 0 0;
	background-color: white;
}

.details h3 {
	font-size: 12px;
	font-weight: bold;
}

.details p {
	background-color: #0080ff;
	padding: 0.3rem 0.8rem;
	border-radius: 12px;
	font-size: 12px;
	color: white;
}

.details button {
	border: 1px solid black;
	background-color: white;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.details button:hover {
	opacity: 0.85;
}

#prev-button:after,
#next-button:after {
	color: #c2c0c0;
	font-size: 30px;
}

/*CONTACT*/
.contact-section {
    position: relative;
    z-index: 1;
    padding: 80px 15px;
}

.contact-section::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: #ebfdff;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-info {
    flex: 1 1 300px;
    padding: 30px;
}
.contact-info h3 {
    font-size: 1.375rem;
    color: var(--black100);
    font-weight: 600;
    margin: 0 0 40px;
    position: relative;
    display: inline-block;
}
.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #8dc100;
}
.contact-info-item {
    position: relative;
    padding-left: 55px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.contact-info-item:hover {
    transform: translateX(5px);
}
.contact-info-item i {
    position: absolute;
    height: 40px;
    width: 40px;
    left: 0;
    top: 0;
    border-radius: 50%;
    font-size: 1rem;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    text-align: center;
    line-height: 38px;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    background-color: var(--main-color);
    color: white;
}

.contact-info-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--black100);
}

.contact-info-item p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.625rem;
    color: var(--black400);
}
.contact-form {
    flex: 1 1 500px;
    padding: 30px;
    
    border-radius: 10px;
   
}
.contact-form .left, .contact-form .right {
    flex: 1 1 100%;
    padding: 0;
}
.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-control {
    height: 52px;
    width: 100%;
    border: 1px solid #ddd;
    box-shadow: var(--shadow-black100);
    border-radius: 30px;
    padding: 0 24px;
    color: var(--black400);
    background-color: var(--white100);
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form textarea.form-control {
    height: 140px;
    padding: 15px;
    resize: none;
}
.contact-form .form-control:focus {
    border-color: var(--main-color);
    box-shadow: 0 5px 15px rgba(101, 210, 224, 0.3);
}

.contact-form .submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #65D2E0, #8dc100);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
    background: linear-gradient(90deg, #8dc100, #65D2E0);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/*FOOTER*/

footer {
        background: linear-gradient(to bottom, rgba(11,35,49,255) 0%, rgba(11,35,49,255) 100%);

}
.right-col, .left-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 20px;
}
.right-col h1 {
    font-size: 26px;
    color: var(--white);
}
.right-col p {
    color: var(--white);
    margin-bottom: 8px;
}
.social-media {
    margin: 20px 0;
    color: white; /* Textos blancos */
    text-align: center;
}

.social-media i {
    font-size: 26px;
    color: white; /* Íconos blancos */
    margin-bottom: 8px;
}

.social-media h4 {
    color: #e0e0e0; /* Gris claro para subtítulos */
    margin-top: 10px;
    margin-bottom: 5px;
}

.social-media p {
    color: #cccccc; /* Gris aún más claro para descripciones */
    margin-bottom: 15px;
}

.social-media a i {
    font-size: 28px;
    margin-top: 10px;
    transition: 0.3s;
    color: white;
}

.social-media a:hover i {
    color: #00c8ff; /* Azul claro al pasar el mouse */
}

.left-text {
    color: var(--white);
     text-align: center;
}
.border {
    width: 100px;
    height: 4px;
    margin: 10px 0;
    background-color: white;
}
.newsletter-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.txtb {
    flex: 1;
    padding: 16px 40px;
    background-color: var(--white100);
    border: none;
    font-weight: 700;
    outline: none;
    border-radius: 8px;
    max-width: 360px;
}
.newsletter-form .btn1 {
    margin-left: 6px;
}
.menu-btn {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
}


/* ==================== MEDIA QUERIES ==================== */

/* Estilos para el botón de hamburguesa */

/* Estilos responsivos */
@media(max-width: 991px) {
    .menu-btn {
        display: block;
    }
    
    .navbar .menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--main-color);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: all 0.5s ease;
        z-index: 999;
    }
    
    .navbar .menu.active {
        left: 0;
    }
    
    .navbar .menu .nav-item {
        margin: 15px 0;
        text-align: left;
    }
    
    .navbar .menu .nav-item .nav-link {
        font-size: 18px;
        padding: 10px 0;
        display: block;
    }
    
    .navbar.sticky .menu {
        background-color: var(--main-color);
    }
    
    .navbar.sticky .menu .nav-item .nav-link {
        color: var(--white);
    }
    
    /* Asegurar que el botón de login sea visible */
    .navbar .menu .nav-item:last-child .nav-link img {
        width: 24px;
        height: 24px;
    }
}
/* Media Query 991px - Tablets en horizontal y pantallas pequeñas */
@media(max-width: 991px) {
    .navbar {
        padding: 15px;
    }
    
    .navbar .menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--main-color);
        width: 100%;
        text-align: center;
        box-shadow: 0 10px 27px rgba(0, 0, 0, .5);
        transition: all .5s ease;
        padding: 20px 0;
    }
    
    .navbar .menu.active {
        left: 0;
    }
    
    .navbar.sticky .menu {
        background-color: var(--white);
        top: 65px;
    }
    
    .navbar.sticky .menu .nav-item .nav-link {
        color: var(--main-color);
    }
    
    .navbar .menu .nav-item {
        display: block;
        margin: 15px 0;
    }
    
    .navbar .menu-btn {
        display: block;
        z-index: 999;
    }
    
    .logo img {
        height: 60px;
    }
    
    .home-text.left-text h2,
    .home-text.right-text h2 {
        font-size: 5rem;
        line-height: 5rem;
        margin-top: -30px;
    }
    
    .home-text.left-text,
    .home-text.right-text {
        margin: 0;
        text-align: center;
    }
    
    .home-image .img-box {
        max-width: 300px;
        margin-top: 40px;
    }
    .home-text.left-text {
    margin-right: -75px; /* Ajusta este valor según lo pegado que lo quieras */
}

.home-text.right-text {
    margin-left: -65px; /* Ajusta este valor según lo pegado que lo quieras */
}
    
    .about-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .about-features {
        order: 2;
        margin-top: 40px;
    }
    
    .about-image {
        order: 1;
    }
    
   .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info,
  .contact-form {
    max-width: 100%;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .contact-info p {
    font-size: 1rem;
  }

  .form-control {
    font-size: 1rem;
  }

  .btn1 {
    width: 100%;
  }

}

/* Media Query 768px - Tablets en vertical */
@media(max-width: 768px) {
     .img-box {
        margin-bottom: 2rem; /* Más separación debajo de la imagen */
    }

    .home-text.right-text h2:last-child {
        margin-top: 1.5rem; /* Separación del texto respecto a la imagen */
    }
    
    .home-wrapper {
        flex-direction: column;
    }
    
    .home-text.left-text h2,
    .home-text.right-text h2 {
        font-size: 3.5rem;
        line-height: 3rem;
    }
    
    .home-image .img-box {
        max-width: 250px;
    }
    
    .product-items .product-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Media Query 600px - Móviles grandes */
@media(max-width: 600px) {
    .img-box {
        margin-bottom: 2rem; /* Más separación debajo de la imagen */
    }

    .home-text.right-text h2:last-child {
        margin-top: 1rem; /* Separación del texto respecto a la imagen */
    }
    .section-padding, .full-screen {
        padding: 60px 0;
    }
    
    .section-title .title {
        font-size: 1.8rem;
    }
    
    .section-title .subtitle {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }
    
    .home-text.left-text h2,
    .home-text.right-text h2 {
        font-size: 3rem;
        line-height: 2.8rem;
    }
    
    .effect1, .effect2, .effect3, .effect4 {
        display: none;
    }
    
    .contact-section {
    padding: 60px 0;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-info p {
    font-size: 0.95rem;
    flex-direction: column;
    align-items: center;
  }

  .form-control {
    padding: 10px 12px;
  }

  .btn1 {
    font-size: 0.95rem;
  }
}

/* Media Query 480px - Móviles medianos - AJUSTES PARA EL TÍTULO DE BOLSA */
@media(max-width: 480px) {
 
    .img-box {
        margin-bottom: 2rem; /* Más separación debajo de la imagen */
    }

    .home-text.right-text h2:last-child {
        margin-top: 1.5rem; /* Separación del texto respecto a la imagen */
    }
    
    .section-padding, .full-screen {
        padding: 60px 0;
    }
    
    .home-text.left-text h2,
    .home-text.right-text h2 {
        font-size: 2.5rem;
        line-height: 2.2rem;
        margin-bottom: 1.5rem; /* Añadido espacio debajo del título */
    }
    
    .section-title .title {
        margin-bottom: 1.5rem; /* Más espacio entre título y contenido */
    }
    
    .btn1, .catalogo-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem; /* Más espacio entre título y contenido */
    }
    
    .feature p {
        font-size: 0.9rem;
        margin-top: 0.5rem; /* Ajuste fino del espacio superior */
    }
    
    .product-items .product-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem; /* Más espacio entre productos */
    }
    
    .product-items .title {
        margin-bottom: 1.5rem; /* Más espacio debajo del título */
        padding-top: 1rem; /* Espacio adicional arriba del título */
    }
    
    .contact-form .form-control {
        padding: 0 15px;
    }
    
    /* Ajustes específicos para la bolsa */
    .img-box {
        margin-bottom: 1.5rem; /* Espacio entre imagen y título */
    }
    
    .details {
        padding: 1rem; /* Más espacio interno */
    }
    
    .details h3 {
        margin-top: 0.5rem; /* Espacio sobre el título */
        margin-bottom: 0.8rem; /* Espacio bajo el título */
    }
}

/* Media Query 360px - Móviles pequeños - AJUSTES ADICIONALES */
@media(max-width: 360px) {
    .img-box {
        margin-bottom: 2rem; /* Más separación debajo de la imagen */
    }

    .home-text.right-text h2:last-child {
        margin-top: 1.5rem; /* Separación del texto respecto a la imagen */
    }
    .section-padding, .full-screen {
        padding: 60px 0;
    }
    .home-text.right-text {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
    .home-text.left-text h2,
    .home-text.right-text h2 {
        margin: 0 auto;
    display: inline-block;
        font-size: 2rem;
        line-height: 1.8rem;
        margin-bottom: 1.2rem; /* Ajuste adicional para móviles muy pequeños */
    }
    
    .section-title .title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem; /* Espacio consistente */
    }
    
    .logo a {
        font-size: 0.8rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .navbar .menu-btn {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 16px;
    }
    
    .contact-info h2 {
    font-size: 1.6rem;
  }

  .form-control {
    font-size: 0.9rem;
    padding: 8px 10px;
  }

  .btn1 {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
    
    /* Ajustes adicionales para la bolsa en móviles muy pequeños */
    .product-items .title {
        font-size: 1.8rem; /* Tamaño ligeramente menor */
        padding: 0.5rem 0; /* Espaciado vertical */
    }
    
    .img-box {
        margin: 0 auto 1.2rem; /* Centrado con espacio */
    }
    
    .details h3 {
        font-size: 0.9rem; /* Tamaño ajustado */
        line-height: 1.3; /* Mejor interlineado */
    }
}