:root {

    --bg: #050a0a;
    --card: rgba(255,255,255,0.05);

    --green-dark: #0a7c63;
    --green-light: #10e7c4;

    --white: #ffffff;
    --text: rgba(255,255,255,.75);

}

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

body{

    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:white;
    overflow-x:hidden;

}

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

.navbar-custom{

    padding:25px 0;

    position:absolute;
    width:100%;
    top:0;
    left:0;
    z-index:100;

}

.logo-block{

    display:flex;
    align-items:center;

}

.logo-dots{

    display:flex;
    gap:4px;
    margin-right:8px;

}

.logo-dots span{

    width:12px;
    height:12px;
    background:white;
    border-radius:50%;

}

.logo-text{

    font-size:1.4rem;
    font-weight:700;
    color:white;

}

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

.hero{

    min-height:100vh;

    display:flex;
    align-items:center;

    background:
    radial-gradient(
        circle at top left,
        #0a7c63 0%,
        #050a0a 60%
    );

    position:relative;

}

.hero::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:rgba(16,231,196,.08);

    border-radius:50%;

    filter:blur(100px);

    left:-150px;
    top:-150px;

}

/* ===========================
   PHOTO
=========================== */

.photo-card{

    position:relative;

    background:var(--card);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    overflow:hidden;

    backdrop-filter:blur(20px);

    box-shadow:
    0 30px 80px rgba(0,0,0,.4);

}

.photo-card img{

    width:100%;
    display:block;

}

/* ===========================
   CONTENT
=========================== */

.content-wrapper{

    max-width:650px;

}

.badge-ceo{

    display:inline-block;

    background:
    rgba(16,231,196,.15);

    color:var(--green-light);

    padding:10px 18px;

    border-radius:50px;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

h1{

    font-size:3.5rem;
    font-weight:800;

    line-height:1.1;

    margin-bottom:15px;

}

h2{

    font-size:2rem;
    font-weight:700;

    color:var(--green-light);

    margin-bottom:25px;

}

p{

    font-size:1.15rem;

    color:var(--text);

    margin-bottom:35px;

}

/* ===========================
   BUTTONS
=========================== */

.action-buttons{

    display:flex;
    flex-direction:column;
    gap:15px;

    max-width:420px;

}

.btn-primary-custom,
.btn-secondary-custom,
.btn-whatsapp{

    text-decoration:none;

    padding:16px 22px;

    border-radius:14px;

    font-weight:600;

    transition:.3s;

    text-align:center;

}

/* BOOKING */

.btn-primary-custom{

    background:var(--green-dark);
    color:white;

}

.btn-primary-custom:hover{

    background:var(--green-light);
    color:#000;

    transform:translateY(-3px);

}

/* WHATSAPP */

.btn-whatsapp{

    background:#25D366;
    color:white;

}

.btn-whatsapp:hover{

    transform:translateY(-3px);

}

/* EMAIL */

.btn-secondary-custom{

    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:white;

}

.btn-secondary-custom:hover{

    background:
    rgba(255,255,255,.08);

    color:white;

    transform:translateY(-3px);

}

/* ===========================
   FOOTER
=========================== */

footer{

    padding:25px 0;

    text-align:center;

    border-top:
    1px solid rgba(255,255,255,.08);

    color:
    rgba(255,255,255,.55);

    background:#030505;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:991px){

    .hero{

        padding-top:140px;
        padding-bottom:80px;

        text-align:center;

    }

    h1{

        font-size:2.4rem;

    }

    h2{

        font-size:1.5rem;

    }

    .action-buttons{

        margin:auto;

    }

}