/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #06b6d4;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-800: #1f2937;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER / MENU ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(30, 58, 138, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 70px;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== BANNER ===== */
.banner {
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.banner-link {
    display: block;
    text-decoration: none;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.banner-link:hover .banner-img {
    transform: scale(1.02);
}

/* ===== FRASE DE IMPACTO ===== */
.frase-impacto {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.frase-impacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.frase-impacto .container {
    position: relative;
    z-index: 1;
}

.frase-impacto h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.frase-impacto p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-weight: 300;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)); }
}

/* ===== PLANOS E COMBOS ===== */
.planos-combos {
    padding: 5rem 0;
    background: var(--gray-50);
}

.planos-combos h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.planos-combos h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.combos-title, .planos-title {
    font-size: 2.1rem;
    color: #0057ff;
    font-weight: 800;
    margin: 2.5rem 0 1.5rem 0;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    line-height: 1.1;
    z-index: 1;
}

.combos-title::after, .planos-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    margin: 0.7rem auto 0 auto;
    background: linear-gradient(90deg, #0057ff 60%, #3b82f6 100%);
    border-radius: 3px;
    transition: width 0.3s;
}

.combos-title:hover::after, .planos-title:hover::after {
    width: 90px;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,87,255,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 340px;
    min-width: 260px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,87,255,0.18);
    border-color: #0057ff;
}

.card.destaque {
    border: 2.5px solid #0057ff;
    background: linear-gradient(120deg, #e6f0ff 60%, #f0f6ff 100%);
    box-shadow: 0 8px 32px rgba(0,87,255,0.15);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0057ff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.card .price {
    background: linear-gradient(90deg, #0057ff, #3b82f6);
    color: #fff;
    border-radius: 16px;
    padding: 0.2rem 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,87,255,0.10);
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #222;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card ul li b {
    color: #0057ff;
}

@media (max-width: 900px) {
    .card-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

/* ===== ENTRETENIMENTOS ===== */
.entretenimentos {
    padding: 5rem 0;
    background: var(--white);
}

.entretenimentos h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.entretenimentos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 2.5rem 0 2rem 0;
    flex-wrap: wrap;
}

.entretenimento-img {
    width: 180px;
    max-width: 90vw;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(0,87,255,0.10);
    background: #fff;
    transition: transform 0.35s cubic-bezier(.23,1.01,.32,1), box-shadow 0.3s;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: fadeInEntretenimento 1.1s cubic-bezier(.23,1.01,.32,1) forwards;
}

.entretenimento-img:nth-child(2) { animation-delay: 0.2s; }
.entretenimento-img:nth-child(3) { animation-delay: 0.4s; }
.entretenimento-img:hover {
    transform: translateY(-8px) scale(1.05) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(0,87,255,0.18);
}

@keyframes fadeInEntretenimento {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    60% { opacity: 1; transform: translateY(-8px) scale(1.03); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 700px) {
    .entretenimento-img { width: 120px; }
    .entretenimentos-grid { gap: 1.2rem; }
}

.entretenimento-blocos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    margin: 40px 0;
}

.bloco-icones {
    width: 70vw;
    max-width: 900px;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.bloco-icones img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    background: none;
    box-shadow: none;
    margin: 0;
}

@media (max-width: 900px) {
    .bloco-icones {
        width: 100vw;
        max-width: 100vw;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
}

/* ===== CENTRAL DO CLIENTE ===== */
.central-cliente {
    padding: 4rem 0;
    background: var(--gradient-accent);
    text-align: center;
}

.btn-cliente,
.btn-app {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0 1rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-cliente:hover,
.btn-app:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--gray-50);
}

/* ===== SOBRE NÓS MODERNO ===== */
.sobre-nos {
    background: #f9fafb;
    padding: 4rem 0 3rem 0;
}
.sobre-nos-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sobre-nos-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--primary-color);
}
.sobre-nos-quote {
    font-size: 1.15rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: center;
}
.sobre-nos-content {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    width: 100%;
    justify-content: center;
}
.sobre-nos-icons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
    min-width: 140px;
}
.icon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    border-radius: 12px;
    padding: 1rem 0.7rem;
    box-shadow: var(--shadow-sm);
    width: 110px;
    transition: transform 0.2s;
}
.icon-block:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: var(--shadow-md);
}
.icon-block span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.3rem;
}
.sobre-nos-text {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.2rem;
}
.sobre-nos-text p {
    color: var(--text-dark);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 0.2rem;
}
.sobre-nos-missao {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
}
.sobre-nos-btn {
    margin-top: 0.5rem;
    align-self: flex-start;
}
@media (max-width: 900px) {
    .sobre-nos-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .sobre-nos-icons {
        flex-direction: row;
        gap: 1.2rem;
        min-width: unset;
    }
    .icon-block {
        width: 90px;
        padding: 0.7rem 0.3rem;
    }
    .sobre-nos-text {
        align-items: center;
        text-align: center;
    }
}

