@font-face {
    font-family: "Amaranth";
    src: url("tipografias/Amaranth/Amaranth-Regular.ttf") format("truetype");
    font-style: normal;
}

body {
    font-family: "Amaranth", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.btn:focus {
    box-shadow: none;
}

.btn:hover {
    transform: scale(1.1);
}

.productos {
    padding: 20px;
    text-align: center;
}

.botones .btn {
    padding: 10px 12px;
    margin: 5px;
    border: none;
    cursor: pointer;
}

.botones .btn[data-color="taro"] {
    background-color: transparent;
}

.botones .btn[data-color="chocolate"] {
    background-color: transparent;
}

.botones .btn[data-color="vainilla"] {
    background-color: transparent;
}

.contenido {
    position: relative;
    margin-top: 20px;
    width: 100%;
}

.fondo {
    width: 100%;
    height: 200px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bote {
    width: 100%;
    height: 200px;
    z-index: 999;
}

.sticker {
    position: absolute;
    width: 150px;
}

.postales {
    position: absolute;
    width: 230px;
}

.producto {
    position: absolute;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.florecitas {
    position: absolute;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.text-white {
    color: #ffffff;
}
 
#imagenbote {
    position: relative;
    z-index: 10;
    width: 220px;
}

.photo-strip {
    position: relative;
    width: 300px;
    left: 78px;
}

.frame {
    width: 100%;
    display: block;
}

.photo {
    position: absolute;
    width: 62%;
    left: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.photo img {
    width: 100%;
    transition: filter 0.3s;
}

.photo:nth-child(2) {
    top: 3.5%;
}

.photo:nth-child(3) {
    top: 26.5%;
    left: 15%;
}

.photo:nth-child(4) {
    top: 49.6%;
    left: 23%;
}

.photo:nth-child(5) {
    top: 72.8%;
    left: 31%;
}

.photo:hover img {
    filter: none;
}

.photo img {
    filter: grayscale(100%);
}

.image-container {
    position: relative;
    cursor: pointer;
    width: 350px;
    left: 70vw;
}

/* Foto en blanco y negro (visible por defecto) */
.image.black-and-white {
    position: absolute;
    width: 87%;
    top: 15%;
    left: 6.5%;
    z-index: 0;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

/* Foto a color (invisible por defecto) */
.image.color {
    position: absolute;
    width: 87%;
    top: 15%;
    left: 6.5%;
    z-index: 0;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.image-container:hover .color {
    opacity: 1;
}

.image-container-2 {
    position: relative;
    cursor: pointer;
    width: 280px;
    left: 63vw;
    top: 25vw;
}

/* Foto en blanco y negro (visible por defecto) */
.image.black-and-white-2 {
    position: absolute;
    width: 81%;
    top: 8.6%;
    left: 9.3%;
    z-index: 0;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

/* Foto a color (invisible por defecto) */
.image.color-2 {
    position: absolute;
    width: 81%;
    top: 8.6%;
    left: 9.3%;
    z-index: 0;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.image-container-2:hover .color-2 {
    opacity: 1;
}

.image-container-3 {
    position: relative;
    cursor: pointer;
    width: 350px;
    top: calc(38vw + 2vw);
    left: clamp(38vw, -20vw, -15vw);
}

/* Foto en blanco y negro (visible por defecto) */
.image.black-and-white-3 {
    position: absolute;
    width: 86%;
    top: 13%;
    left: 4.3%;
    z-index: 0;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

/* Foto a color (invisible por defecto) */
.image.color-3 {
    position: absolute;
    width: 86%;
    top: 13%;
    left: 4.3%;
    z-index: 0;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.image-container-3:hover .color-3 {
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.closeContainer {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.logo-header {
    display: block;
    width: auto;
    max-width: 140px;
    z-index: 999999999;
    position: absolute;
}

@media (max-width: 768px) { /* Pantallas pequeñas */
    .burger-menu {
        display: none;
        position: absolute;
        left: 0;
        width: 100%;
        background-color: rgba(0, 167, 199, .4);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        z-index: 10;
        padding: 25px 0;
    }

    body {
        font-family: "Amaranth", sans-serif;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    .postales {
        position: absolute;
        width: 130px;
        right: 22vw;
        top: 0;
    }
    .producto {
       position: absolute;
        top: 80vw;
        left: 38vw;
        width: calc(23% - 20px) !important;
    }
    small {
        font-size: 60%;
    }
    .hover14-position {
        position: relative;
        top: 2vh;
        left: 8vh;
        width: 0;
    }
    #imagenbote {
        top: 7vw;
        right: -8vw;
        width: calc(75% - 20px) !important;
    }
    .name-base {
        font-size: 18px;
        margin-bottom: 0;
        padding-left: 2vh;
    }
    .textos {
        position: relative;
        top: 10vw;
        left: 17vw;
    }
    .boton-contacto {
        position: absolute;
        bottom: -36vw;
        left: 35vw;
    }
    .button-container {
        width: 270px !important;
        position: absolute !important;
        bottom: -50vw;
        left: 19vw;
    }
    .texto-postal {
        padding: 0 3vh;
        font-size: 14px;
        line-height: 14px;
    }
    .titles-disc {
        color: #e45378;
        font-size: 22px;
        margin-bottom: 0px;
        line-height: 21px;
    }
    .fs {
        font-size: 16px;
    }
    .controls {
        #nextButton {
            position: relative;
            bottom: 20rem;
            left: 39%;
            transform: rotate(90deg);
            border: none;
        }
        #nextButtonImage {
            position: relative;
            bottom: -7rem;
            left: 32vw;
            transform: rotate(90deg);
            border: none;
            z-index: 999;
        }
        #nextButtonImageTaro {
            position: relative;
            bottom: -7rem;
            left: 32vw;
            transform: rotate(90deg);
            border: none;
            z-index: 999;
        }
        #nextButtonImageChoco {
            position: relative;
            bottom: -7rem;
            left: 32vw;
            transform: rotate(90deg);
            border: none;
            z-index: 999;
        }
    }
    .controls button {
        margin: 0 8px;
        padding: 7px 12px;
        border-radius: 50%;
        background: transparent;
        border: 2px solid #f2b2d0;
        cursor: pointer;
    }
    .box-container {
        width: 19rem;
        height: 10rem;
        position: relative;
        top: -15rem;
        margin: 24px auto;
        overflow: hidden;
    }
    .boxImage {
        position: absolute;
        width: 100%; 
        height: 100%;
        display: grid;
        place-items: center;
        z-index: 0;
    }
    .box {
        position: absolute;
        width: 100%; 
        height: 100%;
        display: grid;
        place-items: center;
        z-index: 0;
    }
    .box01 {
        background-color: transparent;
        left: 0%;
    }
    .container-movil {
        position: relative;
        cursor: pointer;
        width: 350px;
        top: calc(35vw + 2vw);
        left: clamp(7vw, -20vw, -15vw);
    }
    .image.black-and-white-3 {
        position: absolute;
        width: 85%;
        top: -90.2vw;
        left: 3.7vw;
        z-index: 0;
        transition: opacity 0.3s ease-in-out;
        opacity: 1;
    }
    .image.black-and-white-4 {
        position: absolute;
        width: 85%;
        top: -32.2vw;
        left: 3.7vw;
        z-index: 0;
        transition: opacity 0.3s ease-in-out;
        opacity: 1;
    }
    .footer {
        bottom: 20vw !important;
    }
    .block-sm {
        display: block;
    }
    .block-md {
        display: none;
    }
    .logo-header {
        width: 60% !important;
    }
    .header {
        width: 95% !important;
    }
    .menu {
        display: block !important;
    }
    .boton-tv {
        width: 15% !important;
        position: relative !important;
        left: 83% !important;
        top: -140px !important;
    }
}

@media (min-width: 769px) {
    .block-sm {
        display: none;
    }
    .block-md {
        display: block;
    }
    .boton-tv {
        top: calc(83% + 2vw);
        right: clamp(3vw, -16vw, -20vw);
    }
    .hover14-position {
        position: relative;
        top: 51vw;
        right: clamp(-17vw, -16vw, -20vw);
        z-index: 999;
    }
    .texto-postal {
        padding: 0 3vh;
        font-size: 14px;
        line-height: 18px;
    }
    .name-base {
        font-size: 24px;
        margin-bottom: 0;
        padding-left: 11vh;
    }
    #imagenbote {
        position: absolute;
        top: calc(168% + 2vw);
        right: clamp(2vw, -16vw, -20vw);
        width: 28%;
    }
    .text-postal {
        position: absolute;
        z-index: 10;
        padding-right: 28%;
        top: calc(92% + 2vw);
        right: clamp(-3vw, -4vw, -2vw);
    }
    .sticker {
        position: absolute;
        top: calc(10% + 2vw);
        right: clamp(63vw, -16vw, -20vw);
    }
    .producto {
        top: calc(100% + 2vw);
        right: clamp(68vw, -16vw, -20vw);
    }
    .florecitas {
        top: calc(250% + 2vw);
        right: clamp(65vw, -16vw, -20vw);
    }
    .postales {
        top: calc(100% + 2vw);
        left: clamp(77vw, 26vw, 20vw);
    }
    .arrow-position {
        bottom: -5vw !important;
        right: -33vw !important;
    }
    .block-sm {
        display: none;
    }
    .block-md {
        display: block;
    }
    .titles-disc {
        color: #e45378;
        font-size: 18px;
        margin-bottom: 3px;
        line-height: 21px;
    }
    .fs {
        font-size: 12px;
    }
}

@media (min-width: 1201px) {
    .botones {
        top: -4vh;
        left: 13vh;
        position: relative;
    }

    .textos {
        display: grid;
        position: relative;
        top: -1vh;
    }
}

@media (min-width: 1900px) {
    .postales {
        left: clamp(72vw, 26vw, 20vw) !important;
    }
    .text-postal {
        padding-right: 31% !important;
        top: calc(75% + 2vw) !important;
        right: clamp(-2.5vw, -16vw, -20vw) !important
    }
    .sticker {
        right: clamp(60vw, -16vw, -20vw) !important;
    }
    .producto {
        right: clamp(64vw, -16vw, -20vw) !important;
    }
    .florecitas {
        right: clamp(62vw, -16vw, -20vw) !important;
    }
    .arrow-position {
        bottom: -7vw !important;
        right: -35vw !important;
    }
    .titles-disc {
        font-size: 22px !important;
    }
    .fs {
        font-size: 15px;
    }
    .pos-1 {
        bottom: -14vw !important;
    }
    .pos-2 {
        bottom: -4vw !important;
    }
    .pos-3 {
        bottom: -23vw !important;
    }
    #imagenbote {
        position: absolute;
        top: calc(168% + 2vw);
        right: clamp(2vw, -16vw, -20vw);
        width: 21%;
    }
    .hover14-position {
        position: relative;
        top: 39vw;
        right: clamp(-19vw, -16vw, -20vw);
        z-index: 999;
    }
    .text-postal {
        padding-right: 31% !important;
        top: calc(89% + 2vw) !important;
        right: clamp(-2.5vw, -16vw, -20vw) !important;
    }
}

.producto {
    width: 250px;
    z-index: 999;
}

.florecitas {
    width: 300px;
    z-index: 999;
}

.galeria {
    padding: 20px;
    position: absolute;
    gap: 10px;
}

.galeria .foto {
    width: 150px;
    height: 150px;
    transition: filter 0.3s ease;
    cursor: pointer;
}

.galeria .foto:hover {
    filter: grayscale(0);
}

.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: 30px auto;
    display: block;
    max-width: 50%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

button:focus {
    outline: none;
}

.btn-collapse {
    border: none;
    cursor: pointer;
    background: transparent;
}
.card {
    background-color: transparent;
    border: none;
}

.card-header {
    padding: 0.75rem 0.75rem 0.25rem 0.75rem !important;
    background-color: transparent;
    border-bottom: none;
}

.card-body {
    padding: 0;
    text-align: left;
}

.button-container {
    background-color: #12949d;
    width: 340px;
    height: 55px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 4px solid white;
    margin-top: 10px;
}
  
.button-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.logo {
    width: 40%;
    height: auto;
}

.amazon-logo {
    margin-right: 10px;
}

.ml-logo {
    margin-left: 10px;
}

.boton-tv {
    width: calc(14% - 50px);
    position: absolute;
    z-index: 10;
}

.column {
	margin: 15px 15px 0;
	padding: 0;
}
.column:last-child {
	padding-bottom: 60px;
}
.column::after {
	content: '';
	clear: both;
	display: block;
}
.column div {
	position: relative;
	float: left;
	width: 40px;
	height: 60px;
	margin: 0 0 0 25px;
	padding: 0;
}
.column div:first-child {
	margin-left: 0;
}
.column div span {
	position: absolute;
	bottom: -20px;
	left: 0;
	z-index: -1;
	display: block;
	width: 300px;
	margin: 0;
	padding: 0;
	color: #444;
	font-size: 18px;
	text-decoration: none;
	text-align: center;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	opacity: 0;
}
figure {
	width: 65px;
	height: 65px;
	margin: 0;
	padding: 0;
	background: transparent;
	overflow: hidden;
    border-radius: 50%;
}

.icon {
    width: 60px;
	height: auto;
	margin: 0;
	padding: 0;
	background: transparent;
	overflow: hidden;
    border-radius: 50%;
}

.icon:hover {
    animation: bounce 0.4s ease-in-out;
	transform: scale(1.1);
}

.hover14 figure {
	position: relative;
}
.hover14 figure:hover {
    animation: bounce 0.4s ease-in-out;
	transform: scale(1.1);
}
.hover14 figure::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.hover14 figure:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1.1); }
}

/* Estilo para el ícono de la hamburguesa */
.burger {
    position: relative;
    width: 40px;
    height: 25px;
    background: transparent;
    cursor: pointer;
    display: block;
  }
  
  .burger input {
    display: none;
  }
  
  .burger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  
  .burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
  }
  
  .burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
  }
  
  .burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
  }
  
  .burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
  }
  
  .burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }
  
  .burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
  }
  
  .burger-menu {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: rgba(0, 167, 199, .4);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
    padding: 25px 0;
  }
  
  .burger-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  .burger-menu ul li {
    padding: 15px;
  }
  
  .burger-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    display: block;
  }
  
  #burger:checked ~ .burger-menu {
    display: block;
  }