/* Importação das fontes do Google */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@400;700&display=swap');

/* --- Estilos Gerais --- */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif; /* Fonte padrão para parágrafos */
    background-color: #121212;
    color: #e0e0e0;
    text-align: center;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Anton', sans-serif; /* Fonte de impacto para títulos */
    letter-spacing: 1.5px;
    color: #00bfff; /* Azul ciano vibrante */
}

/* --- Seção Principal (Hero) --- */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://images.unsplash.com/photo-1593640408182-31c70c8268f5?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    max-width: 900px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #00bfff;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin: 0;
}

.hero-section h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-top: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 30px auto;
}

.cta-button {
    background-color: #00bfff;
    color: #121212;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

/* --- Seção de Serviços --- */
.services-section {
    padding: 60px 20px;
    background-color: #1c1c1c;
}

.services-section h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
}

.service-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: #252525;
    padding: 35px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #333;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 191, 255, 0.3);
}

.card i {
    font-size: 3.5rem;
    color: #00bfff;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* --- Seção de Promoções --- */
.promotions-section {
    padding: 60px 20px;
    background-color: #1c1c1c;
    text-align: center;
}

.promotions-section h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.promotion-banners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.promotion-banner {
    background-color: #252525;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    max-width: 500px;
    width: 100%;
}

.promotion-banner:hover {
    transform: scale(1.02);
}

.promotion-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.promotion-disclaimer {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.air-cta-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    background-color: #00bfff;
    color: #121212;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
}

.air-cta-button:hover {
    background-color: #ffffff;
    transform: scale(1.05) translateY(-5px);
}

/* --- Seção InfinitePay --- */
.infinitepay-section {
    padding: 60px 20px;
    background-color: #121212;
    text-align: center;
}

.infinitepay-section h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
}

.infinitepay-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.vimeo-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 para o vídeo */
    height: 0;
    overflow: hidden; /* ESSENCIAL: corta os cantos do iframe */
    margin-bottom: 40px;

    /* Seu estilo de borda, que agora funcionará */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.15);
    border: 2px solid #00bfff;
}

.vimeo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.infinitepay-details {
    background-color: #1c1c1c;
    padding: 30px;
    border-radius: 12px;
}

.infinitepay-details h3 {
    font-size: 1.6rem;
    color: #ffffff;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}

.infinitepay-details h4 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #00bfff;
    border-left: 4px solid #00bfff;
    padding-left: 10px;
}

.price-box {
    background-color: #252525;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.price-box h4 {
    border-left: none;
    padding-left: 0;
    margin-top: 0;
    font-size: 1.5rem;
}

.price-box .original-price {
    text-decoration: line-through;
    color: #888;
}

.price-box .discount {
    color: #2ecc71;
    font-weight: 700;
}

.price-box .final-price {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 10px;
}

.price-box .final-price strong {
    font-size: 1.9rem;
    color: #00bfff;
}

.features-list {
    list-style: none;
    padding: 0;

    /* --- Adicione estas 3 linhas para centralizar a lista --- */
    width: fit-content;      /* Faz a lista ter a largura do seu conteúdo */
    margin-left: auto;       /* Centraliza horizontalmente */
    margin-right: auto;      /* Centraliza horizontalmente */
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.features-list i {
    color: #00bfff;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.infinitepay-cta-button {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;   /* Centraliza verticalmente */
    width: fit-content;
    margin: 40px auto 0 auto;
    background-color: #00bfff;
    color: #121212;
    padding: 18px 40px;
    border-radius: 50px;
    text-align: center; /* Bom manter para o caso de quebra de linha */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
}

.infinitepay-cta-button:hover {
    background-color: #ffffff;
    transform: scale(1.05) translateY(-5px);
}

/* --- Rodapé e Contato --- */
.footer-section {
    background-color: #121212;
    padding: 60px 20px;
}

.footer-section h2 {
    font-size: 2.8rem;
}

.footer-section p {
    font-size: 1.1rem;
}

.contact-info {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-button {
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}

.contact-button:hover {
    transform: scale(1.05);
}

.air {
    background-color: #29a0ca;
}
.whatsapp {
    background: linear-gradient(45deg, #25d366, #2bca63, #23ae56, #1a9a4b, #424242);
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook {
    background: linear-gradient(45deg, #d9e8f4, #76aff5, #0862f6, #0037b2, #001150);
}

.pinterest {
    background: linear-gradient(45deg, #f78585, #f76463, #f73535, #ea0000, #c60001);
}

.location {
    margin-top: 30px;
    font-style: italic;
    color: #888;
}

/* --- ###################################### --- */
/* --- SEÇÃO ÚNICA DE RESPONSIVIDADE PARA CELULARES --- */
/* --- ###################################### --- */
@media (max-width: 768px) {

    /* --- Hero Section --- */
    .logo-container {
        flex-direction: column;
        gap: 10px;
    }
    .hero-section h1 {
        font-size: 2.8rem;
    }
    .hero-section h2 {
        font-size: 1.5rem;
    }

    /* --- Títulos das Seções --- */
    .services-section h2,
    .footer-section h2,
    .promotions-section h2,
    .infinitepay-section h2 {
        font-size: 2.2rem;
    }

    /* --- Card de Serviços --- */
    .card {
        width: 100%;
        max-width: 350px;
    }

    /* --- Seção de Promoções --- */
    .promotion-banners-container {
        flex-direction: column;
        align-items: center;
    }
    .promotion-banner {
        max-width: 100%;
    }

    /* --- Adicione outras regras responsivas aqui se necessário --- */
}