/* ===== CONTATO ===== */
.contato {
    padding: 5rem 0;
    background: var(--white);
}

.contato h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.contato-form {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: grid;
    gap: 1.5rem;
}

.contato-form input,
.contato-form textarea {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contato-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--gradient-primary);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #128c7e;
}

/* ===== FOOTER MODERNO ===== */
.footer {
    background: #232c36;
    color: #fff;
    padding: 0;
    margin-top: 0;
    font-size: 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 2fr;
    gap: 2.5rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem 1.5rem 2rem;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.footer-logo-img {
    width: 140px;
    height: auto;
    margin-bottom: 0.5rem;
}
.footer-links-col h4,
.footer-info-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 0.7rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.footer-links a {
    color: #e0e7ef;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
}
.footer-links a:hover {
    color: var(--secondary-color);
}
.footer-social {
    margin-top: 0.7rem;
    display: flex;
    gap: 0.7rem;
}
.footer-social-title {
    color: #e0e7ef;
    font-size: 1rem;
    font-weight: 700;
    margin-right: 0.5rem;
    vertical-align: middle;
    display: inline-block;
}
@media (max-width: 700px) {
    .footer-social {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.2rem !important;
    }
    .footer-social-title {
        margin-right: 0;
        margin-bottom: 0.3rem;
        display: block;
    }
    .footer-instagram {
        margin-left: 0;
        margin-top: 0.2rem;
        display: block;
    }
}
.footer-instagram svg {
    vertical-align: middle;
    transition: transform 0.2s, filter 0.2s;
}
.footer-instagram:hover svg {
    transform: scale(1.18) rotate(-8deg);
    filter: drop-shadow(0 2px 12px #3b82f6cc);
}
.footer-info-col p {
    margin: 0 0 0.2rem 0;
    color: #e0e7ef;
    font-size: 0.98rem;
}
.footer-info-col a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-info-col a:hover {
    color: var(--secondary-color);
}
.footer-mapa {
    margin-top: 0.7rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 #0002;
}
.footer-bottom {
    background: #1e232a;
    text-align: center;
    padding: 1rem 0 0.5rem 0;
    font-size: 0.98rem;
    color: #bfc9d1;
    letter-spacing: 0.01em;
}
.footer-dev {
    margin-top: 0.3rem;
    font-size: 1.05rem;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 0.01em;
}
.footer-dev a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-dev a:hover {
    color: var(--accent-color);
    text-decoration: none;
}
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem 1rem 1rem;
    }
    .footer-logo-img {
        width: 110px;
    }
}
@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1.5rem 0.5rem 0.7rem 0.5rem;
    }
    .footer-col {
        align-items: flex-start;
    }
    .footer-logo-img {
        width: 130px;
        padding-top: 1.2rem;
    }
    .footer-mapa iframe {
        height: 90px;
    }
    .app-contato-img-col {
        align-items: center !important;
        justify-content: center !important;
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .app-contato-img {
        max-width: 90vw;
        width: 320px;
        min-width: 220px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.2rem;
    }
    .btn-app-download {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }
    .sobre-nos-btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }
    .footer-social {
        margin-top: 0.7rem;
        gap: 0.7rem;
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .nav-desktop { display: none !important; }
    .mobile-menu-toggle { display: flex !important; position: relative; z-index: 3000; }
    .nav-mobile {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 70px);
        background: #1e3a8a;
        z-index: 2500;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        box-shadow: 0 8px 24px rgba(30,58,138,0.15);
    }
    .nav-mobile.active {
        display: flex !important;
    }
    .nav-mobile .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .nav-mobile .nav-link {
        width: 100%;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 1.2rem;
        text-align: left;
        color: #fff;
    }
    .nav-mobile .nav-link:last-child {
        border-bottom: none;
    }
    .frase-impacto h1 {
        font-size: 2rem;
    }
    
    .frase-impacto p {
        font-size: 1rem;
    }
    
    .planos-combos h2,
    .entretenimentos h2,
    .sobre-nos h2,
    .contato h2 {
        font-size: 2rem;
    }
    
    .card-grid,
    .entretenimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-cliente,
    .btn-app {
        display: block;
        margin: 1rem auto;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .frase-impacto h1 {
        font-size: 1.5rem;
    }
    
    .planos-combos,
    .entretenimentos,
    .sobre-nos,
    .contato {
        padding: 3rem 0;
    }
    
    .contato-form {
        gap: 1rem;
    }
}

