/* =========================
   inGradina Social Club v3
   ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#222;
    background:#fff;
    line-height:1.6;
}

/* =========================
   Layout
   ========================= */

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* =========================
   Header
   ========================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    z-index:9999;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:110px;
}

.logo{
    height:120px;
    width:auto;
    display:block;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-size:20px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#8BC53F;
}

.phone-btn{
    background:#8BC53F;
    color:white;
    text-decoration:none;
    padding:14px 24px;
    border-radius:8px;
    font-weight:700;
}

.phone-btn:hover{
    background:#76ad2f;
}

/* =========================
   Hero
   ========================= */

.hero{
    margin-top:110px;
    min-height:85vh;
    background:url('../webp/hero-1.webp') center center;
    background-size:cover;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:1000px;
    padding:60px 40px;
}

.hero h1{
    color:white;
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:30px;
    text-shadow:0 2px 10px rgba(0,0,0,.3);
}

.hero h1 span{
    color:#8BC53F;
}

.hero-subtitle{
    color:white;
    font-size:24px;
    margin-bottom:40px;
    text-shadow:0 2px 8px rgba(0,0,0,.3);
}

/* =========================
   Buttons
   ========================= */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-green{
    background:#8BC53F;
    color:white;
    text-decoration:none;
    padding:18px 35px;
    border-radius:10px;
    font-size:20px;
    font-weight:700;
    transition:.3s;
}

.btn-green:hover{
    transform:translateY(-2px);
}

.btn-blue{
    background:#3B8FD3;
    color:white;
    text-decoration:none;
    padding:18px 35px;
    border-radius:10px;
    font-size:20px;
    font-weight:700;
    transition:.3s;
}

.btn-blue:hover{
    transform:translateY(-2px);
}

/* =========================
   Benefits
   ========================= */

.benefits{
    padding:80px 0;
    background:#fff;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.benefit{
    text-align:center;
    padding:30px;
}

.benefit-icon{
    font-size:55px;
    margin-bottom:20px;
}

.benefit h3{
    margin-bottom:15px;
    color:#222;
    font-size:24px;
}

.benefit p{
    color:#666;
    font-size:17px;
}

/* =========================
   Sections
   ========================= */

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    font-size:48px;
    margin-bottom:25px;
}

.section-subtitle{
    text-align:center;
    max-width:900px;
    margin:auto;
    color:#666;
    font-size:20px;
}

/* =========================
   Gallery
   ========================= */

.gallery{
    padding:100px 0;
    background:#f8f8f8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:12px;
    transition:.3s;
}

.gallery-grid img:hover{
    transform:scale(1.02);
}

/* =========================
   Contact
   ========================= */

.contact{
    padding:100px 0;
    text-align:center;
}

.contact p{
    font-size:22px;
    margin-bottom:15px;
}

/* =========================
   Footer
   ========================= */

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:30px;
}

/* =========================
   Mobile
   ========================= */

@media(max-width:1024px){

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:52px;
    }

}

@media(max-width:768px){

    .nav{
        flex-direction:column;
        padding:20px 0;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
        margin-top:15px;
    }

    .logo{
        height:100px;
    }

    .hero{
        margin-top:180px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-subtitle{
        font-size:20px;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-green,
    .btn-blue{
        width:100%;
    }
}