/* Minimalist Styles */

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

body {
    font-family: 'Inter', sans-serif; /* Using a modern, clean font */
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* Light, neutral background */
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #ffffff; /* Clean white header */
    color: #333;
    padding: 2em 0;
    text-align: center;
    border-bottom: 1px solid #eee; /* Subtle border */
}

header h1 {
    font-size: 2.2em;
    margin-bottom: 0.2em;
    font-weight: 600;
}

header p {
    font-size: 1.1em;
    font-weight: 300;
    color: #666;
}

main {
    padding: 30px 20px;
    max-width: 1000px;
    margin: 30px auto;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Lighter shadow */
    border-radius: 8px;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #333; /* Darker, more neutral heading color */
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
    font-weight: 600;
}

#promocao {
    text-align: center;
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f0f0f0; /* Neutral background for promo */
    color: #333;
    border-radius: 8px;
}

#promocao h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 10px;
}

#promocao p {
    font-size: 1em;
    color: #555;
}

#planos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.plano {
    border: 1px solid #eee; /* Subtle border */
    padding: 25px;
    border-radius: 8px;
    background: #fff;
    transition: all 0.2s ease-in-out; /* Simpler transition */
}

.plano:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.plano h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee; /* Lighter border */
    color: #333;
}

.plano ul {
    list-style: none;
    margin: 15px 0;
}

.plano ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.plano ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745; /* Keep green for checkmark */
    font-weight: normal; /* Less bold */
}

.plano p {
    margin-top: 15px;
    font-style: normal; /* Remove italic */
    color: #777;
    font-size: 0.9em;
}

#contato {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#contato h2 {
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8em;
}

#contactForm label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
}

#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm select,
#contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 1px solid #ddd; /* Lighter border */
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

#contactForm input[type="text"]:focus,
#contactForm input[type="email"]:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #667eea; /* Subtle accent on focus */
}

#contactForm textarea {
    resize: vertical;
}

#contactForm button {
    background-color: #667eea; /* Primary accent color for button */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

#contactForm button:hover {
    background-color: #5a6cdb; /* Slightly darker on hover */
    transform: translateY(-1px);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333; /* Darker footer */
    color: #fff;
    margin-top: 30px;
    border-radius: 0 0 8px 8px;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }
    
    header p {
        font-size: 0.9em;
    }
    
    #promocao h2 {
        font-size: 1.4em;
    }
    
    #planos {
        grid-template-columns: 1fr;
    }
    
    main {
        margin: 20px auto;
        padding: 20px;
    }
}


/* Estilos para a nova seção de Galeria (Carrossel) */
#galeria {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 40px;
    overflow: hidden; /* Esconde o que está fora do carrossel */
    position: relative;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px; /* Limite o tamanho do carrossel */
    margin: 0 auto;
    position: relative;
}

.carousel-slide {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide img {
    min-width: 150px; /* Tamanho fixo para as imagens */
    max-width: 150px;
    height: auto;
    margin: 0 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 1.2em;
    line-height: 1;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Estilos para a nova seção de Vídeos */
#videos {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.video-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.video-container video {
    max-width: 100%;
    width: 400px; /* Tamanho fixo para os vídeos */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Ajustes de responsividade */
@media (max-width: 768px) {
    .carousel-slide img {
        min-width: 100px;
        max-width: 100px;
    }
    
    .video-container video {
        width: 100%;
    }
}

