body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    color: #333;
}

header {
    padding: 30px 20px;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: white;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo {
    height: 100px;
    width: auto;
}

.header-text h1 {
    font-size: 2.5em;
    margin: 0;
    font-weight: 800;
}

.header-text p {
    margin: 8px 0 0;
    font-weight: 400;
    font-size: 1.1em;
}

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

.content button {
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    font-size: 1em;
    transition: background 0.3s;
}

.content button:hover {
    background-color: #0056b3;
}

.plans {
    padding: 30px 20px;
    background-color: #e6f0ff;
}

.centered-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.plan-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.plan {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 220px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.clients {
    padding: 30px 20px;
    text-align: center;
    background-color: #f0f8ff;
}

.client-logos img {
    /* Controle de tamanho das logos dos clientes */
    max-height: 150px;     /* ✅ Ajuste aqui o tamanho desejado */
    width: auto;
    margin: 15px;
    border-radius: 10px;
    background: white;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.client-logos img:hover {
    transform: scale(1.05);
}

footer {
    padding: 15px;
    text-align: center;
    background-color: #0056b3;
    color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    text-decoration: none;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}

@media (max-width: 768px) {
    .logo {
        height: 70px;
    }

    .header-text h1 {
        font-size: 1.8em;
    }

    .plan {
        width: 90%;
    }

    .client-logos img {
        max-height: 50px;
    }
}

.plan img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.whatsapp-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s;
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
}

.media-guidelines {
    padding: 30px 20px;
    background-color: #e6f0ff; /* tom de azul claro igual a seção de planos */
    border-radius: 15px;
    margin: 30px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.media-guidelines h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #0056b3;
}

.media-guidelines p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.media-guidelines ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.media-guidelines ul ul {
    list-style-type: circle;
    margin-top: 10px;
}

/* Seção Locais de Exibição */
.locations {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.locations h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 800;
}

.locations p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.location-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.location-gallery img {
    width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

