@import url('_global.css');

.contact-hero {
    position: relative;
    height: 100vh; /* ou a altura desejada */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/img-pentest.png') center/cover no-repeat;
    filter: brightness(0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 2rem;
}

.hero-title {
    font-size: var(--hero-title-font-size);
    font-weight: var(--hero-title-font-weight);
}
.contact-options {
    background-color: #212121;
    position: relative;
    z-index: 2;
    top: -3rem !important;
    padding: 10vh 0;
    border-radius: 3rem 3rem 0 0;
    padding: 10vh 0;
    display: flex;
    justify-content: center;
}

.options-grid {
    width: 80%;
    display: flex;
    gap: 5%;
}

.div-card{
    padding: 2%;
}

.option-card {
    background: linear-gradient(#1E594B, #081410);
    color: white;
    border-radius: 20px;
    padding: clamp(1rem, 2vw, 2rem);
    text-align: center;
    align-items: center;
}

.card-image {
    width: 60px;
    height: auto;
    margin-bottom: 20%;
    align-self: center;
}

.option-title {
    font-size: var(--font-lg);
    font-weight: 700;
    margin-bottom: 15%;
}

.option-desc {
    font-size: var(--font-md);
    margin-top: 5%;
}

.contact-location {
    background-color: var(--bg-light);
    padding-block: clamp(1rem, 2vh, 2rem) 0;
}

.location-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3vh;
}

.map-wrapper{
    display: flex;
    justify-content: center;
    width: 80% !important;
}

.location-map {
    width: 80%;
    height: 500px;
    border: none;
    border-radius: 5px;
}

.location-address {
    font-size: var(--font-md);
    text-align: center;
    font-weight: 600;
    color: #ffffff;
}

.location-icon {
    width: 55px;
    height: auto;
}

.contact-form {
    background-color: var(--color-background);
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    justify-content: center;
}

.card-a{
    text-decoration: none;
    width: 100%;
}

.form-container {
    width: 100%;
    max-width: 800px;
    border: 2px solid #578E73;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3rem);
}

form {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vh, 2rem);
}

label {
    font-weight: 600;
    font-size: var(--font-md);
    color: var(--color-primary-text);
}

input,
textarea {
    width: 100%;
    font-size: var(--font-sm);
    padding: clamp(0.75rem, 1.5vh, 1rem);
    border: none;
    border-bottom: 1px solid var(--color-primary-text);
    background-color: #eef5f3;
    border-radius: 5px;
    color: var(--color-accent);
}

input:focus,
textarea:focus {
    outline: none;
    border-bottom: 2px solid var(--color-primary-text);
    background-color: #e2efea;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-input {
    width: 10px;
    height: 10px;
}

@media (max-width: 1400px) {
    .option-title{
        font-size: var(--font-md);
    }
}


@media (max-width: 600px) {
    .hero-title {
        font-weight: var(--hero-title-font-weight);
    }

    .location-address {
        font-size: var(--font-sm);
    }

    .location-icon {
        width: 45px;
    }
}
