:root{
    --teal:#5DAEAB;
    --coral:#E64865;
    --dark:#2B2B2B;
    --muted:#6c6c6c;
    --soft:#f5fbfa;
    --pink:#fff1f4;
    --white:#fff;
    --line:rgba(43,43,43,.1);
    --shadow:0 24px 70px rgba(43,43,43,.12);
    --radius:30px
}
*{
    box-sizing:border-box
}
html{
    scroll-behavior:smooth
}
body{
    margin:0;
    font-family:Manrope,system-ui,sans-serif;
    color:var(--dark);
    background:#fff;
    line-height:1.65
}
a{
    color:inherit;
    text-decoration:none
}
img{
    max-width:100%;
    display:block
}
.container{
    width:min(1160px,calc(100% - 36px));
    margin-inline:auto
}
.skip-link{
    position:absolute;
    left:-999px;
    top:12px;
    background:var(--dark);
    color:#fff;
    padding:10px 14px;
    z-index:50
}
.skip-link:focus{
    left:12px
}
.site-header{
    position:sticky;
    top:0;
    z-index:30;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--line)
}
.topbar{
    display:flex;
    justify-content:center;
    gap:24px;
    padding:8px 12px;
    background:linear-gradient(90deg,var(--teal),var(--coral));
    color:#fff;
    font-size:13px;
    font-weight:800
}
.nav{
    position:relative;
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.brand img{
    width:178px;
    height:auto
}
.nav-menu{
    display:flex;
    align-items:center;
    gap:26px;
    font-weight:800
}
.nav-toggle{
    display:none;
    border:0;
    background:var(--soft);
    border-radius:999px;
    padding:10px 16px;
    font-weight:800
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    padding:14px 23px;
    background:var(--coral);
    color:#fff;
    font-weight:900;
    box-shadow:0 14px 30px rgba(230,72,101,.23);
    transition:.25s
}
.btn:hover{
    transform:translateY(-2px)
}
.btn-outline{
    background:#fff;
    color:var(--teal);
    border:1px solid rgba(93,174,171,.35);
    box-shadow:none
}
.btn-small{
    padding:10px 17px
}
.hero{
    position:relative;
    overflow:hidden;
    padding:88px 0 74px;
    background:radial-gradient(circle at 15% 15%,rgba(93,174,171,.20),transparent 31%),radial-gradient(circle at 88% 20%,rgba(230,72,101,.15),transparent 27%),linear-gradient(180deg,#fff,var(--soft))
}
.hero:after{
    content:"";
    position:absolute;
    right:-120px;
    bottom:-120px;
    width:320px;
    height:320px;
    background:var(--coral);
    opacity:.08;
    border-radius:50%
}
.hero-grid{
    display:grid;
    grid-template-columns:1fr .95fr;
    gap:56px;
    align-items:center
}
.eyebrow{
    margin:0 0 13px;
    color:var(--teal);
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.22em;
    font-weight:900
}
h1,h2,h3{
    margin:0;
    color:var(--dark);
    line-height:1.03
}
h1,h2{
    font-family:"Playfair Display",serif
}
h1{
    font-size:clamp(48px,6.7vw,86px);
    max-width:760px
}
h2{
    font-size:clamp(38px,5vw,64px)
}
h3{
    font-size:26px
}
.lead{
    font-size:20px;
    color:var(--muted);
    max-width:690px
}
.hero-actions,.contact-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin:30px 0
}
.trust-row{
    display:flex;
    gap:10px;
    flex-wrap:wrap
}
.trust-row span{
    background:#fff;
    border:1px solid var(--line);
    padding:9px 13px;
    border-radius:999px;
    font-weight:800;
    font-size:14px
}
.hero-visual{
    position:relative
}
.hero-visual img{
    height:575px;
    width:100%;
    object-fit:cover;
    border-radius:44px;
    box-shadow:var(--shadow)
}
.floating-card{
    position:absolute;
    left:-22px;
    bottom:34px;
    width:min(340px,86%);
    background:rgba(255,255,255,.92);
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    border-radius:25px;
    padding:22px
}
.floating-card strong{
    display:block;
    font-family:"Playfair Display",serif;
    font-size:27px
}
.section{
    padding:86px 0
}
.split{
    display:grid;
    grid-template-columns:.9fr 1fr;
    gap:56px;
    align-items:start
}
.split p:last-child{
    font-size:19px;
    color:var(--muted)
}
.gallery{
    margin-top:38px;
    display:grid;
    grid-template-columns:1.15fr .85fr .85fr;
    grid-auto-rows:245px;
    gap:16px
}
.gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 10px 32px rgba(43,43,43,.08)
}
.gallery img:first-child{
    grid-row:span 2
}
.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 40px
}
.section-heading p:last-child{
    color:var(--muted)
}
.services{
    background:linear-gradient(180deg,#fff,var(--pink))
}
.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px
}
.service-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:0 14px 40px rgba(43,43,43,.08);
    transition:.25s
}
.service-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow)
}
.service-card img{
    height:235px;
    width:100%;
    object-fit:cover;
    background:var(--soft)
}
.service-card div{
    padding:25px
}
.service-card p{
    color:var(--muted);
    margin:12px 0 18px
}
.service-card a{
    font-weight:900;
    color:var(--coral)
}
.laser{
    background:linear-gradient(135deg,var(--teal),#347c79);
    color:#fff
}
.laser h2,.laser .eyebrow{
    color:#fff
}
.laser p{
    color:rgba(255,255,255,.88)
}
.laser-grid{
    display:grid;
    grid-template-columns:1fr .86fr;
    gap:44px;
    align-items:center
}
.laser-grid img{
    height:520px;
    width:100%;
    object-fit:cover;
    border-radius:38px;
    box-shadow:0 28px 70px rgba(0,0,0,.18)
}
.check-list{
    padding:0;
    margin:25px 0;
    list-style:none
}
.check-list li{
    position:relative;
    padding-left:30px;
    margin:10px 0
}
.check-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    font-weight:900
}
.light{
    background:#fff;
    color:var(--teal);
    box-shadow:none
}
.hours{
    background:#fff
}
.hours-card{
    background:var(--soft);
    border:1px solid rgba(93,174,171,.18);
    border-radius:var(--radius);
    padding:24px;
    box-shadow:var(--shadow)
}
.hours-card div{
    display:flex;
    justify-content:space-between;
    gap:18px;
    padding:14px 0;
    border-bottom:1px solid rgba(93,174,171,.18)
}
.hours-card div:last-child{
    border-bottom:0
}
.contact{
    background:linear-gradient(135deg,#fff,var(--soft))
}
.contact-grid{
    display:grid;
    grid-template-columns:1fr .72fr;
    gap:42px;
    align-items:center
}
.contact-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:30px;
    box-shadow:var(--shadow)
}
.note{
    font-size:14px;
    color:var(--muted);
    background:var(--pink);
    padding:14px;
    border-radius:18px
}
.footer{
    padding:30px 0;
    background:var(--dark);
    color:#fff
}
.footer-inner{
    display:flex;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap
}
.whatsapp-float{
    position:fixed;
    right:18px;
    bottom:18px;
    background:#2f7d51;
    color:#fff;
    border-radius:999px;
    padding:14px 18px;
    font-weight:900;
    box-shadow:0 14px 34px rgba(0,0,0,.18);
    z-index:40
}
.reveal{
    opacity:0;
    transform:translateY(18px);
    transition:.6s ease
}
.reveal.is-visible{
    opacity:1;
    transform:none
}

