/* Contenedor principal del producto */
.product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px auto;
    max-width: 1000px;
    padding: 0 20px;
}

/* Sección con formulario e imagen */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    align-items: start;
}
.product-name {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.texto_del_main {
    font-size: 20px;
    font-weight: 600;
    color: #00bcd4; /* Celeste a tono con el botón */
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Tarjeta del formulario */
.reservation-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Título estilo Contact Us */
.reservation-form::before {
    content: "Contactanos";
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* Etiquetas */
.reservation-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #666;
}

/* Inputs y textarea */
.reservation-form input,
.reservation-form textarea {
    width: 95%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
    border-color: #00bcd4;
    box-shadow: 0 0 6px rgba(0, 188, 212, 0.3);
    outline: none;
}

/* Botón */
.reservation-form button {
    background: #00bcd4;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.reservation-form button:hover {
    background: #0097a7;
}

/* Imagen a la derecha */
.product-section .main-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-height: 100%;
}

.product-section .main-image img {
    max-height: 350px;
    min-height: 350px;
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
    border: 1px solid #0000001f;
}

/* Responsive */
@media (max-width: 768px) {
    .product-section {
        grid-template-columns: 1fr;
    }
}
