/* --- VARIABLES Y BASES --- */
:root {
    --accent: #ff4757;
    --sebas: #2ed573;
    --yt: #ff0000;
    --dark: #1e293b;
    --text: #2f3542;
    --bg-pattern: #dfe4ea;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-out forwards;
}

body {
    background-color: #ffffff;
    background-image: radial-gradient(var(--bg-pattern) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    color: var(--text);
}

/* --- COMPONENTES --- */
.section-title {
    font-family: 'Fredoka One', cursive;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 80px 0 40px;
    color: var(--dark);
}

.card {
    background: white;
    border-radius: 45px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    transition: 0.4s ease;
    border: 4px solid transparent;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 70px rgba(0,0,0,0.1);
}

.img-container {
    width: 100%;
    height: 380px;
    background: #f8fafc;
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.img-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: 0.5s ease;
    border-radius: 12px;
}

.card:hover .img-container img { transform: scale(1.1); }

.badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.75rem;
    margin-top: -50px;
    position: relative;
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.2);
}

.fredoka {
    font-family: 'Fredoka One', cursive;
}

.lexend {
    font-family: 'Lexend', sans-serif;
}

/* --- SECCIÓN DISTRIBUCIÓN --- */
.dist-card {
    padding: 40px;
    border-radius: 40px;
    transition: 0.3s;
}

.dist-logo {
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* --- SOBRE EL ESTUDIO --- */
.about-wrap {
    margin: 100px 0;
    padding: 100px 8%;
    background: url('../img/vitranex-fondo.png') center/cover no-repeat;
    border-radius: 60px;
    border: 10px solid white;
    box-shadow: 0 50px 100px rgba(0,0,0,0.1);
}

.about-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* --- FOOTER & NOTA --- */
.raw-note {
    text-align: center;
    margin: 60px auto;
    max-width: 800px;
    padding: 30px;
    border: 3px dashed #cbd5e1;
    border-radius: 35px;
    font-style: italic;
    color: #94a3b8;
}

.main-banner {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
    border-radius: 50px;
    background: url('https://lcloudsflixstudios.com/public/img/principal_banner.png') center/cover no-repeat;
    border: 12px solid white;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}
