.contact-section {
    position: relative;
    min-height: 600px;
    padding: clamp(60px, 8vw, 120px) 24px;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/fundo.whatsapp.webp');
    background-size: 25%;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

.contact-section2 {
    position: relative;
    padding: clamp(60px, 8vw, 120px) 24px;
    /* background-image: url('../images/fundo_zap.jpg');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}


.contact-section .row {
    align-items: center;
}

.contact-decoration {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    top: 0;
    pointer-events: none;
    overflow: visible;
}

.contact-decoration img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.45));
}

.contact-section h2,
.contact-section h3,
.contact-section2 h1,
.contact-section2 h2 {
    font-size: clamp(1.0rem, 4vw, 1.8rem);
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--contact-text, #fff);
}

.contact-section p,
.contact-section2 p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--contact-text, rgba(255, 255, 255, 0.88));
    margin: 0 0 24px;
    letter-spacing: 0.3px;
}

.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    background: var(--contact-accent, #25d366);
    border: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-whatsapp-btn i {
    font-size: 1.3rem;
}

.contact-whatsapp-btn:hover {
    background: #1eb558;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.contact-whatsapp-btn--alt {
    margin-top: 12px;
    background: var(--site-text, #130e3f);
    color: var(--site-bg, #fff);
}

.contact-whatsapp-btn--alt:hover {
    background: var(--accent);
    color: #fff;
}

@media (min-width: 1920px) {
    .contact-decoration {
        right: 25%;
    }
}

@media (max-width: 720px) {
    .contact-section h2 {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
    }

    .contact-section p {
        font-size: 0.7rem;
        line-height: 1.5;
        max-width: 250px;
    }

    .contact-whatsapp-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
        display: flex;
        width: fit-content;
    }

    .contact-whatsapp-btn--alt {
        margin-top: 8px;
    }

    .contact-whatsapp-btn i {
        font-size: 1.05rem;
    }

    .contact-decoration img {
        height: 75%;
    }
}

.contact-photo {
    max-width: 250px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.contact-photo-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-photo-img {
    max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.45));
}

.contact-form-wrap {
    background: rgba(0, 0, 0, 0.65);
    border-radius: 16px;
    padding: 36px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-form .form-label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.85rem;
}

.contact-form__input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

.contact-form__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form__input:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 255, 0.15) !important;
    color: #fff !important;
}

.contact-form__input option {
    background: #1a1a2e;
    color: #fff;
}

.contact-form__submit {
    background: var(--accent, #4a90ff);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 255, 0.35);
}

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
}

.contact-alert--success {
    background: rgba(40, 199, 111, 0.15);
    color: #28c76f;
    border: 1px solid rgba(40, 199, 111, 0.3);
}

.contact-alert--error {
    background: rgba(254, 94, 100, 0.15);
    color: #fe5e64;
    border: 1px solid rgba(254, 94, 100, 0.3);
}

.contact-alert ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
}

.contact-alert__close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: 0;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.contact-alert__close:hover {
    opacity: 1;
}

.contact-btn-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.contact-btn-group .contact-whatsapp-btn--alt {
    margin-top: 0;
}

.contact-whatsapp-btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    background: var(--contact-accent, #25d366);
    border: none;
    width: 100%;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-whatsapp-btn2 i {
    font-size: 1.3rem;
}

.contact-whatsapp-btn2:hover {
    background: #1eb558;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.contact-whatsapp-btn--notify {
    margin-top: 12px;
    background: #25d366;
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 18px;
}

.contact-whatsapp-btn--notify:hover {
    background: #1eb558;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

@media (max-width: 768px) {
    .contact-form-wrap {
        padding: 20px;
    }

    .contact-form-title {
        font-size: 1.1rem;
    }

    .contact-section .row {
        gap: 24px 0;
    }
}

@media (max-width: 720px) {
    .contact-decoration img {
        height: 60%;
    }
}