/* =========================
   STUDIO BEAUTÉ - CSS PART 1
   Global + Navbar + Hero + Popup
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Roboto', sans-serif;
}

:root{
    --pink-light:#fff1f6;
    --pink:#f8c8dc;
    --pink-deep:#d98aa8;
    --rose-gold:#c9929e;
    --dark:#1f1b1d;
    --soft-dark:#4a4045;
    --white:#ffffff;
    --gray:#777;
    --shadow:0 20px 60px rgba(217,138,168,.18);
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--pink-light);
    color:var(--dark);
    overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}

.navbar{
    width:100%;
    padding:18px 7%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(255,241,246,.72);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(217,138,168,.18);
}

.logo{
    text-decoration:none;
    color:var(--dark);
    font-size:22px;
    font-weight:800;
    letter-spacing:.5px;
}

.logo span{
    color:var(--pink-deep);
    font-weight:400;
    font-style:italic;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:var(--soft-dark);
    font-size:14px;
    font-weight:500;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--pink-deep);
    transition:.35s ease;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-book-btn{
    border:none;
    background:var(--dark);
    color:var(--white);
    padding:12px 22px;
    border-radius:40px;
    font-size:14px;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:8px;
    box-shadow:0 12px 30px rgba(31,27,29,.18);
    transition:.35s ease;
}

.nav-book-btn:hover{
    background:var(--pink-deep);
    transform:translateY(-2px);
}

.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
    color:var(--dark);
}

/* =========================
   HERO
========================= */

.beauty-hero{
    min-height:100vh;
    padding:130px 7% 80px;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:60px;
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top left, rgba(248,200,220,.75), transparent 35%),
        linear-gradient(135deg, #fff8fb, #fff1f6 55%, #ffffff);
}

.hero-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(8px);
    opacity:.55;
    z-index:0;
}

.shape-one{
    width:280px;
    height:280px;
    background:var(--pink);
    top:100px;
    right:8%;
}

.shape-two{
    width:180px;
    height:180px;
    background:var(--rose-gold);
    bottom:80px;
    left:8%;
}

.hero-content,
.hero-visual{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.75);
    border:1px solid rgba(217,138,168,.22);
    padding:9px 16px;
    border-radius:40px;
    color:var(--pink-deep);
    font-size:13px;
    font-weight:500;
    margin-bottom:22px;
    box-shadow:var(--shadow);
}

.hero-badge i{
    font-size:13px;
}

.beauty-hero h1{
    font-size:clamp(34px, 4.5vw, 60px);
    line-height:1.05;
    letter-spacing:-1px;
    max-width:720px;
    margin-bottom:22px;
    color:var(--dark);
}

.beauty-hero p{
    max-width:620px;
    color:var(--soft-dark);
    font-size:16px;
    line-height:1.8;
    margin-bottom:32px;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:36px;
}

.hero-btn{
    border:none;
    text-decoration:none;
    padding:14px 24px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:.35s ease;
}

.hero-btn.primary{
    background:var(--dark);
    color:var(--white);
    box-shadow:0 18px 40px rgba(31,27,29,.20);
}

.hero-btn.primary:hover{
    background:var(--pink-deep);
    transform:translateY(-3px);
}

.hero-btn.secondary{
    background:rgba(255,255,255,.75);
    color:var(--dark);
    border:1px solid rgba(217,138,168,.28);
}

.hero-btn.secondary:hover{
    background:var(--white);
    transform:translateY(-3px);
}

