/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #1a73e8;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

header .logo-img {
    width: 100px;
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffd700;
}

section {
    padding: 40px 20px;
    text-align: center;
}

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

.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.card img.service-logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-links .btn {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.contact-links .btn.whatsapp {
    background: #25d366;
}

.contact-links .btn.whatsapp:hover {
    background: #1da854;
}

.contact-links .btn.telegram {
    background: #0088cc;
}

.contact-links .btn.telegram:hover {
    background: #007bb5;
}

footer {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}
/* Estilo para os posters dos filmes */
.movie-poster {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.movie-poster:hover {
    transform: scale(1.05);
}
#planos {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

#planos h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#planos .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#planos .card {
    background: #ffffff;
    color: #333;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#planos {
    padding: 20px;
    text-align: center;
}

#planos h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#planos .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

#planos .card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 300px;
    width: 100%;
}

#planos .card:hover {
    transform: translateY(-10px);
}

#planos .preco {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2a5298;
    margin: 20px 0;
}

#planos .preco.destaque {
    background: linear-gradient(90deg, #ff7f50, #ff4500);
    color: #fff;
    border-color: #ff4500;
    padding: 10px 20px;
    border-radius: 5px;
}

#planos .preco.destaque p {
    font-size: 2rem;
}

#planos .card ul {
    list-style-type: none;
    padding: 0;
}

#planos .card ul li {
    font-size: 1.2rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

#planos .card ul li i {
    margin-right: 10px;
}
//Video
.video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
}

.video-container {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    margin: 20px 0; /* Adicionado espaçamento vertical entre os vídeos */
}

.video-container:hover {
    transform: scale(1.05);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}