/* Configuración General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FDF4ED; /* Tu color de fondo */
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #4A2C2A;
    overflow-x: hidden;
}

.section {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* --- EFECTO ZOOM OUT LOGOTIPO --- */
.main-logo {
    max-width: 350px;
    height: auto;
    display: block;
}

.zoom-out {
    animation: zoomOutEffect 1.5s ease-out forwards;
}

@keyframes zoomOutEffect {
    from {
        transform: scale(.5); /* Empieza chico */
        opacity: 0;
    }
    to {
        transform: scale(1); /* Termina en su tamaño original */
        opacity: 1;
    }
}

/* --- SECCIÓN CONTACTO --- */
.contact-section {
    background-color: rgba(93, 16, 73, 0.03);
    border-top: 1px solid #e0d5cd;
    border-bottom: 1px solid #e0d5cd;
    padding: 25px 20px;
}

.contact-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    white-space: nowrap;
}

.contact-icon {
    font-size: 1.5rem;
    color: #5d1049; /* Color vino Meraki */
}

.phone-link {
    font-size: 2rem;
    color: #5d1049;
    text-decoration: none;
    font-weight: bold;
}

/* --- GALERÍA --- */
.gallery-title {
    margin-bottom: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    width: 100%;
}

.gallery-item {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}

/* Adaptación para móviles */
@media (max-width: 600px) {
    .phone-link { font-size: 1.5rem; }
    .main-logo { max-width: 280px; }
}