/* MegaSonic - Estilos mínimos */

* { box-sizing: border-box; }

body { margin: 0; overflow-x: hidden; }

#wrapper { overflow: hidden; position: relative; }

/* Utilidades */
.full-height { overflow: hidden; min-height: 100vh; }
.no-padding { padding: 0; }
.text-light { color: #fff; }
.text-light h1, .text-light h2, .text-light h3, .text-light h4 { color: #fff; }
.spacer-10 { height: 10px; }

/* Partículas */
#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Video container */
.de-video-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.de-video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.de-video-content {
    position: absolute;
    width: 100%;
    min-height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.de-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: rgba(20, 20, 20, 0.5);
    z-index: 5;
}

/* Logo */
.logo-img { width: 100%; max-width: 600px; }

/* Botones sociales */
.btn-social {
    display: inline-block;
    background: #000;
    color: #fff !important;
    padding: 10px 15px;
    font-size: 20px;
    margin: 0 5px;
    border-radius: 4px;
    transition: opacity 0.3s;
}
.btn-social:hover { opacity: 0.8; color: #fff !important; }

