/* Tamaño base del texto */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #006666;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
    box-sizing: border-box;
}

header .logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

header .logo-container img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

header .company-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-right: 15px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
    flex-grow: 1;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 15px;
    white-space: nowrap;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

nav a:hover {
    color: #207a6b;
    background-color: #ffffff;
    border-color: #207a6b;
}

nav a.active {
    background-color: #ffffff;
    color: #207a6b;
    border-color: #207a6b;
}



/* Contenedor Principal */
main.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    padding: 20px;
    gap: 20px;
}

/* Cuadro de Texto */
.text-box {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.text-box h1 {
    font-size: 24px;
    color: #006666;
    margin-bottom: 10px;
}

.text-box p {
    font-size: 14px;
    color: #333333;
    margin-bottom: 20px;
}

.text-box .btn-buy {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: #ffffff;
    background-color: #207a6b;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.text-box .btn-buy:hover {
    background-color: #155a47;
}

/* Imagen del Producto */
.image-box {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-box img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (min-width: 768px) {
    main.content-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .text-box {
        max-width: 45%;
        text-align: left;
    }

    .image-box {
        max-width: 45%;
    }
}

