* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
}

@media (max-width: 600px) {
    .contato-container {
        padding-left: 10px;
        padding-right: 10px;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column;
        width: fit-content;
        max-width: calc(100% - 20px);
        margin: 0 auto;
    }

    .contato-formulario, .contato-info {
        text-align: center !important;
        align-items: center !important;
    }
}

@media (max-width: 1114px) {
    .menu-icon {
        display: block;
        padding-left: 25px;
        padding-right: 35px;
        color: #000000;
    }

    .menu-icon:hover {
        background-color: #afcbf8;
        color: white;
        border-radius: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 50%;
        background: #afcbf8;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        gap: 1.5em;
        margin-left: 50px;
    }

    .nav-links.active {
        display: flex;
        width: 95%;
    }

    .eolico {
        text-align: center;
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 20px;
        flex: 1;
        background-color: #afcbf8;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: visible;
        height: 1050px;
    }

    .eolico .grid {
        padding-left: 25px;
        padding-right: 25px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        flex-wrap: wrap;
    }

    .imagemeolico img {
        flex: 1;
        height: 850px;
        object-fit: contain;
        object-position: center;
    }

    .navbar {
        margin: 10px auto 0 auto;
        height: 75px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 45px 2vw;
        background: linear-gradient(90deg, #afcbf8 30%, #dbdbdb 70%);
        position: fixed;
        width: 900px;
        max-width: 90%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transition: background 0.3s ease-in-out;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-left {
        display: flex;
        align-items: center;
    }

    .nav-left .logo img {
        height: 150px;
        aspect-ratio: 16/9;
        object-fit: contain;
    }

    .navbar .nav-links a {
        font-size: 17px;
        padding: 10px 15px;
        color: white;
        text-decoration: none;
        font-weight: bold;
        border-radius: 4px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .navbar .nav-links a:hover {
        background-color: #ffffff;
        color: #333;
        transform: scale(1.05);
    }

    .contato-container {
        flex-direction: column;
        align-items: center;
        font-size: 14px;
        display: flex;
        justify-content: center;
        max-width: 1000px;
        margin: 20px auto;
        background: white;
        padding: 20px 10px;
        border-radius: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        transform-origin: top center;
        z-index: 100;
        border-bottom: 20px solid transparent;
        width: fit-content;
        max-width: calc(100% - 20px);
    }

    .contato-formulario,
    .contato-info {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        text-align: center;
        align-items: center;
    }
}

@media (min-width: 600px) and (max-width: 1114px) {
    .contato-container {
        max-width: 1000px;
    }
}

@media (min-width: 1115px) {
    .contato-container {
        display: flex;
        justify-content: space-between;
        max-width: 1000px;
        margin: 20px auto;
        background: white;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        transform: scale(1.30);
        transform-origin: top center;
        font-size: 15px;
        z-index: 100;
    }

    .menu-icon {
        display: none;
        cursor: pointer;
        font-size: 24px;
        color: white;
        padding: 10px;
    }

    .imagemeolico img {
        flex: 1;
        height: 800px;
        object-fit: cover;
        object-position: center;
    }

    .navbar {
        margin: 10px auto 0 auto;
        height: 75px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 45px 2vw;
        background: linear-gradient(90deg, #afcbf8 30%, #dbdbdb 70%);
        position: fixed;
        width: 900px;
        max-width: 90%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transition: background 0.3s ease-in-out;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-left {
        display: flex;
        align-items: center;
    }

    .nav-left .logo img {
        height: 150px;
        aspect-ratio: 16/9;
        object-fit: contain;
    }

    .nav-links {
        display: flex;
        gap: 1.5em;
        margin-left: 50px;
    }

    .navbar .nav-links a {
        font-size: 17px;
        padding: 10px 1.2em;
        color: white;
        text-decoration: none;
        font-weight: bold;
        border-radius: 4px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .navbar .nav-links a:hover {
        background-color: #ffffff;
        color: #333;
        transform: scale(1.05);
    }
}

body {
    font-family: 'Poppins';
    background-color: #afcbf8;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.header-contato {
    background: linear-gradient(90deg, black 30%, #2c2b2b 70%);
    width: 100%;
}

.logo a {
    display: block;
    width: 100%;
}

.logo img {
    height: 150px;
    cursor: pointer;
}

.header-sobre, .header-contato {
    text-align: center;
    background: #afcbf8;
    color: #ffffff;
    padding: 50px 0;
    font-size: 35px;
}

.contato-formulario, .contato-info {
    width: 48%;
}

.contato-formulario h2, .contato-info h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 35px;
    color: #333;
}

#contato-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#contato-form input, #contato-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contato-form button {
    background: #910d0d;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

#contato-form button:hover {
    background: #c20f0f;
}

.contato-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.info-whatsapp, .info-email {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.imagem {
    width: 40px;
    margin-right: 10px;
}

.contato-info p {
    color: #333;
    font-size: 30px;
    margin: 10px 0;
    text-align: left;
}

.info-whatsapp img {
    width: 40px;
    transition: 0.3s;
}

.info-whatsapp img:hover {
    content: url('imgs/zipzop_colorido.png');
}

.footer-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
    bottom: 0;
    position: fixed;
    z-index: 0;
}

.footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
