
/* ========================================
   CONTACT SECTION
======================================== */

.contact-section{
    padding: 10px 0;
    background: #f8fafc;
} 

/* ========================================
   HEADER
======================================== */
.hero-badge{
    margin-bottom: 15px;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
	text-align: center;
}
/* TITLE */
.hero-title{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 20px;
}

/* TEXT */
.card-text_servicios{
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-text);
    text-align:justify;
}
.contact-header{
    text-align: center;
    max-width: 760px;
    margin: auto auto 70px;
}

.contact-badge{
    display: inline-block;

    padding: 8px 18px;

    border-radius: 30px;

    background: #dbeafe;
    color: #2563eb;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 20px;
}


/* ========================================
   WRAPPER
======================================== */

.contact-wrapper{
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    align-items: stretch;
}

/* ========================================
   CARD
======================================== */

.contact-form-card,
.contact-map-card{
    background: white;

    border-radius: 32px;

    padding: 45px;

    box-shadow: 0 15px 50px rgba(15,23,42,0.06);

    border: 1px solid #e2e8f0;
}

/* ========================================
   FORM
======================================== */

.form-group{
    margin-bottom: 22px;
}

.form-group input,
.form-group textarea{
    width: 100%;

    border: 1px solid #dbe3ee;

    background: #f8fafc;

    border-radius: 18px;

    padding: 18px 22px;

    font-size: 12px;

    color: #0f172a;

    transition: .3s ease;

    outline: none;
}

.form-group textarea{
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color: #2563eb;

    background: white;

    box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

/* ========================================
   CHECKBOX
======================================== */

.checkbox-container{
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 14px;
    color: #64748b;

    margin-bottom: 30px;

    cursor: pointer;
}

.checkbox-container input{
    width: 18px;
    height: 18px;
}

/* ========================================
   CAPTCHA
======================================== */

.captcha-container{
    margin-bottom: 30px;
}

/* ========================================
   BUTTON
======================================== */

.contact-btn{
    width: 100%;

    border: none;

    background: var(--color-primary);;
    color: white;

    padding: 18px;

    border-radius: 18px;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: .4s ease;
}

.contact-btn:hover{
    background: #2563eb;

    transform: translateY(-3px);
}

/* ========================================
   MAP
======================================== */

.contact-map-card{
    overflow: hidden;
    padding: 0;
}

.contact-map-card iframe{
    width: 100%;
    height: 100%;

    min-height: 720px;

    border: 0;

    filter: grayscale(50%);
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:992px){

    .contact-wrapper{
        grid-template-columns: 1fr;
    }

    .contact-map-card iframe{
        min-height: 450px;
    }

}

@media(max-width:768px){

    .contact-section{
        padding: 80px 0;
    }

    .contact-header h2{
        font-size: 38px;
    }

    .contact-header p{
        font-size: 16px;
    }

    .contact-form-card,
    .contact-map-card{
        padding: 30px;
        border-radius: 24px;
    }

    .contact-map-card{
        padding: 0;
    }

}

