* {
    margin: 0;
    padding: 0 ;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
}

img , figure {
    max-width: 100%;
    width: 100%;
    display: flex;
    object-fit: cover;
    object-position: center center;
}

a {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: none;
}

video {
    max-width: 100%;
    width: 100%;
    display: flex;
    object-fit: cover;
    object-position: center center;
}

p a {
    display: inline;
}

li {
    list-style-type: none;
}

table,
tr,
td {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
}

form, button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    -webkit-hyphens: auto;
            hyphens: auto;
    background-color: transparent;
    display: flex;
    color: inherit;
}

:root {
    --rojo: #e50914;
    --blanco: white;
    --gris: #303030;
    --gris_f: #757575;
    --negro: black;
    --tipo-titular: "Playfair Display", serif;
    --tipo-principal: "Inter", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
}

img {
    max-width: 100%;
    width: 100%;
    display: flex;
    object-fit: cover;
    object-position: center center;
}

a {
    display: block;
    text-decoration: none;
    color: inherit;
}

select {
    font-family: inherit;
    font-size: inherit;
    -webkit-hyphens: auto;
            hyphens: auto;
    background-color: transparent;
    display: flex;
    color: inherit;
}

body {
    font-family: var(--tipo-principal);
    font-size: 100%;
    min-height: 100vh;
    background-color: var(--negro);
    color: var(--blanco);
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

.circulos{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    filter: blur(40px);
    animation: circulo1 50s linear infinite both;
}

.circulos .circulo{
    position: absolute;
    width: 50%;
    height: 50%;
    animation: circulo1 100s linear infinite both;    
}

.circulos .circulo1{
    top: 0%;
    left: 0%;    
}

.circulos .circulo1 .path{
    fill: seagreen;
}

.circulos .circulo2{
    top: 0%;
    right: 0%;
}

.circulos .circulo2 .path{
    fill: rgb(111, 0, 155);
}

.circulos .circulo3{
    bottom: 0%;
    left: 0%;
}

.circulos .circulo3 .path{
    fill: rgb(165, 127, 1);
}

.circulos .circulo4{
    bottom: 0%;
    right: 0%;
}

.circulos .circulo4 .path{
    fill: rgb(0, 59, 155);
}

.header{
    width: 100%;
    min-height: 5em;
    background: lightblue;

    padding: 1em 2em;

    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;

    display: none;
}

.header .ul{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.header .li{
    margin: 0 1em;
}

.main{
    
    background:rgba(0, 0, 0, 0.75);
    margin: 0 0 1em;
    text-align: center;
    position: relative;
    z-index: 2;
}

.seccion{
    width: 100%;
    min-height: 80vh;
    padding: 2em;

    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.seccion .info{
    font-size: 1.2em;
    animation: aparecer1 2s ease 1 both;
}

.seccion .ul{
    /*background: red;*/
    margin: 2em 0 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}
.seccion .ul .li{
    /*background: chartreuse;*/
    margin: 0 1em;
}
.seccion .ul .a{
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    padding: 1em 1em 1em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .5s ease;
    animation: aparecer1 2s ease 1 backwards; 
}
.seccion .ul>:nth-child(2) .a{
    animation-delay: .4s;
}

.seccion .ul .a:hover{
    border-color: white;
}
.seccion .h2{
    font-family: var(--tipo-titular);
    font-weight: 600;
    font-size: 5em;
    line-height: 1em;
    color: white;
    mix-blend-mode: exclusion;
}
.seccion .h3{
    font-family: var(--tipo-titular);
    font-size: 4.3em;
    /*font-style: italic;*/
}
.seccion .grid{
    width: 90%;
    max-width: 40em;
    margin: 1em 0;

    display: grid;
    grid-template-columns: repeat( auto-fit ,minmax( 15rem , 1fr));
    gap: 1em;
}
.seccion .article{
    width: 100%;
    min-height: 20vh;
    background: lightgoldenrodyellow;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;
    border-radius: 1em;
}
.seccion .figure{
    width: 100%;
    background: red;
}
.seccion .img{
    width: 100%;
    background: lime;
}
.seccion .h4{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    backdrop-filter: blur(1rem);
    position: absolute;
    bottom: 0;
    left: 0;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 1.8em;
    font-family: var(--tipo-titular);
    font-style: italic;
    opacity: 0;
    transform: translateZ(1) scale(1.5);
    transition: all .5s ease;
}

.seccion .article:hover .h4{
    opacity: 1;
    transform: translateZ(1) scale(1);
}

.works{
    color:white;
}
.works .h2{
    margin: 0 0 1rem;
    color:inherit;
}
.about{}
.about .h2{
    margin: 0 0 2rem;
}
.about .p{
    max-width: 40rem;
    margin: 0 0 2rem;
    font-size: 1.1em;
    text-align: left;
}
.about .rrss{
    width: 100%;
    /*background: lightgreen;*/

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}
.about .li{
    /*background: orange;*/
    margin: 0 1em;
}
.about .a{}
.about .svg{
    width: 3em;
    height: 3em;
    /*background: red;*/
}

.footer{
    /*background-color: lightpink;*/
    padding: 2em 0;
    text-align: center;
    color:var(--blanco);
    position: relative;
    z-index: 2;
}
.footer .spam{

}

@keyframes circulo1{
    from{
        transform: rotate(0deg) scale(2);
    }
    to{
        transform: rotate(360deg) scale(2);
    }
}
@keyframes aparecer1{
    from{
        opacity: 0;
        transform: translateY(50%);
    }
    to{
        opacity: 1;
        transform: translateY(0%);
    }
}

#cursor{
    width: 5em;
    height: 5em;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
    border-radius: 50%;
    mix-blend-mode: difference;
}
#cursor.mini{
    transform: scale(0.7);
}