/* ===== VARIABLES DE COLOR ===== */
:root {
    --vino: #7a1020;
    --vino-oscuro: #5c0c18;
    --vino-claro: #e27282;
    --verde: #2f6b3f;
    --verde-claro: #4c8b5f;
    --blanco: #ffffff;
    --gris-texto: #444;
    --gris-fondo: #f6f6f6;
    --card-bg: #ffffff;
    --wa-green: #25d366;

    
    /* Variables principales */
    --primario: var(--vino);
    --secundario: var(--gris-fondo);
    --oscuro: var(--vino-oscuro);
    --texto: var(--gris-texto);
}

.traslados-section {
    background-color: var(--secundario);
    padding: 60px 20px;
    font-family: "Saira Stencil One", sans-serif;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Títulos */
.main-title {
    text-align: center;
    color: var(--primario);
    font-size: 1.8rem;
    font-family: "Saira Stencil One", sans-serif;
    margin-bottom: 30px;
}

/* Grid de iconos superior */
.servicios-iconos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.servicios-iconos span {
    background: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}



/* Unificación de imágenes (El secreto está aquí) */
.servicios-grid, .grid-fotos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Importante para móviles */
    margin-bottom: 30px;
}

.item-foto {
    width: 120px; /* Tamaño fijo para que todas sean iguales */
    text-align: center;
    transition: transform 0.3s ease;
}

.item-foto:hover {
    transform: translateY(-5px);
}

.item-foto img {
    width: 120px;
    height: 120px;
    object-fit: cover; /* Ajusta la imagen sin deformarla */
    border-radius: 15px;
    margin-bottom: 10px;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.item-foto:hover img {
    border-color: var(--naranja);
}

.item-foto h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primario);
    line-height: 1.2;
}

/* Bloques de detalle */
.bloque-detalle {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.encabezado-icono {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contenido-texto h3 {
    font-family: "Saira Stencil One", sans-serif;
}

/* Botón y Reservas */
.seccion-reservas {
    text-align: center;
    margin-top: 50px;
}

.reserva-header h3 {
    font-family: "Saira Stencil One", sans-serif;
    color: var(--vino);
}

.btn-tours {
    background-color: var(--verde);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-tours:hover {
    background-color: var(--verde-claro);
    transform: scale(1.05);
}

