/* ============================= */
/* Página Contato - Design Ocyan */
/* ============================= */

/* === SEÇÃO HERO === */
.contato-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #f1f8e9 100%);
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
}

.contato-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(33, 150, 243, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 50%;
    transform: rotate(-15deg);
}

.contato-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.08), rgba(33, 150, 243, 0.08));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: #0d47a1;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.6rem;
    color: #1565c0;
    margin-bottom: 30px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.15rem;
    color: #37474f;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === SEÇÃO HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h3 {
    font-size: 2.2rem;
    color: #0d47a1;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* === SEÇÃO PRINCIPAL === */
.contato-principal {
    padding: 80px 20px;
    background: #ffffff;
}

.contato-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

/* === INFORMAÇÕES DE CONTATO === */
.info-cards {
    display: grid;
    gap: 25px;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.info-card.email {
    border-left-color: #2196f3;
}

.info-card.telefone {
    border-left-color: #4caf50;
}

.info-card.whatsapp {
    border-left-color: #25d366;
}

.info-card.localizacao {
    border-left-color: #ff9800;
}

.info-icon .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-card.email .icon-circle {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.info-card.telefone .icon-circle {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.info-card.whatsapp .icon-circle {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.info-card.localizacao .icon-circle {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.info-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.info-content h4 {
    font-size: 1.2rem;
    color: #0d47a1;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    font-size: 1.1rem;
    color: #37474f;
    margin-bottom: 10px;
    font-weight: 500;
}

.info-link {
    color: #1976d2;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #0d47a1;
}

.info-detail {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* === FORMULÁRIO === */
.contato-formulario {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(33, 150, 243, 0.1);
}

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

.form-header h3 {
    font-size: 2.2rem;
    color: #0d47a1;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.form-container {
    position: relative;
}

/* === FORMULÁRIO DE CONTATO CUSTOMIZADO === */

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row:last-of-type {
    grid-template-columns: 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    color: #495057;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7A5BA0;
    box-shadow: 0 0 0 3px rgba(122, 91, 160, 0.1);
    transform: translateY(-2px);
}

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

.btn-submit {
    background: linear-gradient(135deg, #7A5BA0 0%, #9b7bb8 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    box-shadow: 0 8px 24px rgba(122, 91, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(122, 91, 160, 0.4);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* === SEÇÃO CTA === */
.contato-cta {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contato-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h3 {
        font-size: 1.8rem;
    }

    .contato-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .info-icon .icon-circle {
        width: 50px;
        height: 50px;
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
    }

    .contato-formulario {
        padding: 30px 25px;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contato-hero {
        padding: 60px 15px 40px;
    }

    .contato-principal {
        padding: 60px 15px;
    }

    .contato-cta {
        padding: 60px 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .info-cards {
        gap: 20px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .contato-formulario {
        padding: 25px 20px;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }
}