* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #f2f2f2, #e6e6e6);
    display: flex;
    justify-content: center;
    padding: 30px;
}

.container {
    max-width: 1100px;
    width: 100%;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* HEADER */
.header {
    text-align: center;
    padding: 40px 20px 20px;
}

.header img {
    max-width: 280px;
    width: 100%;
    margin-bottom: 20px;
}

.header h1 {
    margin: 0;
    font-size: 32px;
    color: #333;
}

.header p {
    color: #777;
    font-size: 18px;
    margin-top: 10px;
}

/* GALERIA */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 30px;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* INFO */
.info {
    padding: 20px 40px;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.info p {
    margin: 10px 0;
}

/* REDES SOCIALES */
.social {
    text-align: center;
    padding: 30px;
    background: #fafafa;
}

.social h2 {
    margin-bottom: 20px;
    color: #333;
}

.social a {
    display: inline-block;
    margin: 10px;
    font-size: 28px;
    color: white;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social a:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

.facebook {
    background: #1877f2;
}

.twitter {
    background: #1da1f2;
}

.instagram {
    background: #e4405f;
}

.tiktok {
    background: #000;
}

.youtube {
    background: #ff0000;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #777;
}

.carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 30px auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    flex-shrink: 0;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* BLOQUE SEO LOCAL */
.seo-text {
    padding: 25px 40px;
    margin: 20px 40px 40px;
    background: #fafafa;
    border-left: 5px solid #c9a24d;
    /* tono elegante tipo salón */
    border-radius: 12px;
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.seo-text p {
    margin: 0;
}

.seo-text h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .seo-text {
        padding: 20px;
        margin: 20px;
        font-size: 15px;
    }
}