/* ========================================= */
/* --- AJUSTE GLOBAL DE LARGURA --- */
/* ========================================= */
.container { max-width: 1600px !important; }
html, body { overflow-x: hidden; }

/* ========================================= */
/* --- CAPA (HERO) --- */
/* ========================================= */
.contact-hero {
    position: relative;
    height: 45vh;
    min-height: 380px; 
    background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=2070') center/cover no-repeat; /* Imagem sugerida para contato */
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.7) 100%);
    z-index: 1;
}

.hero-text-box {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    max-width: 800px;
}

.hero-tag {
    color: var(--paultrab-orange);
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    color: var(--white);
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-title .highlight { color: var(--paultrab-orange); }

.hero-description {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
}

/* ========================================= */
/* --- CONTATO E FORMULÁRIO (Idêntico à Home) --- */
/* ========================================= */
.contact-boutique { padding: 100px 0; background-color: var(--bg-light); position: relative; overflow: hidden; font-family: var(--font-body); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; position: relative; z-index: 10; }

.contact-info { padding-right: 20px; }
.contact-accent { color: var(--paultrab-orange); font-family: var(--font-title); font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 4px; display: block; margin-bottom: 20px; }
.contact-title { font-family: var(--font-title); font-size: 2.8rem; color: var(--navy-dark); font-weight: 900; line-height: 1.1; margin-bottom: 25px; }
.contact-desc { color: var(--text-dark); font-size: 1.15rem; line-height: 1.7; margin-bottom: 40px; }

.info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.info-item { display: flex; gap: 20px; align-items: center; }

.icon-circle { 
    width: 60px; height: 60px; border-radius: 14px; background-color: var(--white); color: var(--navy-dark); 
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; 
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); flex-shrink: 0; box-shadow: 0 10px 20px rgba(0,0,0,0.03); border: 1px solid var(--border-light);
}
.info-item:hover .icon-circle { background-color: var(--navy-dark); color: var(--paultrab-orange); transform: scale(1.1) rotate(-5deg); border-color: transparent; }
.info-content span { display: block; font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted-blog); font-weight: 700; margin-bottom: 4px; }
.info-content strong { color: var(--navy-dark); font-size: 1.1rem; }

.info-content strong a.link-fix { color: var(--navy-dark) !important; text-decoration: none !important; transition: color 0.3s ease !important; }
.info-content strong a.link-fix:hover { color: var(--paultrab-orange) !important; }

