/* Reset limpio */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* HERO */
.hero {
    height: 100vh;
    background-image: url('hero.png');  /* tu imagen */
    background-size: contain;           /* 🔥 CONTIENE sin cortar */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;             /* Fondo negro como alternativa */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Animación cinematográfica MUY elegante */
.hero::before {
    content: "";
    position: absolute;
    inset: -5%;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: cinematicZoom 18s ease-in-out infinite;
    z-index: -1;
}

@keyframes cinematicZoom {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}