/* =========================
   TABLET E NOTEBOOK
   ========================= */
@media (max-width: 992px) {

    .topbar{
        flex-wrap:wrap;
        gap:10px;
    }

    .nav-toggle{
        display:inline-flex;
    }

    .nav-menu{
        position:absolute;
        left:18px;
        right:18px;
        top:100%;
        margin-top:10px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        background:#fff;
        border-radius:24px;
        padding:20px;
        box-shadow:var(--shadow);
    }

    .nav-menu.is-open{
        display:flex;
    }

    .hero-grid,
    .split,
    .laser-grid,
    .contact-grid,
    .funding-card{
        grid-template-columns:1fr;
    }

    .hero{
        padding-top:52px;
    }

    .hero-visual img{
        height:460px;
    }

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

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

    .gallery img:first-child{
        grid-row:auto;
    }

    .floating-card{
        left:18px;
    }

    .funding-card{
        padding:24px;
    }

    .funding-card img{
        justify-self:start;
        max-width:100%;
    }
}

/* =========================
   SMARTPHONE
   ========================= */
@media (max-width: 768px) {

    .container{
        width:min(100% - 28px,1160px);
    }

    .topbar span{
        display:none;
    }

    .brand img{
        width:145px;
    }

    .cards,
    .gallery{
        grid-template-columns:1fr;
    }

    .hero-actions .btn,
    .contact-actions .btn{
        width:100%;
    }

    h1{
        font-size:45px;
    }

    .section{
        padding:62px 0;
    }

    .hours-card div{
        display:block;
    }

    .whatsapp-float{
        left:18px;
        text-align:center;
    }

    .service-card img{
        height:220px;
    }
    .footer-inner {
        padding-bottom: 100px;
    }
}

/* =========================
   SMARTPHONE PICCOLI
   ========================= */
@media (max-width: 480px) {

    h1{
        font-size:38px;
        line-height:1.1;
    }

    h2{
        font-size:32px;
        line-height:1.15;
    }

    .hero{
        padding:40px 0;
    }

    .hero-visual img{
        height:320px;
        border-radius:28px;
    }

    .floating-card{
        position:relative;
        left:0;
        bottom:0;
        width:100%;
        margin-top:20px;
    }

    .btn{
        padding:13px 18px;
    }

    .whatsapp-float{
        right:12px;
        left:auto;
        bottom:12px;
        padding:12px 14px;
        font-size:14px;
    }

    .service-card img{
        height:200px;
    }

    .contact-card,
    .hours-card{
        padding:20px;
    }
}

.funding {
    background: #ffffff;
}
.funding-card {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(93,174,171,.22);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(93,174,171,.08), rgba(230,72,101,.06));
    box-shadow: 0 20px 60px rgba(43,43,43,.07);
}
.funding-card img {
    width: 100%;
    max-width: 360px;
    justify-self: end;
    display: block;
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 12px 34px rgba(43,43,43,.08);
}

.position-absolute {
    position: absolute !important;
}
.w-100 {
    width: 100% !important;
}
.h-100 {
    height: 100% !important;
}

