/* Reset de márgenes y paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fuente base */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Cabecera */
header {
    background-color: #003366; /* Azul oscuro */
    color: white;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 10px;
    text-transform: uppercase; /* Títulos en mayúsculas */
}

header img {
    width: 150px;
    margin-bottom: 15px;
}

header p {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Sección de Ofertas y Lanzamientos */
.launch-section {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #e6f7e6; /* Fondo verde claro */
    flex-wrap: wrap; /* Permite que las columnas se acomoden en pantallas pequeñas */
}

.launch-description {
    width: 48%; /* Asigna el 48% del ancho a la columna de descripción */
    padding-right: 2%; /* Espacio entre las dos columnas */
}

.launch-pricing {
    width: 48%; /* Asigna el 48% del ancho a la columna de precio, temporizador y botón */
    text-align: center;
}

.launch-description h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: uppercase; /* Títulos en mayúsculas */
}

.launch-description p {
    font-size: 18px;
    line-height: 1.6;
}

.launch-pricing .original-price {
    text-decoration: line-through;
    font-size: 24px;
    color: red;
}

.launch-pricing .final-price {
    font-size: 28px;
    color: #00b300; /* Verde claro */
    font-weight: bold;
    margin-top: 20px;
}

.launch-pricing button {
    background-color: #00b300;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.launch-pricing button:hover {
    background-color: #007700;
}

#countdown {
    margin-top: 20px;
    font-size: 20px;
    color: #ff0000;
    background-color: #ffdd00; /* Caja amarilla para el temporizador */
    padding: 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Ajustes de Responsive Design (pantallas pequeñas) */
@media (max-width: 768px) {
    .launch-section {
        flex-direction: column;
        align-items: center;
    }

    .launch-description, .launch-pricing {
        width: 100%;
        margin-bottom: 20px;
    }

    .launch-description {
        padding-right: 0;
    }
}

/* Sección de contenido */
.content-section {
    padding: 50px 20px;
    background-color: #ffffff;
}

.content-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase; /* Títulos en mayúsculas */
}

/* Columnas de contenido */
.content-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.column {
    width: 30%;
    background-color: #f0f0f0;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.column h3 {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase; /* Títulos en mayúsculas */
}

.column p {
    font-size: 16px;
    line-height: 1.6;
}

.column .original-price {
    text-decoration: line-through;
    color: red;
}

.column .final-price {
    color: #00b300;
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
}

.column button {
    background-color: #00b300;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.column button:hover {
    background-color: #007700;
}

/* Carrusel de comentarios */
.comments-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.carousel {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.carousel p {
    width: 80%;
    font-size: 18px;
    text-align: center;
    margin: 0 20px;
}

/* Sección de opciones de pago */
.payment-section {
    padding: 50px 20px;
    background-color: #e6f7e6; /* Fondo verde claro */
    text-align: center;
}

.payment-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.payment-options {
    margin-bottom: 20px;
}

.payment-options img {
    width: 150px;
    margin: 0 20px;
}

.payment-section p {
    font-size: 20px;
}

.payment-section form input {
    padding: 10px;
    margin: 10px;
    font-size: 16px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.payment-section form button {
    background-color: #00b300;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

.payment-section form button:hover {
    background-color: #007700;
}

/* Sección de contacto */
footer {
    background-color: #003366; /* Azul oscuro */
    color: white;
    padding: 30px 0;
    text-align: center;
}

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

footer .social-buttons a {
    margin: 0 15px;
}

footer .social-buttons a:hover {
    background-color: #007700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .launch-section {
        flex-direction: column;
        align-items: center;
    }

    .content-columns {
        flex-direction: column;
        align-items: center;
    }

    .column {
        width: 80%;
    }
}


}
/* Aplicamos mayúsculas a todos los títulos */
h1, h2, h3 {
    text-transform: uppercase; /* Títulos en mayúsculas */
}
