/* =========================================
   CONTACTO - AGRODISER
========================================= */


/* =========================================
   HERO CONTACTO
========================================= */

.contacto-hero {

    position: relative;

    min-height: 75vh;

    display: flex;

    align-items: center;

    background-image: url("../img/empresa/banners/banner-contacto.jpg");

    background-size: cover;

    background-position: center;

    overflow: hidden;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 60, 35, .85),
            rgba(0, 60, 35, .55));

}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 700px;

    color: white;

}


.hero-content h1 {

    font-family: "Poppins", sans-serif;

    font-size: clamp(3rem, 6vw, 4.8rem);

    font-weight: 800;

    margin: 20px 0;

}


.hero-content p {

    font-size: 1.15rem;

    line-height: 1.8;

    max-width: 600px;

    margin-bottom: 35px;

}



.btn-contacto-principal {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 30px;

    border-radius: 50px;

    background: white;

    color: var(--primary-color);

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}


.btn-contacto-principal:hover {

    transform: translateY(-4px);

}


/* =========================================
   CONTENEDOR CONTACTO
========================================= */


.contacto-grid {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 60px;

    align-items: start;

}



/* =========================================
   INFORMACION
========================================= */


.contacto-info h2,
.contacto-formulario h2 {

    font-family: "Poppins", sans-serif;

    font-size: 2.2rem;

    font-weight: 700;

    margin-bottom: 20px;

}



.contacto-info>p {

    color: #666;

    margin-bottom: 35px;

    line-height: 1.7;

}



.info-card {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 22px;

    margin-bottom: 20px;

    background: white;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .35s;

}



.info-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);

}



.info-card i {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-size: 25px;

    color: white;

    background: var(--primary-color);

}



.info-card h4 {

    font-size: 1rem;

    margin: 0 0 5px;

    font-weight: 700;

}



.info-card p {

    margin: 0;

    color: #666;

}



/* =========================================
   FORMULARIO
========================================= */


.contacto-formulario {

    padding: 40px;

    background: white;

    border-radius: 25px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);

}



.contacto-formulario .form-floating {

    margin-bottom: 20px;

}



.contacto-formulario .form-control {

    height: 58px;

    border-radius: 14px;

    border: 1px solid #ddd;

    padding-left: 20px;

}



.contacto-formulario textarea.form-control {

    height: 170px;

}



.contacto-formulario .form-control:focus {

    border-color: var(--primary-color);

    box-shadow: 0 0 0 .2rem rgba(0, 120, 60, .15);

}



.contacto-formulario label {

    padding-left: 20px;

}



.btn-enviar {

    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 50px;

    background: var(--primary-color);

    color: white;

    font-size: 1rem;

    font-weight: 600;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    transition: .3s;

}



.btn-enviar:hover {

    transform: translateY(-4px);

    filter: brightness(1.1);

}



/* =========================================
   MAPA
========================================= */


.mapa {

    width: 100%;

    padding: 60px 0;

}



.mapa iframe {

    width: 100%;

    height: 450px;

    border: 0;

    display: block;

}



/* =========================================
   CTA WHATSAPP
========================================= */


.contacto-cta {

    padding: 80px 20px;

    text-align: center;

    background:

        linear-gradient(135deg,
            var(--primary-color),
            #0b8f45);

    color: white;

}



.contacto-cta h2 {

    font-family: "Poppins";

    font-size: 2.5rem;

    font-weight: 800;

}



.contacto-cta p {

    max-width: 650px;

    margin: 20px auto 35px;

    font-size: 1.1rem;

}



.btn-whatsapp {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 35px;

    background: white;

    color: #159447;

    border-radius: 50px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s;

}



.btn-whatsapp:hover {

    transform: translateY(-5px);

}



/* =========================================
   TOAST
========================================= */


.toast {

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);

}