/* ===== ANIMAÇÕES E MICROINTERAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ===== UTILITÁRIOS ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Esconde o menu mobile e botão no desktop */
.nav-mobile, .mobile-menu-toggle { display: none; }

/* Mostra o menu desktop apenas em telas grandes */
.nav-desktop { display: flex; }

.btn-cta {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(59,130,246,0.15);
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}
.btn-cta:hover {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px rgba(59,130,246,0.25);
}

.cta-disponibilidade {
    background: linear-gradient(90deg, #0057ff 80%, #3b82f6 100%);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,87,255,0.10);
    padding: 2rem 2.5rem;
    margin: 2.5rem auto 2rem auto;
    max-width: 700px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    animation: fadeInUpCta 1.1s cubic-bezier(.23,1.01,.32,1) both;
}
.cta-disponibilidade p {
    margin: 0.7rem 0;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.4;
}
@keyframes fadeInUpCta {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    60% { opacity: 1; transform: translateY(-8px) scale(1.03); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-fade-in { animation: fadeInUpCta 1.1s cubic-bezier(.23,1.01,.32,1) both; }

.cta-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.5rem;
}
.cta-titulo {
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0,87,255,0.10);
}
.cta-subtitulo {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}
.cta-disponibilidade .btn-cta {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0,87,255,0.10);
    animation: pulseCta 1.8s infinite alternate;
}
@keyframes pulseCta {
    0% { box-shadow: 0 2px 12px rgba(0,87,255,0.10); }
    100% { box-shadow: 0 6px 24px rgba(0,87,255,0.18); }
}
@media (max-width: 600px) {
    .cta-disponibilidade {
        padding: 1.2rem 0.7rem;
        font-size: 1rem;
    }
    .cta-titulo { font-size: 1.1rem; }
    .cta-subtitulo { font-size: 1rem; }
    .cta-disponibilidade .btn-cta { font-size: 1rem; padding: 0.7rem 1.2rem; }
}

@keyframes fadeInUpEntretenimento {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.03);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bloco-icones img.animate-entretenimento {
    opacity: 0;
    animation: fadeInUpEntretenimento 1.1s cubic-bezier(.23,1.01,.32,1) forwards;
}

.bloco-icones img.animate-entretenimento:nth-child(1) { animation-delay: 0.1s; }
.bloco-icones img.animate-entretenimento:nth-child(2) { animation-delay: 0.3s; }
.bloco-icones img.animate-entretenimento:nth-child(3) { animation-delay: 0.5s; }

