/*==================================================
GREENCMS WEB
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
:root {
    --primary: #2E7D32;
    --secondary: #43A047;
    --dark: #1F2937;
    --light: #F8F9FA;
    --gray: #6c757d;
    --radius: 14px;
    --shadow: 0 15px 40px rgba(0, 0, 0, .10);
    --transition: .35s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #444;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

section {
    padding: 90px 0;
}


/*==========================================
TITULOS
==========================================*/

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
}

.section-subtitle {
    max-width: 700px;
    margin: auto;
    color: #777;
    margin-bottom: 60px;
}


/*==========================================
BOTONES
==========================================*/

.btn {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    border: 0;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}


/*==========================================
CARDS
==========================================*/

.card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    object-fit: cover;
}


/*==========================================
ICONOS
==========================================*/

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    background: rgba(46, 125, 50, .12);
    color: var(--primary);
    font-size: 30px;
}


/*==========================================
NAVBAR
==========================================*/

.navbar {
    transition: .4s;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .10);
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    margin-left: 18px;
}

.nav-link:hover {
    color: var(--primary);
}


/*==========================================
HERO
==========================================*/

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
}

.hero p {
    color: #fff;
    font-size: 20px;
    margin: 25px 0;
}


/*==========================================
SERVICIOS
==========================================*/

.servicio-card {
    text-align: center;
    padding: 40px 25px;
}

.servicio-card img {
    height: 200px;
    width: 100%;
}

.servicio-card i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}


/*==========================================
BENEFICIOS
==========================================*/

.beneficio {
    text-align: center;
    padding: 30px;
}

.beneficio i {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 15px;
}


/*==========================================
PROCESO
==========================================*/

.proceso {
    text-align: center;
    position: relative;
}

.proceso .numero {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}


/*==========================================
TESTIMONIOS
==========================================*/

.testimonio {
    text-align: center;
    padding: 35px;
}

.testimonio img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.estrellas {
    color: #ffc107;
}


/*==========================================
GALERIA
==========================================*/

.galeria img {
    border-radius: 10px;
    transition: .4s;
}

.galeria img:hover {
    transform: scale(1.05);
}


/*==========================================
CONTACTO
==========================================*/

.contacto {
    background: #f8f9fa;
}

.contacto .info {
    padding: 20px;
}

.contacto .info i {
    color: var(--primary);
    margin-right: 10px;
}


/*==========================================
FOOTER
==========================================*/

footer {
    background: #1F2937;
    color: #fff;
    padding: 60px 0 20px;
}

footer a {
    color: #ddd;
}

footer a:hover {
    color: #fff;
}

.social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, .08);
    margin-right: 8px;
}


/*==========================================
BOTON WHATSAPP
==========================================*/

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    z-index: 9999;
}


/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:992px) {
    .hero h1 {
        font-size: 42px;
    }
    .section-title {
        font-size: 30px;
    }
}

@media(max-width:768px) {
    .hero {
        text-align: center;
    }
    .hero h1 {
        font-size: 34px;
    }
    .hero p {
        font-size: 18px;
    }
    section {
        padding: 70px 0;
    }
}