﻿/*Corpo da página*/
* {
    margin: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}


body {
    margin: 0;
}


/* Botão do Header */
.btn-header {
    padding: 3px;
    background-color: #E63946;
    color: white;
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: 0.2s;
}

    .btn-header:hover {
        background-color: #d13f3f;
    }

/* Carrossel */
.carousel {
    width: 100%;
    height: 340px;
    overflow: hidden;
    margin-top: 20px;
}

.slides {
    width: 300%;
    height: 100%;
    display: flex;
    animation: slide 12s infinite;
}

    .slides img {
        width: 100%;
        object-fit: cover;
    }

@keyframes slide {
    0% {
        margin-left: 0;
    }

    30% {
        margin-left: 0;
    }

    35% {
        margin-left: -100%;
    }

    65% {
        margin-left: -100%;
    }

    70% {
        margin-left: -200%;
    }

    100% {
        margin-left: -200%;
    }
}

/* Introdução */
.intro {
    text-align: center;
    margin: 40px 0;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

    .intro h1 {
        font-size: 32px;
        margin-bottom: 10px;
        color: #1E3047;
    }

/* Cards */
.features {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    width: 280px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    text-align: center;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    }

    .card h2 {
        color: #1E3047;
        margin-bottom: 10px;
    }

/* Fundo escurecido */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

/* Caixa branca */
.popup-box {
    background: #ffffff;
    width: 360px;
    padding: 35px;
    border-radius: 18px;
    animation: fade 0.4s ease-in-out;
    box-shadow: 0px 0px 20px black;
}

/* Inputs */
.popup-input {
    width: 95%;
    margin: 10px 0;
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Erro */
.popup-erro {
    margin-top: 6px;
    display: block;
}

/* Botões */
.popup-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.popup-btn {
    width: 45%;
    padding: 12px;
    background: #E63946;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.25s;
    font-weight: 600;
}

    .popup-btn.cancelar {
        background: #1E3047;
    }
/*Logo no topo*/
.logo-area img {
    width: 160px;
    margin-bottom: 15px;
    animation: fade 0.6s ease-in-out;
}

/* SOBRE NÓS */
.sobre-nos {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
}

    .sobre-nos h2 {
        font-size: 32px;
        color: #1E3047;
        margin-bottom: 10px;
    }

    .sobre-nos p {
        max-width: 700px;
        margin: auto;
        font-size: 18px;
        line-height: 28px;
        color: #333;
    }

/* FALE CONOSCO */
.fale-conosco {
    padding: 60px 20px;
    margin-top: 40px;
}

.contato-container {
    display: flex;
    max-width: 1000px;
    margin: auto;
    gap: 30px;
    flex-wrap: wrap;
}

.contato-form,
.contato-mapa {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Inputs */
.contato-input {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

/* Botão */
.contato-btn {
    width: 100%;
    padding: 12px;
    background: #E63946;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.25s;
}

    .contato-btn:hover {
        background: #d13f3f;
    }

/* Mapa */
.contato-mapa iframe {
    border-radius: 12px;
    height: 100%;
    min-height: 280px;
}