.hero-trust{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-trust div{
    background:rgba(255,255,255,.72);
    border:1px solid rgba(217,138,168,.18);
    border-radius:18px;
    padding:14px 18px;
    min-width:130px;
    box-shadow:0 12px 30px rgba(217,138,168,.12);
}

.hero-trust strong{
    display:block;
    font-size:20px;
    color:var(--pink-deep);
}

.hero-trust span{
    font-size:12px;
    color:var(--soft-dark);
}

/* =========================
   HERO VISUAL
========================= */

.hero-visual{
    min-height:560px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-image-card{
    position:relative;
    width:min(430px, 100%);
    height:560px;
    border-radius:38px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(217,138,168,.35);
    border:10px solid rgba(255,255,255,.75);
}

.hero-image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.floating-card{
    position:absolute;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(14px);
    border:1px solid rgba(217,138,168,.22);
    box-shadow:0 20px 50px rgba(31,27,29,.12);
    border-radius:22px;
    padding:16px 18px;
    display:flex;
    align-items:center;
    gap:12px;
    animation:floatCard 4s ease-in-out infinite;
}

.floating-card i{
    width:38px;
    height:38px;
    background:var(--pink);
    color:var(--dark);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.floating-card strong{
    display:block;
    font-size:14px;
    color:var(--dark);
}

.floating-card span{
    font-size:12px;
    color:var(--gray);
}

.promo-card{
    top:70px;
    left:0;
}

.style-card{
    right:0;
    bottom:95px;
    animation-delay:1.2s;
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

/* =========================
   BOOKING POPUP
========================= */

.booking-popup{
    position:fixed;
    inset:0;
    background:rgba(31,27,29,.65);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:3000;
    padding:20px;
}

.booking-popup.active{
    display:flex;
}

.booking-box{
    width:100%;
    max-width:460px;
    background:var(--white);
    border-radius:28px;
    padding:36px;
    text-align:center;
    position:relative;
    box-shadow:0 30px 80px rgba(0,0,0,.25);
    animation:popupShow .35s ease;
}

@keyframes popupShow{
    from{
        opacity:0;
        transform:scale(.9) translateY(20px);
    }
    to{
        opacity:1;
        transform:scale(1) translateY(0);
    }
}

.close-booking{
    position:absolute;
    top:18px;
    right:20px;
    cursor:pointer;
    color:var(--soft-dark);
    font-size:18px;
}

.popup-icon{
    width:70px;
    height:70px;
    margin:0 auto 18px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.booking-box h3{
    font-size:24px;
    margin-bottom:12px;
    color:var(--dark);
}

.booking-box p{
    color:var(--soft-dark);
    font-size:15px;
    line-height:1.7;
    margin-bottom:24px;
}

.popup-whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    padding:14px 20px;
    border-radius:40px;
    background:#25D366;
    color:white;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

.popup-whatsapp-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(37,211,102,.28);
}


/* =========================
   CSS PART 2
   Services + Gallery + Promotions + Products
========================= */

/* =========================
   GENERAL SECTIONS
========================= */

section{
    padding:100px 7%;
}

.section-heading{
    text-align:center;
    max-width:720px;
    margin:0 auto 55px;
}

.section-heading span,
.gallery-text span,
.products-text span{
    display:inline-block;
    color:var(--pink-deep);
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-heading h2,
.gallery-text h2,
.products-text h2{
    font-size:clamp(28px, 3vw, 42px);
    line-height:1.15;
    color:var(--dark);
    margin-bottom:14px;
}

.section-heading p,
.gallery-text p,
.products-text p{
    color:var(--soft-dark);
    font-size:15px;
    line-height:1.8;
}

/* =========================
   SERVICES
========================= */

.services{
    background:var(--white);
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
}

.service-card{
    background:linear-gradient(180deg, #fff, #fff7fa);
    border:1px solid rgba(217,138,168,.18);
    padding:34px 24px;
    border-radius:26px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 70px rgba(217,138,168,.24);
}

.service-card i{
    width:58px;
    height:58px;
    margin:0 auto 18px;
    border-radius:50%;
    background:var(--pink-light);
    color:var(--pink-deep);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.service-card h3{
    font-size:18px;
    margin-bottom:10px;
    color:var(--dark);
}

.service-card p{
    font-size:14px;
    line-height:1.7;
    color:var(--soft-dark);
}

/* =========================
   GALLERY
========================= */

.gallery-section{
    background:
        radial-gradient(circle at top right, rgba(248,200,220,.45), transparent 30%),
        var(--pink-light);
}

.gallery-content{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:45px;
    align-items:center;
}

.gallery-text{
    max-width:480px;
}

.section-btn{
    margin-top:25px;
    border:none;
    background:var(--dark);
    color:var(--white);
    padding:14px 24px;
    border-radius:40px;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    transition:.35s ease;
}

.section-btn:hover{
    background:var(--pink-deep);
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(217,138,168,.25);
}

.gallery-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    grid-template-rows:220px 220px;
    gap:18px;
}

.gallery-item{
    position:relative;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(31,27,29,.12);
}

.gallery-item.large{
    grid-row:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    inset:auto 16px 16px 16px;
    background:rgba(255,255,255,.86);
    backdrop-filter:blur(12px);
    border-radius:18px;
    padding:14px 16px;
    transform:translateY(12px);
    opacity:0;
    transition:.35s ease;
}

.gallery-item:hover .gallery-overlay{
    transform:translateY(0);
    opacity:1;
}

.gallery-overlay h4{
    font-size:16px;
    color:var(--dark);
    margin-bottom:4px;
}

.gallery-overlay span{
    font-size:12px;
    color:var(--pink-deep);
    font-weight:700;
}

/* =========================
   PROMOTIONS
========================= */

.promotions{
    background:var(--white);
}

.promo-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.promo-card{
    position:relative;
    background:#fff7fa;
    border:1px solid rgba(217,138,168,.18);
    border-radius:28px;
    padding:34px 26px;
    box-shadow:var(--shadow);
    overflow:hidden;
    transition:.35s ease;
}

.promo-card::before{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    border-radius:50%;
    background:rgba(248,200,220,.55);
    right:-60px;
    top:-60px;
}

.promo-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 75px rgba(217,138,168,.22);
}

.promo-card.featured{
    background:linear-gradient(135deg, var(--dark), #4a2f39);
    color:var(--white);
}

.promo-card.featured p,
.promo-card.featured strong{
    color:#f6dce7;
}

.promo-tag{
    position:relative;
    z-index:1;
    display:inline-block;
    background:var(--white);
    color:var(--pink-deep);
    padding:7px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:800;
    margin-bottom:18px;
}

.promo-card.featured .promo-tag{
    background:var(--pink);
    color:var(--dark);
}

.promo-card h3{
    position:relative;
    z-index:1;
    font-size:21px;
    margin-bottom:12px;
}

.promo-card p{
    position:relative;
    z-index:1;
    color:var(--soft-dark);
    font-size:14px;
    line-height:1.7;
    margin-bottom:16px;
}

.promo-card strong{
    position:relative;
    z-index:1;
    display:block;
    color:var(--pink-deep);
    margin-bottom:22px;
}

.promo-btn{
    position:relative;
    z-index:1;
    border:none;
    background:var(--dark);
    color:var(--white);
    padding:12px 20px;
    border-radius:40px;
    cursor:pointer;
    font-weight:700;
    transition:.3s ease;
}

.promo-card.featured .promo-btn{
    background:var(--white);
    color:var(--dark);
}

.promo-btn:hover{
    transform:translateY(-3px);
    background:var(--pink-deep);
    color:var(--white);
}

/* =========================
   PRODUCTS
========================= */

.products{
    background:
        linear-gradient(135deg, #fff8fb, var(--pink-light));
}

.products-layout{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:45px;
    align-items:center;
}

.products-text{
    max-width:500px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.product-card{
    background:var(--white);
    border-radius:26px;
    overflow:hidden;
    border:1px solid rgba(217,138,168,.16);
    box-shadow:var(--shadow);
    transition:.35s ease;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:190px;
    object-fit:cover;
    display:block;
}

.product-card h3{
    padding:18px 18px 6px;
    font-size:17px;
    color:var(--dark);
}

.product-card p{
    padding:0 18px 20px;
    color:var(--soft-dark);
    font-size:13px;
    line-height:1.6;
}

/* =========================
   RESPONSIVE PART 2
========================= */

@media(max-width:1024px){

    .services-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .gallery-content,
    .products-layout{
        grid-template-columns:1fr;
    }

    .gallery-text,
    .products-text{
        max-width:700px;
        text-align:center;
        margin:auto;
    }

    .promo-grid{
        grid-template-columns:1fr 1fr;
    }

    .products-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:768px){

    section{
        padding:80px 6%;
    }

    .services-grid,
    .promo-grid,
    .products-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .gallery-item,
    .gallery-item.large{
        height:280px;
        grid-row:auto;
    }
}

@media(max-width:480px){

    section{
        padding:70px 5%;
    }

    .service-card,
    .promo-card{
        padding:28px 20px;
    }

    .gallery-item,
    .gallery-item.large{
        height:240px;
    }

    .product-card img{
        height:210px;
    }
}


/* =========================
   CSS PART 3
   Testimonials + Contact + Footer + Responsive
========================= */

/* TESTIMONIALS */

.testimonials{
    background:var(--white);
    overflow:hidden;
}

.testimonial-slider{
    max-width:850px;
    margin:0 auto;
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    transition:transform .6s ease;
}

.testimonial-card{
    min-width:100%;
    background:linear-gradient(180deg,#fff,#fff7fa);
    border:1px solid rgba(217,138,168,.18);
    border-radius:30px;
    padding:42px;
    text-align:center;
    box-shadow:var(--shadow);
}

.testimonial-card p{
    color:var(--soft-dark);
    font-size:16px;
    line-height:1.8;
    margin-bottom:22px;
}

.testimonial-card h4{
    font-size:18px;
    color:var(--dark);
    margin-bottom:14px;
}

.stars{
    display:flex;
    justify-content:center;
    gap:6px;
}

.stars i{
    color:#f7b500;
    font-size:17px;
}

.testimonial-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:26px;
}

.dot{
    width:11px;
    height:11px;
    border-radius:50%;
    background:#ddd;
    cursor:pointer;
    transition:.3s ease;
}

.dot.active{
    background:var(--pink-deep);
    transform:scale(1.2);
}

/* CONTACT */

.contact-section{
    background:
        radial-gradient(circle at bottom left, rgba(248,200,220,.55), transparent 35%),
        var(--pink-light);
}

.contact-container{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:40px;
    align-items:center;
}

.contact-info span{
    display:inline-block;
    color:var(--pink-deep);
    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.contact-info h2{
    font-size:clamp(28px,3vw,42px);
    line-height:1.15;
    margin-bottom:16px;
}

.contact-info p{
    color:var(--soft-dark);
    line-height:1.8;
    margin-bottom:26px;
}

.contact-items{
    display:grid;
    gap:16px;
    margin-bottom:26px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:14px;
    background:rgba(255,255,255,.75);
    border:1px solid rgba(217,138,168,.18);
    padding:16px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(217,138,168,.12);
}

.contact-item i{
    width:42px;
    height:42px;
    background:var(--pink);
    color:var(--dark);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-item strong{
    display:block;
    font-size:14px;
}

.contact-item span{
    margin:0;
    color:var(--soft-dark);
    font-size:13px;
    text-transform:none;
    letter-spacing:0;
    font-weight:400;
}

.contact-map{
    height:430px;
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(31,27,29,.15);
    border:10px solid rgba(255,255,255,.7);
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:none;
}

/* SOCIAL BANNER */

.social-banner{
    background:linear-gradient(135deg,var(--dark),#4a2f39);
    color:var(--white);
    text-align:center;
}

.social-content{
    max-width:760px;
    margin:auto;
}

.social-content span{
    display:inline-block;
    color:var(--pink);
    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.social-content h2{
    font-size:clamp(28px,3vw,42px);
    line-height:1.15;
    margin-bottom:16px;
}

.social-content p{
    color:#f2dbe4;
    line-height:1.8;
    margin-bottom:28px;
}

.social-buttons{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.social-btn{
    text-decoration:none;
    color:var(--dark);
    background:var(--white);
    padding:13px 22px;
    border-radius:40px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:700;
    transition:.35s ease;
}

.social-btn:hover{
    background:var(--pink);
    transform:translateY(-3px);
}

/* FOOTER */

.footer{
    background:#171315;
    color:var(--white);
    padding:80px 7% 24px;
}

.footer-container{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:38px;
    margin-bottom:42px;
}

.footer-logo{
    display:inline-block;
    text-decoration:none;
    color:var(--white);
    font-size:24px;
    font-weight:900;
    margin-bottom:18px;
}

.footer-logo span{
    color:var(--pink);
    font-style:italic;
    font-weight:400;
}

.footer-brand p{
    color:#c9b8bf;
    line-height:1.8;
    font-size:14px;
    max-width:360px;
}

.footer-links h4,
.footer-social h4{
    font-size:15px;
    margin-bottom:18px;
    color:var(--white);
}

.footer-links a,
.footer-social a{
    display:block;
    text-decoration:none;
    color:#c9b8bf;
    font-size:14px;
    margin-bottom:12px;
    transition:.3s ease;
}

.footer-social a i{
    width:20px;
    color:var(--pink);
}

.footer-links a:hover,
.footer-social a:hover{
    color:var(--pink);
    transform:translateX(5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:22px;
    text-align:center;
}

.footer-bottom p{
    color:#b7a7ad;
    font-size:13px;
}

/* SCROLL ANIMATION */

.reveal{
    opacity:0;
    transform:translateY(35px);
    transition:.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE NAVBAR + HERO */

@media(max-width:980px){

    .nav-links{
        position:absolute;
        top:74px;
        right:7%;
        width:250px;
        background:rgba(255,255,255,.96);
        backdrop-filter:blur(18px);
        border:1px solid rgba(217,138,168,.2);
        border-radius:22px;
        padding:22px;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
        box-shadow:0 20px 60px rgba(31,27,29,.14);
    }

    .nav-links.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .nav-book-btn{
        display:none;
    }

    .beauty-hero{
        grid-template-columns:1fr;
        text-align:center;
        padding-top:120px;
        gap:35px;
    }

    .beauty-hero p,
    .beauty-hero h1{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-actions,
    .hero-trust{
        justify-content:center;
    }

    .hero-visual{
        min-height:500px;
    }

    .promo-card{
        left:4%;
    }

    .style-card{
        right:4%;
    }

    .contact-container{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .navbar{
        padding:16px 6%;
    }

    .logo{
        font-size:20px;
    }

    .beauty-hero{
        padding:110px 6% 70px;
    }

    .hero-image-card{
        height:460px;
        border-radius:30px;
    }

    .floating-card{
        padding:13px 14px;
    }

    .floating-card span{
        display:none;
    }

    .testimonial-card{
        padding:32px 22px;
    }

    .contact-map{
        height:330px;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-brand p{
        margin:auto;
    }

    .footer-links a:hover,
    .footer-social a:hover{
        transform:none;
    }
}

@media(max-width:480px){

    .beauty-hero h1{
        font-size:32px;
    }

    .beauty-hero p{
        font-size:14px;
    }

    .hero-btn{
        width:100%;
    }

    .hero-trust{
        flex-direction:column;
    }

    .hero-trust div{
        width:100%;
    }

    .hero-visual{
        min-height:420px;
    }

    .hero-image-card{
        height:400px;
    }

    .promo-card{
        top:35px;
        left:0;
    }

    .style-card{
        right:0;
        bottom:45px;
    }

    .nav-links{
        right:5%;
        width:90%;
    }
}