/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

body {
    background-color: #2A959D;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
}

/* Carrossel */
.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: 20px auto;
}

.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 16/9;
}

/* Setas - Estilo atualizado */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    color: rgba(255, 255, 255, 0.248);
    font-size: 24px;
    font-weight: bold;
    background-color: rgba(0,0,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
    text-decoration: none;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.2);
    transform: scale(1.1);
}

/* Indicadores */
.dots-container {
    text-align: center;
    margin: 15px 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Animação */
.fade {
    animation: fade 1.5s;
}

@keyframes fade {
    from { opacity: 0.4 }
    to { opacity: 1 }
}

/* Botões e demais estilos */
.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px 5px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.btn-primary { background-color: #3498db; color: white; border: 2px solid #3498db; }
.btn-primary:hover { background-color: #2980b9; border-color: #2980b9; }

.btn-whatsapp { background-color: #25D366; color: white; border: 2px solid #25D366; }
.btn-whatsapp:hover { background-color: #128C7E; border-color: #128C7E; }

.btn-email { background-color: #e74c3c; color: white; border: 2px solid #e74c3c; }
.btn-email:hover { background-color: #c0392b; border-color: #c0392b; }

.btn-call { background-color: #2ecc71; color: white; border: 2px solid #2ecc71; }
.btn-call:hover { background-color: #27ae60; border-color: #27ae60; }

/* Rodapé e ícones sociais */
.social-icons {
    margin: 30px 0;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    color: #2c3e50;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #3498db;
}

.footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
}

/* Responsividade */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    .btn {
        margin: 10px 0;
    }
    
    .prev, .next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Estilo para a logo - Tamanho ajustado */
.logo {
    width: 150px;             /* Largura fixa */
    height: auto;             /* Mantém a proporção */
    margin: 0 auto 20px;      /* Centraliza e adiciona margem inferior */
    display: block;           /* Garante comportamento de bloco */
    max-width: 100%;          /* Garante responsividade */
}