/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --white-color: #fff;
    --dark-color: #222;
    --body-bg-color: #fff;
    --text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
    --primary-color: #0d6efd; /* Cor azul primária */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #333;
    background-color: #f0f0f0;
}

/* Header */
.logo{
    width: 200px;
    height: auto;
}

/* Contact Section */
.contact-section {
    background-image: url('/images/bg_contact.jpg'); /* Substitua pelo caminho correto */
    background-size: cover;
    background-position: center top;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
    min-height: 100vh;
}

.contact-info {
    margin-top: 10%;
    flex: 1;
    padding-right: 20px;
}

.contact-info h1 span {
    color: #3f606f;
}

.contact-info h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-info p {
    font-size: 1.4rem;
    color: #cccccc;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
}

.contact-card {
    width: 100%;
    background: #8cabaf;
    padding: 30px;
    border-radius: 25px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.contact-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-card .contact-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-card .btn {
    background-color: white;
    color: #000;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.contact-card .btn:hover {
    background-color: #996600;
    color: #e6e6e6;
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    max-width: 900px;
    margin: 50px auto;
    padding: 0;
}


.contact-form-section .image-container {
    flex: 1;
    background-image: url('/images/form_contact.jpg'); 
    background-size: cover;
    background-position: left;
}


.contact-form-section .form-container {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
}

.contact-form-section p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
    text-align: left;
}

.contact-form-section form {
    display: flex;
    flex-direction: column;
}

.contact-form-section label {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
}

.contact-form-section input, 
.contact-form-section textarea {
    font-size: 1rem;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.contact-form-section textarea {
    resize: none;
}

.contact-form-section .btn-submit {
    font-size: 1.2rem;
    padding: 15px;
    background-color: #8cabaf;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-section .btn-submit:hover {
    background-color: #a2a2a2;
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

/* Responsividade */
@media (min-width: 769px) {
    .contact-cards {
        display: flex;
        justify-content: space-around;
        flex-direction: row;
        width: 100%;
        max-width: 1200px;
        margin: 40px auto;
    }

    .contact-card {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .contact-info{
        margin-top: 30%;
    }
    .contact-cards {
        flex-direction: column;
    }

    .contact-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-form-section {
        flex-direction: column;
    }

    .contact-form-section .image-container {
        height: 200px;
    }
}