/* Card WhatsApp */
.whatsapp-boutique-card {
    display: flex; align-items: center; gap: 20px; background: var(--white); padding: 20px 25px;
    border-radius: 16px; text-decoration: none; border: 1px solid var(--border-light);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.08); transition: 0.4s; position: relative; overflow: hidden;
}
.whatsapp-boutique-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: #25D366; }
.whatsapp-boutique-card:hover { transform: translateY(-5px); border-color: #25D366; box-shadow: 0 20px 45px rgba(37, 211, 102, 0.15); }
.wa-icon-circle { width: 50px; height: 50px; border-radius: 12px; background: rgba(37, 211, 102, 0.1); color: #25D366; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0;}
.wa-text h4 { font-family: var(--font-title); font-size: 1.2rem; color: var(--navy-dark); margin-bottom: 4px; font-weight: 800;}
.wa-text span { font-size: 0.9rem; color: var(--text-dark); }
.wa-arrow { margin-left: auto; color: #25D366; font-size: 1.2rem; opacity: 0; transform: translateX(-10px); transition: 0.3s; }
.whatsapp-boutique-card:hover .wa-arrow { opacity: 1; transform: translateX(0); }

/* Formulário Moderno */
.form-container { background: var(--white); padding: 50px; border-radius: 16px; border: 1px solid var(--border-light); box-shadow: 0 25px 60px rgba(10, 25, 47, 0.04); }
.boutique-form { display: flex; flex-direction: column; }
.input-wrapper { position: relative; margin-bottom: 35px; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.input-wrapper input, .input-wrapper textarea { 
    width: 100%; padding: 12px 0; border: none; border-bottom: 2px solid var(--border-light); 
    font-family: var(--font-body); font-size: 1rem; color: var(--navy-dark); outline: none; background: transparent; transition: 0.3s; resize: none; display: block; margin: 0;
}
.input-wrapper label { position: absolute; left: 0; top: 12px; color: var(--text-muted-blog); transition: 0.3s ease; pointer-events: none; font-weight: 500; }

.input-wrapper input:focus, .input-wrapper input:not(:placeholder-shown),
.input-wrapper textarea:focus, .input-wrapper textarea:not(:placeholder-shown) { border-bottom-color: transparent; }

.input-wrapper input:focus ~ label, .input-wrapper input:valid ~ label, 
.input-wrapper textarea:focus ~ label, .input-wrapper textarea:valid ~ label { 
    top: -18px; font-size: 0.75rem; font-weight: 800; color: var(--paultrab-orange); text-transform: uppercase; letter-spacing: 1px;
}

.focus-line { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--paultrab-orange); transition: 0.4s; }
.input-wrapper input:focus ~ .focus-line, .input-wrapper textarea:focus ~ .focus-line { width: 100%; }

.form-footer { margin-top: 20px; display: flex; flex-direction: column; gap: 25px; }
.privacy-check { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.privacy-check input { margin: 0; accent-color: var(--paultrab-orange); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer;}
.privacy-text { color: var(--text-dark); font-size: 0.9rem; line-height: 1.2; }
.privacy-text a { color: var(--paultrab-orange); text-decoration: none; font-weight: 700; white-space: nowrap; }

.contact-btn-glow { 
    background-color: var(--navy-dark); color: var(--white); padding: 20px 45px; border: none; border-radius: 6px; 
    font-family: var(--font-title); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; 
    transition: all 0.3s; width: 100%; text-align: center;
}
.contact-btn-glow:hover { background-color: var(--paultrab-orange); color: var(--navy-dark); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(246, 159, 0, 0.2); }

/* ========================================= */
/* --- RESPONSIVIDADE (MOBILE E TABLET) --- */
/* ========================================= */
@media (max-width: 1024px) {
    .contact-grid { gap: 50px; grid-template-columns: 1fr; }
    .contact-info { padding-right: 0; text-align: center; }
    .info-list { align-items: center; }
    .info-item { justify-content: center; text-align: left; }
    .input-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
    .contact-hero { padding: 100px 0 40px; height: auto; min-height: 280px; }
    .hero-title { font-size: 2.2rem; margin-bottom: 15px; } 
    
    .contact-boutique { padding: 60px 0; }
    .contact-info { text-align: left !important; }
    .contact-desc { font-size: 1rem; line-height: 1.6; margin-bottom: 25px; text-align: left !important; }
    
    .form-container { padding: 30px 20px; border-radius: 12px; margin-top: 0 !important; }
    .contact-grid { gap: 20px !important; }
    
    .info-list { align-items: flex-start !important; gap: 10px; margin-bottom: 20px; }
    .info-item { flex-direction: row; justify-content: flex-start !important; text-align: left !important; gap: 15px; margin-bottom: 0; width: 100%; }
    .icon-circle { margin-bottom: 0; width: 45px; height: 45px; font-size: 1.1rem; flex-shrink: 0; }
    
    .whatsapp-boutique-card { flex-direction: row; align-items: center; text-align: left; padding: 15px 12px; gap: 10px;}
    .wa-icon-circle { width: 40px; height: 40px; font-size: 1.4rem; flex-shrink: 0; }
    .wa-text { flex: 1; min-width: 0; overflow: hidden; }
    .wa-text h4 { font-size: 1.05rem; white-space: nowrap; margin-bottom: 2px; }
    .wa-text span { font-size: 0.8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
    .wa-arrow { transform: translateX(0); margin-left: auto; margin-top: 0; font-size: 1rem; flex-shrink: 0;}
    .whatsapp-boutique-card:hover .wa-arrow { transform: translateX(5px); }
}