/*
author: Boostraptheme
author URL: https://boostraptheme.com
License: Creative Commons Attribution 4.0 Unported
License URL: https://creativecommons.org/licenses/by/4.0/
*/

/* Title */
.title-loop {
    background: rgba(128, 128, 128, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    padding: 1rem;
    width: 40%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.65);
}

/*====================================================
                   CONTACT-P1
======================================================*/
#contact-p1{
	padding: 100px 0 50px 0;
}

#contact-p1 .contact-p1-cont p{
	padding-right: 20px;
	font-size: 15px;
}

#contact-p1 .contact-p1-cont2 address,
#contact-p1 .contact-p1-cont2 address a{
	color:#666;
}

@media (min-width: 1600px) {
    #contact-p1 .contact-p1-cont p{
        padding-right: 20px;
        font-size: 16px;
    }
}

/*====================================================
                   CONTACT-P2
======================================================*/


.contact-modern {
    padding: 4rem 0;
    display: flex;
    justify-content: center;
}

.modern-form {
    padding: 3rem 1rem;
    border-radius: 2rem;
    color: white;
    width: 100%;
    max-width: 900px;
    background: linear-gradient(135deg, #000035, #000042, #000068);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
    position: relative;
    overflow: hidden;
}

    .modern-form::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at top left, rgba(0,198,255,.18), transparent 40%), radial-gradient(circle at bottom right, rgba(33,150,243,.15), transparent 45%);
        filter: blur(120px);
        pointer-events: none;
    }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.field {
    display: flex;
    flex-direction: column;
}

    .field.full {
        grid-column: span 2;
    }

    .field label {
        font-size: 0.7rem;
        letter-spacing: .12em;
        font-weight: 600;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 6px;
    }

    .field input,
    .field textarea {
        background: #f6f8fb;
        border: 1px solid rgba(0,0,0,.08);
        border-radius: 14px;
        padding: 0.9rem 1.1rem;
        font-size: 0.95rem;
        transition: all .25s ease;
        font-family: inherit;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 6px 20px rgba(0,0,0,.15);
    }

        .field input:hover,
        .field textarea:hover {
            transform: translateY(-1px);
        }

    .field textarea {
        min-height: 180px;
        resize: none;
    }

        .field input:focus,
        .field textarea:focus {
            outline: none;
            background: #fff;
            border-color: #2196f3;
            box-shadow: 0 0 0 4px rgba(33,150,243,.18), 0 12px 35px rgba(33,150,243,.35);
        }

.send-btn {
    margin-top: 2.5rem;
    padding: 0.9rem 2.8rem;
    background: linear-gradient(135deg,#2196f3,#00c6ff);
    color: white;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .08em;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}

    .send-btn::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
        transform: translateX(-100%);
        transition: transform .6s ease;
    }

    .send-btn:hover::after {
        transform: translateX(100%);
    }

    .send-btn:active {
        transform: scale(.97);
    }

    .send-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(33,150,243,.35);
    }

/* Ocultar badge flotante de reCAPTCHA */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
}

/* aviso de recaptcha */
.recaptcha-notice {
    margin-top: 18px;
    font-size: 0.75rem;
    color: #c5c9ff;
    line-height: 1.6;
    opacity: 0.75;
    text-align: center;
    max-width: 420px;
}

    .recaptcha-notice a {
        color: #00c6ff;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .recaptcha-notice a:hover {
            color: #a400c9;
            text-shadow: 0 0 8px #a400c9;
        }

.fa-shield-heart {
    color: #00d61f;
}

/* Responsive */

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: span 1;
    }
}