/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Blanco suave, no molesta la vista */
    color: #333; /* Texto oscuro que combina bien */
}


.contenedor {
    max-width: 100%;
    overflow: hidden;
}

/* Hero Section (Imagen de fondo) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Tarjeta de contacto */
.tarjeta {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: -50px auto 30px;
    width: 85%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo {
    margin-bottom: 20px;
}

.logo i {
    font-size: 3rem;
    color: #3498db;
}

.logo h2 {
    margin: 10px 0 0;
    color: #2c3e50;
}

.tarjeta p {
    color: #7f8c8d;
    margin-bottom: 25px;
}

/* Botones */
.botones {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.boton {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.boton i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Colores de botones */
.whatsapp { background-color: #25D366; }
.tiktok { background: linear-gradient(135deg, #000000 0%, #25F4EE 50%, #FE2C55 100%); }
.facebook { background-color: #1877F2; }

/* Efectos hover */
.boton:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}
