/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
}

/* ===== HEADER ===== */
header {
    background: #222;
    color: #fff;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.logo-header {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.logo img {
    height: auto;
    max-height: 120px;
}

header h1 {
    font-size: 26px;
    flex: 1;
}

nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* ===== CARROSSEL ===== */
.carousel-slide {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 350px;
    overflow: hidden;
    margin: 20px auto;
    border-radius: 12px;
}

.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;               /* todas invisíveis */
    transition: opacity 1s ease-in-out;
    pointer-events: none;     /* opcional, evita clique */
}

.carousel-slide img.active {
    opacity: 1;               /* só a imagem ativa fica visível */
}



@keyframes slide {
    0%   { transform: translateX(0); }
    20%  { transform: translateX(0); }
    25%  { transform: translateX(-100%); }
    45%  { transform: translateX(-100%); }
    50%  { transform: translateX(-200%); }
    70%  { transform: translateX(-200%); }
    75%  { transform: translateX(-300%); }
    90%  { transform: translateX(-300%); }
    95%  { transform: translateX(-400%); }
    100% { transform: translateX(-400%); }
}

/* ===== CTA ===== */
.cta {
    text-align: center;
    padding: 25px;
    background: white;
    margin-bottom: 10px;
}

#notifyBtn {
    padding: 10px 20px;
    background: #ff8800;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 6px;
}

#notifyBtn:hover {
    background: #e66f00;
}

/* ===== GRID ===== */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    text-align: center;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

/* ===== FOOTER ===== */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: 30px;
}

/* MOBILE */
@media (max-width: 600px) {
    header {
        text-align: center;
    }
    
    .header-flex {
        flex-direction: column;
    }

    nav a {
        margin: 5px;
    }

    .slides img {
        height: 220px;
    }
}
/* ===== FORMULÁRIO DE CONTATO ===== */
.contato-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}

.contato-form input,
.contato-form textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contato-form button {
    background: #ff8800;
    border: none;
    padding: 12px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
}

.contato-form button:hover {
    background: #e66f00;
}

.card img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    border-radius: 6px;
}

