/* Declaración de fuentes */
@font-face {
    font-family: 'Aileron';
    src: url('../Recursos/Fonts/Aileron-Light.woff2') format('woff2'),
         url('../Recursos/Fonts/Aileron-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

/* Estilos generales */
html, body {
    font-family: 'Noto Sans', sans-serif;
    height: 100%;
}

body {
    font-family: 'Aileron', sans-serif;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    font-size: 1.20rem
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
}

footer {
    margin-top: auto;
}

.carousel-inner {
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s;
}

.carousel-item.active {
    position: relative;
    opacity: 1;
}

.larger-text {
    font-size: 1.20rem;
}

.carousel-image {
    height: 350px;
    object-fit: repeat;
}

.mexican-gradient {
    background: linear-gradient(to right, #FFCC29, #FE4596);
}

.wine-image {
    transition: transform 0.3s, box-shadow 0.3s;
    background: none;
    position: relative;
    z-index: 1;
    max-height: 350px;
}

.wine-shadow {
    filter: drop-shadow(15px 10px 10px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s, filter 0.3s;
}

.wine-shadow:hover {
    filter: drop-shadow(15px 15px 15px rgba(0, 0, 0, 0.5));
}

.dark-gradient {
    background: linear-gradient(270deg, #000000, #333333);
}

.wine-detail {
    border-bottom: 1px solid black;
    padding: 10px 0;
    position: relative;
    margin-bottom: 10px;
    font-size: 1.20rem;
    font-weight: 300;
}

.wine-detail strong {
    font-weight: 600;
}


.icon-box i {
    background-color: black;
    color: white;
    padding: 5px;
    border-radius: 50%;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.espumoso-column, .blanco-column, .tinto-column, .rosadoe-column, .rosadot-column {
    position: relative;
    padding-right: 50px;
    min-height: 400px;
}

.wine-label-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}

.wine-details {
    min-height: 400px;
    padding-left: 50px;
}

.wine-thumbnail {
    max-width: 50px;
    height: auto;
    border: 1px solid #ccc;
    padding: 2px;
    margin-bottom: 10px;
}

.wine-group {
    display: flex;
    justify-content: space-between;
}

.wine-selection {
    flex: 0 0 18%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wine-selection label {
    flex: 2;
    margin: 0;
}

.awine-image {
    width: 100%;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 10px;
}

input[type="number"] {
    width: 80%;
    margin-top: 10px;
}

.btn-primary {
    margin-top: 110px;
    float: right;
}

@media screen and (min-width: 768px) {
    .wine-selection {
        flex-basis: 20%;
    }
}

.contact-section {
    background-color: #f7f7f7;
    padding: 50px 0;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 30px;
    font-weight: bold;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-item {
    margin-bottom: 20px;
}

.social-icons {
    margin-top: 30px;
}

.social-icon {
    font-size: 1.20rem;
    margin: 0 10px;
    color: #555;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #007BFF;
}

@media (max-width: 767px) {
    .navbar-brand img {
        height: 35px;
    }
}

.amazon-section {
    border: 2px solid #f90;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff2e5;
    margin-bottom: 20px;
}

.btn-amazon {
    background-color: #f90;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-amazon:hover {
    background-color: #ff9900;
    text-decoration: none;
    color: white;
}

.btn-amazon i.fab {
    margin-right: 10px;
}

.CTAOCT-container {
    display: flex;
    justify-content: center;
    background: linear-gradient(45deg, #F6C5DF, #FCEAF2);
    border: 3px solid #E271AB;
    padding: 20px;
    margin: 20px auto;
    max-width: 1000px;
}

.CTAOCT-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.CTAOCT-image > img {
    max-height: 180px;
    width: auto;
}

.CTAOCT-logo {
    max-height: 50px;
    display: block;
    margin: 0 auto 15px auto;
}

.CTAOCT-text {
    font-family: 'Aileron', sans-serif;
    font-weight: 300;
    color: #EE6FAD;
    text-align: center;
    margin-bottom: 15px;
}

.CTAOCT-text > span {
    display: block;
    font-weight: bold;
}

.CTAOCT-hashtags {
    font-family: 'Aileron', sans-serif;
    font-weight: bold;
    font-size: 1.20rem;
    color: #EE6FAD;
    text-align: center;
    margin-bottom: 20px;
}

.CTAOCT-button-container {
    text-align: center;
}

.CTAOCT-button {
    background-color: #EB70AE;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.CTAOCT-button:hover {
    background-color: #FFAAB1;
}

@media (max-width: 768px) {
    .CTAOCT-content {
        flex-direction: column;
        gap: 10px;
    }

    .CTAOCT-image > img {
        max-height: 150px;
    }
}

.CTAOCT-container .CTAOCT-image img[src="Recursos/MonoOct.png"] {
    width: 60px;
    height: auto;
}

/* Nuevas clases */
.wine-name {
    font-size: 1.75rem;
    font-weight: 300;
}



.wine-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
