/* ===========================================================
   MIA MIGA
   STYLE.CSS
=========================================================== */

:root{

    --pink:#ff2d8d;
    --pink-dark:#e91e73;
    --black:#121212;
    --grey:#666666;
    --light:#f7f7f7;
    --border:#ececec;
    --white:#ffffff;

    --shadow-small:
        0 8px 20px rgba(0,0,0,.05);

    --shadow:
        0 15px 40px rgba(0,0,0,.08);

    --shadow-large:
        0 25px 70px rgba(0,0,0,.12);

    --radius:22px;

    --transition:.30s ease;

    --container:1280px;

}

/* ===========================================================
   RESET
=========================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--black);

    background:white;

    line-height:1.65;

    -webkit-font-smoothing:antialiased;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(92%,var(--container));

    margin:auto;

}

/* ===========================================================
   HEADER
=========================================================== */

header{

    position:sticky;

    top:0;

    z-index:999;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,.05);

}

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:92px;

}

.logo img{

    height:70px;

}

.menu{

    display:flex;

    gap:40px;

    font-weight:600;

    letter-spacing:.03em;

}

.menu a{

    position:relative;

    transition:var(--transition);

}

.menu a:hover{

    color:var(--pink);

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:var(--pink);

    transition:.3s;

}

.menu a:hover::after{

    width:100%;

}

/* ===========================================================
   BUTTONS
=========================================================== */

.buttonPrimary,
.buttonSmall{

    background:linear-gradient(
    180deg,
    #ff5ba7,
    var(--pink));

    color:white;

    padding:16px 34px;

    border-radius:999px;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    transition:var(--transition);

    box-shadow:0 12px 30px rgba(255,45,141,.28);

}

.buttonPrimary:hover,
.buttonSmall:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 45px rgba(255,45,141,.35);

}

.buttonSecondary{

    border:2px solid var(--pink);

    color:var(--pink);

    padding:14px 32px;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

}

.buttonSecondary:hover{

    background:var(--pink);

    color:white;

}

/* ===========================================================
   HERO
=========================================================== */

.hero{

    padding:90px 0 120px;

}

.heroGrid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.heroLogo{

    width:430px;

    margin-bottom:30px;

}

.hero h1{

    font-size:3.2rem;

    line-height:1.1;

    font-weight:800;

    margin-bottom:10px;

}

.hero h2{

    font-size:2rem;

    color:var(--pink);

    margin-bottom:25px;

}

.hero p{

    max-width:560px;

    color:var(--grey);

    font-size:1.1rem;

    margin-bottom:40px;

}

.heroButtons{

    display:flex;

    gap:18px;

}

.heroCircle{

    width:640px;

    height:640px;

    border:3px solid rgba(255,45,141,.25);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    background:white;

    box-shadow:var(--shadow-large);

}