/* ===== APPS/STREAMINGS ACCORDION ===== */
.apps-streamings {
    padding: 4rem 0 2rem 0;
}
.apps-streamings h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}
.accordion {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(30,58,138,0.06);
    background: #fff;
    overflow: hidden;
}
.accordion-item + .accordion-item {
    border-top: 1px solid var(--gray-200);
}
.accordion-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    font-size: 1.15rem;
    font-weight: 700;
    background: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 1.1rem 1.2rem;
    margin-bottom: 0.7rem;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    gap: 0.7rem;
}
.accordion-header:hover, .accordion-header.active {
    background: var(--gray-100);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 2rem;
    transition: max-height 0.4s cubic-bezier(.23,1.01,.32,1), padding 0.3s;
}
.accordion-item.open .accordion-body {
    padding: 1.2rem 2rem 1.7rem 2rem;
    max-height: 600px;
    transition: max-height 0.5s cubic-bezier(.23,1.01,.32,1), padding 0.3s;
}
.accordion-body ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}
.accordion-body li + li {
    margin-top: 0.5rem;
}
.accordion-info {
    text-align: center;
    color: var(--text-light);
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}
.accordion-header .arrow {
    margin-right: 0.7rem;
    margin-left: 0;
    flex-shrink: 0;
}
.accordion-header.active .arrow,
.accordion-item.open .accordion-header .arrow {
    transform: translateY(-50%) rotate(135deg);
}
@media (max-width: 700px) {
    .apps-streamings { padding: 2.2rem 0 1rem 0; }
    .accordion { max-width: 98vw; }
    .accordion-header, .accordion-item.open .accordion-body { padding-left: 1rem; padding-right: 1rem; }
}
@media (max-width: 600px) {
    .accordion-header {
        font-size: 1rem;
        padding: 1rem 0.8rem;
        gap: 0.5rem;
    }
    .accordion-header .arrow {
        margin-right: 0.5rem;
    }
}

/* ===== APP + CONTATO SECTION (REDESIGN) ===== */
.app-contato-section {
    background: var(--gradient-primary);
    padding: 4rem 0 3rem 0;
    color: var(--white);
}
.app-contato-box {
    background: rgba(255,255,255,0.10);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.app-contato-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--white);
}
.app-contato-subtitle {
    font-size: 1.1rem;
    color: #e0e7ef;
    margin-bottom: 2.2rem;
    text-align: center;
    max-width: 600px;
}
.app-contato-grid {
    display: flex;
    align-items: flex-start;
    gap: 2.2rem;
    width: 100%;
    justify-content: center;
}
.app-contato-img-col {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.2rem;
}
.app-contato-img {
    max-width: 260px;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    background: var(--white);
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}
.btn-app-download {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-top: 0.2rem;
}
.btn-app-download:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px) scale(1.04);
}
.app-contato-form-col {
    flex: 1 1 380px;
    background: rgba(255,255,255,0.13);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 2.2rem 1.5rem;
    min-width: 280px;
    max-width: 420px;
    margin-top: 0;
}
.app-contato-form-col h3 {
    margin-bottom: 1.2rem;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: left;
}
.app-contato-form input,
.app-contato-form select,
.app-contato-form textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.app-contato-form input:focus,
.app-contato-form select:focus,
.app-contato-form textarea:focus {
    outline: 2px solid var(--secondary-color);
    background: #f3f4f6;
}
.app-contato-form textarea {
    min-height: 90px;
    resize: vertical;
}
.app-contato-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    background: var(--secondary-color);
    color: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.app-contato-form button:hover {
    background: var(--primary-color);
}

@media (max-width: 900px) {
    .app-contato-box {
        padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    }
    .app-contato-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    .app-contato-img {
        max-width: 180px;
    }
    .app-contato-form-col {
        padding: 1.5rem 0.5rem;
        max-width: 100%;
    }
}

.footer-logo-slogan {
    color: #e0e7ef;
    font-size: 1.05rem;
    margin-top: 0.7rem;
    display: block;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.01em;
    max-width: 220px;
}
@media (max-width: 900px) {
    .footer-logo-slogan {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        font-size: 0.98rem;
        margin-top: 0.5rem;
    }
} 