/* ============================================ */
/* SEÇÃO DE CONTATO - CHAVEIRO GOIÂNIA 24H */
/* Design Futurista com Prefixo .contato- */
/* ============================================ */

/* Seção Principal */
.contato-section {
    position: relative;
    padding: 30px 0;
    background: linear-gradient(135deg, #010F1C 0%, #012A55 50%, #010F1C 100%);
    overflow: hidden;
}

/* Efeito de Luz Passando (Scan Line) */
.contato-scan-line {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FC791A, #15B239, transparent);
    box-shadow: 0 0 20px #FC791A, 0 0 40px #15B239;
    animation: contato-scan 8s linear infinite;
    z-index: 1;
}

@keyframes contato-scan {
    0% {
        top: -100%;
    }
    100% {
        top: 200%;
    }
}

/* Partículas de Fundo */
.contato-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Grade Tecnológica */
.contato-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(252, 121, 26, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(252, 121, 26, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Header da Seção */
.contato-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.contato-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: rgba(252, 121, 26, 0.1);
    border: 1px solid rgba(252, 121, 26, 0.3);
    border-radius: 50px;
    color: #FC791A;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.contato-badge i {
    font-size: 18px;
    animation: contato-pulse 2s ease-in-out infinite;
}

@keyframes contato-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.contato-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(252, 121, 26, 0.5);
}

.contato-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards de Contato */
.contato-cards-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contato-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.contato-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(252, 121, 26, 0.3), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contato-card:hover::before {
    opacity: 1;
}

.contato-card:hover {
    transform: translateY(-5px);
    border-color: rgba(252, 121, 26, 0.5);
    box-shadow: 0 15px 40px rgba(252, 121, 26, 0.2);
}

.contato-card-icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 121, 26, 0.1);
    border: 2px solid rgba(252, 121, 26, 0.3);
    border-radius: 15px;
    flex-shrink: 0;
}

.contato-card-icon i {
    font-size: 32px;
    color: #FC791A;
    z-index: 1;
}

.contato-card-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #FC791A;
    border-radius: 15px;
    animation: contato-card-pulse 2s ease-out infinite;
}

@keyframes contato-card-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.contato-card-content {
    flex: 1;
}

.contato-card-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.contato-card-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.contato-card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #FC791A;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contato-card-link:hover {
    color: #fff;
    gap: 15px;
}

.contato-card-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.contato-card-link:hover i {
    transform: translateX(5px);
}

.contato-card-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FC791A, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contato-card:hover .contato-card-glow {
    opacity: 1;
}

/* Formulário de Contato */
.contato-form-wrapper {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contato-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.contato-form-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FC791A, #15B239);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(252, 121, 26, 0.3);
}

.contato-form-icon i {
    font-size: 24px;
    color: #fff;
}

.contato-form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.contato-form-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Grupos do Formulário */
.contato-form-group {
    position: relative;
    margin-bottom: 15px;
}

.contato-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contato-form-group label i {
    color: #FC791A;
}

.contato-form-control {
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contato-form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #FC791A;
    box-shadow: 0 0 20px rgba(252, 121, 26, 0.2);
}

.contato-form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contato-form-control option {
    background: #012A55;
    color: #fff;
}

textarea.contato-form-control {
    resize: vertical;
    min-height: 100px;
}

.contato-form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FC791A, #15B239);
    transition: width 0.4s ease;
}

.contato-form-control:focus + .contato-form-border {
    width: 100%;
}

/* Botão de Envio */
.contato-submit-btn {
    position: relative;
    width: 100%;
    padding: 15px 35px;
    background: linear-gradient(135deg, #FC791A, #15B239);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contato-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(252, 121, 26, 0.4);
}

.contato-btn-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 1;
}

.contato-btn-content i {
    font-size: 20px;
}

.contato-btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contato-submit-btn:hover .contato-btn-glow {
    width: 300%;
    height: 300%;
}

/* Destaque de Tecnologia */
.contato-tech-highlight {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    padding: 40px;
    background: rgba(252, 121, 26, 0.05);
    border: 2px solid rgba(252, 121, 26, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contato-tech-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FC791A, #15B239);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(252, 121, 26, 0.3);
}

.contato-tech-icon i {
    font-size: 60px;
    color: #fff;
    z-index: 1;
}

.contato-tech-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #FC791A;
    border-radius: 20px;
    animation: contato-tech-pulse 2.5s ease-out infinite;
}

@keyframes contato-tech-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.contato-tech-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.contato-tech-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.contato-tech-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #FC791A, #15B239);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contato-tech-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(252, 121, 26, 0.4);
    color: #fff;
}

.contato-tech-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contato-tech-btn:hover i {
    transform: translateX(5px);
}

/* ============================================ */
/* RESPONSIVIDADE MOBILE */
/* ============================================ */

@media (max-width: 991px) {
    .contato-section {
        padding: 40px 0;
    }

    .contato-title {
        font-size: 36px;
    }

    .contato-subtitle {
        font-size: 16px;
    }

    .contato-cards-wrapper {
        margin-bottom: 40px;
    }

    .contato-card {
        padding: 25px;
    }

    .contato-card-icon {
        width: 60px;
        height: 60px;
    }

    .contato-card-icon i {
        font-size: 28px;
    }

    .contato-form-wrapper {
        padding: 30px 20px;
    }

    .contato-tech-highlight {
        margin-top: 50px;
        padding: 30px 20px;
        text-align: center;
    }

    .contato-tech-icon {
        width: 100px;
        height: 100px;
    }

    .contato-tech-icon i {
        font-size: 50px;
    }

    .contato-tech-title {
        font-size: 26px;
        margin-top: 20px;
    }

    .contato-tech-btn {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .contato-section {
        padding: 30px 0;
    }

    .contato-title {
        font-size: 28px;
    }

    .contato-subtitle {
        font-size: 15px;
    }

    .contato-badge {
        font-size: 12px;
        padding: 8px 20px;
    }

    .contato-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .contato-card-content h4 {
        font-size: 18px;
    }

    .contato-card-link {
        justify-content: center;
        font-size: 16px;
    }

    .contato-form-wrapper {
        padding: 25px 15px;
    }

    .contato-form-header h3 {
        font-size: 24px;
    }

    .contato-submit-btn {
        font-size: 16px;
        padding: 16px 30px;
    }

    .contato-tech-title {
        font-size: 22px;
    }

    .contato-tech-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contato-title {
        font-size: 24px;
    }

    .contato-card-icon {
        width: 50px;
        height: 50px;
    }

    .contato-card-icon i {
        font-size: 24px;
    }

    .contato-tech-icon {
        width: 80px;
        height: 80px;
    }

    .contato-tech-icon i {
        font-size: 40px;
    }
}
/* Mensagem de Privacidade */
.contato-privacy-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.contato-privacy-message i {
    color: #15B239;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contato-privacy-message p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.contato-privacy-message a {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
}

.contato-privacy-message a:hover {
    color: #fff !important;
    text-decoration: none !important;
    opacity: 1 !important;
}

/* Remove margin do último card */
.contato-card:last-child {
    margin-bottom: 0;
}