/* ==========================================
   PODA PROFESIONAL
   Autor: Samuel Miranda
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#2E7D32;
    --primary-dark:#1B5E20;
    --secondary:#66BB6A;
    --light:#F7FAF7;
    --gray:#6B7280;
    --dark:#1F2937;
    --white:#ffffff;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--dark);
    overflow-x:hidden;

}

/*========================
NAVBAR
=========================*/

.navbar{

    background:rgba(255,255,255,.9);
    backdrop-filter:blur(15px);
    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.navbar-brand{

    font-size:1.5rem;
    font-weight:700;
    color:var(--primary)!important;

}

.nav-link{

    font-weight:500;
    color:#444!important;
    transition:.3s;

}

.nav-link:hover{

    color:var(--primary)!important;

}

/*========================
HERO
=========================*/

.hero{

    min-height:100vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)),
    url("../img/img1.png");

    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;

    position:relative;

}

.hero::after{

    content:"";

    position:absolute;
    inset:0;

    background:linear-gradient(
    90deg,
    rgba(0,0,0,.45),
    rgba(0,0,0,.10));

}

.hero .container{

    position:relative;
    z-index:2;

}

.hero h1{

    font-size:clamp(2.8rem,6vw,5rem);
    font-weight:800;
    color:white;
    line-height:1.1;
    margin-bottom:25px;

}

.hero p{

    color:white;
    font-size:1.2rem;
    max-width:650px;
    opacity:.95;

}

/*========================
BOTONES
=========================*/

.btn-success{

    background:var(--primary);
    border:none;
    border-radius:50px;

    padding:16px 42px;

    font-weight:600;

    transition:.35s;

}

.btn-success:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(46,125,50,.35);

}

.btn-outline-success{

    border-radius:50px;
    padding:16px 42px;

}

/*========================
SECCIONES
=========================*/

section{

    padding:100px 0;

}

section h2{

    font-size:2.3rem;
    font-weight:700;
    margin-bottom:20px;

}

section p{

    color:var(--gray);

}

/*========================
CARDS
=========================*/

.card{

    border:none;

    border-radius:25px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.card-body{

    padding:40px;

}

.card i{

    font-size:55px;

    color:var(--primary);

    margin-bottom:20px;

}

/*========================
LISTA BENEFICIOS
=========================*/

.list-group-item{

    border:none;

    padding:15px 0;

    font-size:18px;

}

/*========================
FOOTER
=========================*/

footer{

    background:#111;

    color:white;

    padding:60px 0;

}

footer p{

    color:#d8d8d8;

}

/*========================
WHATSAPP
=========================*/

.whatsapp{

    position:fixed;

    bottom:30px;

    right:30px;

    width:70px;

    height:70px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 15px 35px rgba(37,211,102,.35);

    transition:.35s;

    z-index:9999;

}

.whatsapp:hover{

    transform:scale(1.12);

    color:white;

}

/*========================
IMAGENES
=========================*/

img{

    max-width:100%;

    display:block;

}

.gallery img{

    border-radius:20px;

    transition:.4s;

}

.gallery img:hover{

    transform:scale(1.05);

}

/*========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.hero{

text-align:center;

padding-top:120px;

}

.hero h1{

font-size:2.8rem;

}

.hero p{

margin:auto;

}

.btn{

width:100%;

margin-bottom:15px;

}

}


/*==========================
BENEFITS
===========================*/

.benefits{

padding:120px 0;

background:#f7faf7;

}

.section-tag{

display:inline-block;

padding:10px 20px;

background:#e7f7ea;

color:#2E7D32;

border-radius:40px;

font-weight:600;

letter-spacing:1px;

margin-bottom:25px;

}

.section-title{

font-size:3rem;

font-weight:800;

margin-bottom:25px;

}

.section-title span{

color:#2E7D32;

}

.section-text{

max-width:750px;

margin:auto;

color:#666;

font-size:18px;

}

.benefit-card{

background:white;

padding:45px 35px;

border-radius:25px;

height:100%;

transition:.4s;

box-shadow:0 15px 40px rgba(0,0,0,.05);

position:relative;

overflow:hidden;

}

.benefit-card::before{

content:"";

position:absolute;

left:0;

top:0;

height:4px;

width:0;

background:#2E7D32;

transition:.4s;

}

.benefit-card:hover::before{

width:100%;

}

.benefit-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.icon-circle{

width:80px;

height:80px;

background:#2E7D32;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:25px;

color:white;

font-size:35px;

transition:.4s;

}

.benefit-card:hover .icon-circle{

transform:rotate(15deg) scale(1.1);

}

.counter{

text-align:center;

padding:30px;

}

.counter h2{

font-size:3rem;

font-weight:800;

color:#2E7D32;

}

.counter span{

color:#666;

}

.calculator{

padding:100px 0;

background:#f5f8f5;

}

.calculator-card{

background:#fff;

padding:60px;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.resultado{

text-align:center;

background:#2E7D32;

padding:40px;

border-radius:20px;

color:white;

}

.resultado h1{

font-size:4rem;

font-weight:800;

margin:0;

}

.form-range{

height:12px;

}

.form-range::-webkit-slider-thumb{

width:25px;

height:25px;

background:#2E7D32;

cursor:pointer;

}

.form-range::-webkit-slider-runnable-track{

height:10px;

background:#d8ead8;

border-radius:30px;

}