 /* Configuración General */
body {
    background-color: #fdfaf6;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header y Logo Principal */
.blog-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.blog-header-logo {
    max-width: 200px; /* Tamaño controlado para el logo superior */
    height: auto;
}

/* Sección Sobre Nosotros */
.about-us-section {
    padding: 60px 20px;
    text-align: center;
}

.about-us-container {
    max-width: 850px;
    margin: 0 auto;
}

.logo-central {
    max-width: 150px;
    margin-bottom: 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #5d4037;
}

h1 { font-size: 2.2rem; margin-bottom: 25px; }

/* Sección Videos e Introducción */
.videos-intro-section {
    background-color: #f5ece2;
    padding: 40px 20px;
    text-align: center;
}

/* Grilla de Videos */
.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* Formato 16:9 */
    height: 0;
    background-color: #fdfaf6; /* Fondo para que las barras no sean negras */
}

.video-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; 
    background-color: transparent; /* Probá ponerlo transparente */
    display: block;
    z-index: 10; /* Lo trae al frente */
}

.video-caption {
    padding: 15px;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}

/* Footer Nuevo */
.main-footer {
    background-color: #333;
    color: #fdfaf6;
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
}

.social-links {
    margin: 20px 0;
}

.social-btn {
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 8px 20px;
    margin: 0 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.social-btn:hover {
    background: #fff;
    color: #333;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    color: #fdfaf6;
    font-size: 0.9rem;
}

hr {
    border: 0;
    border-top: 1px solid #555;
    max-width: 200px;
    margin: 30px auto;
}

/* Ajuste para PC: Solo 2 videos por fila para que no se vean gigantes */
@media (min-width: 768px) {
    .videos-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* --- ESTILOS DEL FOOTER --- */
.main-footer {
    background-color: #333;
    color: #fdfaf6;
    padding: 60px 20px 40px;
    text-align: center;
    margin-top: 50px;
}

.main-footer h3 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.social-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #fff;
    color: #333;
    border-color: #fff;
}

.footer-icon {
    width: 20px;
    height: auto;
}

.main-footer hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 300px;
    margin: 25px auto;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
}

.btn-back {
    display: inline-block;
    margin-top: 20px;
    color: #fdfaf6;
    text-decoration: underline;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* --- WHATSAPP FLOTANTE --- */
.whatsapp-flotante {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-flotante:hover {
    transform: scale(1.1);
}

.whatsapp-flotante img {
    width: 30px;
}