/* ========================================
   CONTACT GLASSMORPHISM - Página de Contato
   ======================================== */

/* Contact Glass Section */
.contact-glass {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #212529 0%, #343A40 50%, #212529 100%);
    position: relative;
    overflow: hidden;
}

.contact-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(214, 32, 39, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(214, 32, 39, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.contact-glass__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-glass__header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-glass__header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-glass__header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-glass__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .contact-glass__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-glass {
        padding: 4rem 1.5rem;
    }
    
    .contact-glass__header h2 {
        font-size: 2rem;
    }
    
    .contact-glass__grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Cards */
.contact-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D62027, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(214, 32, 39, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(214, 32, 39, 0.2);
}

.contact-card:hover::before {
    transform: translateX(100%);
}

.contact-card.highlight {
    min-height: auto;
    padding: 2rem;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-card.highlight {
        grid-column: span 2;
    }
}

@media (min-width: 1025px) {
    .contact-card.highlight {
        grid-column: span 3;
    }
}

.contact-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.4s ease;
}

.contact-card__icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-card__icon.phone,
.contact-card__icon.phone-alt {
    background: linear-gradient(135deg, #D62027, darken(#D62027, 10%));
}

.contact-card__icon.email {
    background: linear-gradient(135deg, #F59E0B, #F97316);
}

.contact-card__icon.location {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.contact-card__icon.clock {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.contact-card:hover .contact-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card__icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card__desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.contact-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #D62027;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    word-break: break-all;
}

.contact-card__link:hover {
    color: darken(#D62027, 5%);
    gap: 0.75rem;
}

.contact-card__link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.contact-card__link:hover i {
    transform: translateX(3px);
}

.contact-card__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(214, 32, 39, 0.2);
    border-radius: 20px;
    color: #D62027;
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-card__status i {
    font-size: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.contact-card__address {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.75rem 0;
}

.contact-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: #fff;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.contact-card__badge.online {
    background: rgba(214, 32, 39, 0.2);
    color: #D62027;
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
    text-align: center;
    width: 100%;
}

.schedule-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 0;
    font-size: 0.9rem;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.schedule-list li strong {
    color: #D62027;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.contact-form-section__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .contact-form-section {
        padding: 4rem 1.5rem;
    }
    
    .contact-form-section__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Form Glass */
.contact-form-glass {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-glass-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-glass-header i {
    font-size: 3rem;
    color: #D62027;
    margin-bottom: 1rem;
}

.form-glass-header h2 {
    font-size: 2rem;
    color: #212529;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.form-glass-header p {
    color: #495057;
    font-size: 1rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    color: #212529;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #F8F9FA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D62027;
    background: white;
    box-shadow: 0 0 0 4px rgba(214, 32, 39, 0.1);
}

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

.form-actions {
    margin-top: 1rem;
    text-align: center;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #D62027, darken(#D62027, 10%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 196, 140, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(214, 32, 39, 0.5);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(3px);
}

.form-privacy {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-privacy a {
    color: #D62027;
    text-decoration: none;
    font-weight: 600;
}

.form-privacy a:hover {
    text-decoration: underline;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box-glass {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-box-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-box-glass.accent {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-align: center;
}

.info-box-glass > i {
    font-size: 2.5rem;
    color: #D62027;
    margin-bottom: 1.5rem;
    display: block;
}

.info-box-glass.accent > i {
    color: white;
}

.info-box-glass h3 {
    font-size: 1.3rem;
    color: #212529;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-box-glass.accent h3 {
    color: white;
}

.info-box-glass p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-box-glass ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box-glass ul li {
    padding: 1rem 0;
    border-bottom: 1px solid #E2E8F0;
}

.info-box-glass ul li:last-child {
    border-bottom: none;
}

.info-box-glass ul li strong {
    color: #212529;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-box-glass ul li p {
    color: #495057;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.btn-whatsapp-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: #128C7E;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 576px) {
    .contact-form-glass {
        padding: 2rem 1.5rem;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}
