/* ====== GLOBAL ====== */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #000;
}

/* ====== TÍTULO SUPERIOR ====== */
.top-title {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    margin-top: 5px;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 2px;
    background: #fff;
    border-bottom: 3px solid #f0d28a;
    position: relative;
    z-index: 10;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    height: 45vh;
    background-image: url('img/header.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 600px) {
    .hero {
        height: 50vh;
        background-size: contain;
    }
}

/* ====== MENÚ ====== */
.main-menu {
    background: #fff;
    padding: 20px 0;
    border-top: 2px solid #f0d28a;
    border-bottom: 2px solid #f0d28a;
    text-align: center;
    margin-top: 10px;
}

.main-menu a {
    color: #000;
    text-decoration: none;
    margin: 0 25px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
}

.main-menu a:hover {
    background: #d4af37;
    color: #000;
}

/* ====== SECCIONES ====== */
.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

h2 {
    color: #d4af37;
    text-align: center;
    margin-bottom: 30px;
}

/* ====== SOBRE NOSOTROS ====== */
.sobre-texto {
    font-size: 1.2rem;
    line-height: 1.6;
}

.sobre-texto br {
    display: block;
    margin-bottom: 22px;
}

.sobre-texto strong {
    color: #d4af37;
    font-weight: 700;
}

.destacado-transparente {
    display: block;
    text-align: center;
    font-size: 1.9rem;
    font-weight: 900;
    color: #d4af37;
    margin: 20px 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ====== SERVICIOS (FOTOS) ====== */
.servicios-fotos-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.aviso-contacto {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #555;
    margin-top: -10px;
    margin-bottom: 30px;
    font-style: italic;
}

.servicios-fotos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.servicio-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.servicio-foto-card {
    background: #fff;
    border: 4px solid #f0d28a;   /* contorno premium más grueso */
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    height: 420px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* sombra suave premium */
}

.servicio-link:hover .servicio-foto-card {
    border-color: #d4af37;       /* dorado más intenso en hover */
    box-shadow: 0 6px 18px rgba(0,0,0,0.12); /* sombra más profunda */
    transform: translateY(-5px); /* elevación elegante */
}


.servicio-foto-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.servicio-foto-card h3 {
    font-size: 1.3rem;
    margin: 15px 0 5px;
    color: #000;
    min-height: 50px;
}

.servicio-foto-card p {
    font-size: 1rem;
    padding: 0 15px 20px;
    color: #333;
    line-height: 1.6;
    flex-grow: 1;
}

/* ====== GALERÍA ====== */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }
}



.grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.grid img:hover {
    transform: scale(1.05);
}

/* ====== CONTACTO ====== */
.contact-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.contact-section h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contact-box {
    max-width: 500px;
    margin: auto;
    padding: 30px;
    border: 2px solid #f0d28a;
    border-radius: 10px;
    background: #fff;
}

.contact-line {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #000;
}

.contact-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: #f0d28a;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #000;
    color: #f0d28a;
    border: 2px solid #f0d28a;
}

.contact-icon {
    color: #f0d28a;
    margin-right: 10px;
    font-size: 1.3rem;
}

/* ====== FOOTER ====== */
footer {
    background: #000;
    text-align: center;
    padding: 20px;
    color: #f0d28a;
}
.volver-arriba {
    display: inline-block;
    float: right;
    font-size: 0.9rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    margin-top: -10px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.volver-arriba:hover {
    color: #000;
    background: #d4af37;
    padding: 4px 10px;
    border-radius: 5px;
}
html {
    scroll-behavior: smooth;
}
.btn-volver-arriba {
    display: inline-block;
    float: right;
    padding: 8px 16px;
    border: 2px solid #d4af37;
    border-radius: 8px;
    color: #d4af37;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s ease;
    margin-top: -10px;
    margin-bottom: 20px;
}

.btn-volver-arriba i {
    margin-right: 6px;
}

.btn-volver-arriba:hover {
    background: #d4af37;
    color: #000;
}
.galeria-titulo {
    font-size: 1.8rem;
    color: #f0d28a;
    margin: 50px 0 20px;
    text-align: left;
    border-left: 5px solid #f0d28a;
    padding-left: 12px;
}
.antes-despues {
    max-width: 600px;
    margin: 40px auto;
}

.img-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 4px solid #f0d28a;
    border-radius: 12px;
}

.img-container img {
    width: 100%;
    display: block;
}

.img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
}

.slider {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    cursor: pointer;
}
.antes-despues {
    position: relative;
}

.open-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 5;
}
.img-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.btn-mas-fotos {
    display: block;
    margin: 40px auto;
    padding: 18px 48px;
    background: #d4af37;
    color: #111;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* sombra premium */
}

.btn-mas-fotos:hover {
    background: #ffe7b8;
    transform: scale(1.05);     /* efecto elegante */
}
.contacto-section {
    background: #f0d28a; /* dorado */
    padding: 60px 20px;
    text-align: center;
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
}

.contacto-section h2 {
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contacto-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.contacto-item {
    margin: 25px 0;
    font-size: 20px;
    color: #000000;
}

.contacto-item i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #000000;
}

.whatsapp-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #25D366;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}
.contacto-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 5px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    border: 3px solid #000; /* borde elegante */
    position: relative;
}
.contacto-nombre {
    color: #d4af37;   /* dorado */
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.idiomas {
    text-align: right;
    padding: 15px 20px;
}

.idioma-btn {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: #f0d28a;
    padding: 8px 16px;
    margin-left: 10px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #f0d28a;
    transition: 0.3s;
}

.idioma-btn img {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    border-radius: 4px;
}

.idioma-btn:hover {
    background: #f0d28a;
    color: #000;
    transform: scale(1.12);
}
