/* Fuente personalizada */
@font-face {
    font-family: 'ClipForgeFont';
    src: url('fuente/ClipForge.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Fondo animado degradado */
body {
    font-family: 'ClipForgeFont', Arial, sans-serif;
    margin:0;
    padding:0;
    color: #fff;
    text-align: center;
    background: linear-gradient(120deg, #FF9A8B, #FAD0C4, #A18CD1);
    background-size: 400% 400%;
    animation: gradientAnim 15s ease infinite;
}
@keyframes gradientAnim {
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

/* Header */
header{
    display:flex;
    justify-content: space-between;
    align-items:center;
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.2);
    position: sticky;
    top:0;
    z-index:1000;
}
header .logo{ font-size:1.8rem; font-weight:bold; }
header nav{ display:flex; align-items:center; position: relative; }
header nav input{
    padding: 0.3rem 0.5rem;
    margin-right: 0.5rem;
    border-radius: 5px;
    border: none;
    pointer-events: none; /* No editable */
    background: rgba(255,255,255,0.2);
    color: #fff;
    width: 150px;
    text-align: center;
}
header nav button{
    background:none; border:none; font-size:1.3rem; cursor:pointer; color:white; margin-right:1rem;
}

/* Menú desplegable */
.menu-dropdown{
    display:none;
    position:absolute;
    top:60px;
    right:0;
    background: rgba(0,0,0,0.8);
    border-radius:10px;
    padding:1rem;
    flex-direction: column;
}
.menu-dropdown a{
    display:block;
    margin:0.5rem 0;
    color:white;
    font-weight:bold;
}
.menu-dropdown a:hover{ text-decoration: underline; }

/* Hero */
.hero{
    text-align:center;
    padding:6rem 2rem;
    animation:fadeIn 2s ease-in;
}
.hero h1{ font-size:3rem; margin-bottom:1rem; }
.hero p{ font-size:1.2rem; margin-bottom:2rem; }

/* Botones personalizados */
.btn-custom{
    display:inline-block;
    padding:1rem 2rem;
    margin:0.5rem;
    background: #FFD700;
    color:#000;
    font-weight:bold;
    border-radius:15px;
    border: 2px solid #fff;
    cursor:pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-custom:hover{
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
}

/* Planes centrados */
.planes-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:2rem;
    padding:3rem 2rem;
}
.plan{
    background: rgba(255,255,255,0.1);
    padding:1.5rem;
    border-radius:15px;
    flex:1 1 250px;
    text-align:center;
    transition: transform 0.3s, opacity 1s;
    opacity:0;
}
.plan:hover{ transform:translateY(-10px); }
.plan.highlight{ background: rgba(255,255,0,0.3); }

/* Catálogo centrado */
.catalogo-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:1rem;
    padding:2rem;
}
.item{
    background: rgba(255,255,255,0.2);
    padding:1rem 2rem;
    border-radius:10px;
    transition: transform 0.3s, opacity 1s;
    opacity:0;
}
.item:hover{ transform: scale(1.1); }

/* Footer centrado */
footer{
    text-align:center;
    padding:2rem;
    background: rgba(0,0,0,0.3);
    
    .search-section {
    text-align: center;
    padding: 2rem;
}
.search-bar {
    margin-top: 1rem;
}
.search-bar input {
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
    width: 250px;
}
.search-bar button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background: #ff9800;
    color: white;
    cursor: pointer;
}
.search-bar button:hover {
    background: #e68900;
}
.results {
    padding: 2rem;
}
.result-item {
    margin-bottom: 2rem;
    position: relative;
}
.result-item video,
.result-item audio {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: auto;
}
.watermark {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    font-weight: bold;
    padding: 5px;
    border-radius: 5px;
}
}
footer .pagos img{ width:40px; margin:0 0.5rem; }

/* Animaciones */
@keyframes fadeIn{
    from{ opacity:0; transform:translateY(20px); }
    to{ opacity:1; transform:translateY(0); }
}