/* ============================================
   GRUPO BITNET - Tema Claro
   Paleta: #1bb0f1, #1be0f9, #161931, #ebecef, #26334e, #00b3fd
   ============================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #161931;
    background: #ebecef;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === UTILITÁRIOS DE COR === */
.gradient-text {
    background: linear-gradient(135deg, #1bb0f1, #1be0f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blue { color: #00b3fd; }
.yellow { color: #1bb0f1; }
.white-text { color: #ffffff; }
.green { color: #10b981; }
.red { color: #ef4444; }
.purple { color: #8b5cf6; }
.orange { color: #f59e0b; }

/* === BOTÕES === */
.btn-primary {
    background: linear-gradient(135deg, #1bb0f1, #00b3fd);
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(27, 176, 241, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #26334e, #161931);
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(38, 51, 78, 0.3);
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
}

.header.scrolled {
    background: rgba(38, 51, 78, 0.95); /* Cor #26334e com 95% de opacidade */
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2); /* Sombra um pouco mais escura para contrastar */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.logo:hover {
    transform: scale(1.03);
}

/* Nav Desktop */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop button {
    background: none;
    border: none;
    color: #ebecef;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
}

.nav-desktop button:hover {
    color: #1bb0f1;
}

.nav-desktop button::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1bb0f1;
    transition: width 0.3s ease;
}

.nav-desktop button:hover::after {
    width: 100%;
}

.btn-client {
    background: linear-gradient(135deg, #1bb0f1, #00b3fd) !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: bold !important;
}

.btn-client:hover {
    transform: scale(1.01);
}

/* Social Desktop */
.social-desktop {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #ebecef;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.instagram:hover { color: #e1306c; transform: scale(1.15); }
.social-link.whatsapp:hover { color: #25D366; transform: scale(1.15); }
.social-link.map-link:hover { color: #1bb0f1; transform: scale(1.15); }

/* Menu Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ebecef;
    font-size: 28px;
    cursor: pointer;
}

/* Nav Mobile */
.nav-mobile {
    display: none;
    background: rgba(38, 51, 78, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-top: 16px;
    padding: 24px;
    animation: slideInLeft 0.3s ease;
    position: fixed;
    top: 80px;
    left: 24px;
    right: 24px;
    z-index: 999;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.nav-mobile nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.nav-mobile button {
    background: none;
    border: none;
    color: #ebecef;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    text-transform: capitalize;
    transition: color 0.3s ease;
    padding: 12px 0;
}

.nav-mobile button:hover {
    color: #1bb0f1;
}

.social-mobile {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid #d1d5db;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('/assets/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    animation: slideInLeft 1s ease;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.5rem;
    color: #f1f5f9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(22, 25, 49, 0.7);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f1f5f9;
}

.feature i {
    color: #1be0f9;
    font-size: 20px;
}

.feature span {
    color: #f1f5f9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

/* === ABOUT SECTION === */
.about {
    padding: 15px 0;
    position: relative;
    background: #ebecef;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 10;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #161931;
}

.section-header p {
    font-size: 1.25rem;
    color: #26334e;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.benefit-card {
    background: rgba(27, 176, 241, 0.3);
    border: 1px solid #d1d5db;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 176, 241, 0.05), rgba(27, 224, 249, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: scale(1.05);
    border-color: #1bb0f1;
    box-shadow: 0 12px 32px rgba(27, 176, 241, 0.15);
}

.benefit-card i {
    font-size: 3rem;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.benefit-card:hover i {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #161931;
    position: relative;
    z-index: 10;
}

.benefit-card p {
    color: #26334e;
    position: relative;
    z-index: 10;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(22, 25, 49, 0.05);
}

.company-stat {
    text-align: center;
}

.company-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.company-stat .stat-label {
    color: #26334e;
}

/* === PLANS SECTION === */
.plans {
    padding: 15px 0;
    position: relative;
    background: #ffffff;
}

.plans-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
}

.plan-card {
    background: rgba(27, 176, 241, 0.3);
    border: 1px solid #d1d5db;
    border-radius: 16px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    width: auto;
}

.plan-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(27, 176, 241, 0.15);
    border-color: #1bb0f1;
}

/* Plan Modern Style */
.plan-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
    width: auto;
    height: auto;
}

.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -16px -16px 0 -16px;
    padding: 16px;
    padding-right: 0;
    position: relative;
}

.plan-info,
.plan-category,
.plan-name {
    position: relative;
    z-index: 3;
}

.plan-category {
    font-size: 0.9rem;
    color: #26334e;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #161931;
}

.plan-image {
    overflow: visible;
}

.plan-image img {
    width: 120px;
    transform: scale(1.4);
    transform-origin: right center;
    display: block;
}

.plan-benefits {
    background: #00b3fd;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #ebecef;
}

.benefit-item i {
    color: #ebecef;
    font-size: 18px;
}

.plan-price-modern {
    text-align: center;
    font-size: 1.1rem;
    color: #26334e;
}

.plan-price-modern strong {
    font-size: 1.8rem;
    color: #00b3fd;
}

.plan-price-modern span {
    display: block;
    font-size: 0.9rem;
    color: #26334e;
}

.btn-plan {
    width: 100%;
    background: linear-gradient(135deg, #1bb0f1, #00b3fd);
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(27, 176, 241, 0.3);
}

.btn-modern {
    border-radius: 999px;
    font-size: 1.1rem;
    padding: 16px;
}

/* Plans Observation */
.plans-observation {
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(27, 176, 241, 0.06);
    border: 1px solid rgba(27, 176, 241, 0.3);
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.plans-observation p {
    color: #26334e;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plans-observation strong {
    color: #00b3fd;
}

/* === APPS / STREAMING SECTION === */
.apps {
    padding: 15px 0;
    position: relative;
    background: #ebecef;
}

/* Streaming Card */
.stream-card {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 2 / 4;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 25px 60px rgba(22, 25, 49, 0.3);
}

.stream-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stream-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(22, 25, 49, 0.95) 10%,
        rgba(22, 25, 49, 0.4) 45%,
        transparent 100%
    );
}

.stream-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stream-content::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    backdrop-filter: blur(10px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
}

.stream-logo img {
    width: 70px;
    margin-bottom: 8px;
}

.stream-content h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f1f5f9;
}

.stream-content p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.stream-plan-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
    color: #1be0f9;
    font-weight: 600;
}

.stream-card .btn-modern {
    margin-top: 8px;
    border-radius: 999px;
}

/* === CONTACT SECTION === */
.contact {
    padding: 15px 0;
    position: relative;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: rgba(27, 176, 241, 0.3);
    border: 1px solid #d1d5db;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

.contact-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(22, 25, 49, 0.1);
    border-color: #1bb0f1;
}

.contact-card i {
    font-size: 2rem;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.contact-card:hover i {
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #161931;
}

.contact-card p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #26334e;
}

.contact-card span {
    color: #64748b;
    font-size: 0.875rem;
}

/* Contact Info Grid */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
    z-index: 10;
}

.location-info,
.schedule-info {
    background: #f8f9fa;
    border: 1px solid #d1d5db;
    border-radius: 24px;
    padding: 32px;
}

.location-info h3,
.schedule-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: #161931;
}

.location-details,
.schedule-details {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.location-item i {
    color: #1bb0f1;
    margin-top: 4px;
}

.location-item p {
    margin-bottom: 4px;
    color: #26334e;
}

.location-item strong {
    color: #161931;
}

.btn-map {
    width: 100%;
    background: linear-gradient(135deg, #1bb0f1, #00b3fd);
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-map:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(27, 176, 241, 0.3);
}

.schedule-item {
    margin-bottom: 16px;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-item h4 {
    color: #00b3fd;
    font-weight: 600;
    margin-bottom: 12px;
}

.schedule-item p {
    color: #26334e;
    margin-bottom: 8px;
}

/* CTA Final */
.cta-final {
    background: #f8f9fa;
    border: 1px solid #d1d5db;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    max-width: 512px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-final h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #161931;
}

.cta-final p {
    color: #26334e;
    margin-bottom: 24px;
}

.btn-specialist {
    background: linear-gradient(135deg, #1bb0f1, #00b3fd);
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-specialist:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(27, 176, 241, 0.3);
}

/* === FOOTER === */
.footer {
    background: rgba(38, 51, 78, 0.95);
    border-top: 1px solid #26334e;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ebecef;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-section p {
    color: #ebecef;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social .social-link {
    color: #ebecef;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
    color: #ebecef;
    font-size: 0.875rem;
}

.footer-section button {
    background: none;
    border: none;
    color: #ebecef;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-section button:hover {
    color: #1be0f9;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Espaçamento entre os itens */
}

.contact-item {
    display: flex;
    align-items: center; /* ALINHA O ÍCONE E O TEXTO AO CENTRO VERTICALMENTE */
    gap: 12px;
    color: #ebecef;
    font-size: 0.875rem;
    text-decoration: none; /* Remove o sublinhado */
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #1be0f9; /* Muda a cor ao passar o mouse */
}

.contact-item i {
    color: #1bb0f1;
    width: 20px; /* Largura fixa para garantir alinhamento */
    display: flex;
    justify-content: center; /* Centraliza o ícone dentro do quadrado de 20px */
}

.footer-bottom {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;     /* Centraliza verticalmente (se houver altura) */
    padding-top: 30px;
    text-align: center;
    border-top: 1px solid #26334e;
    gap: 16px;
}

.footer-copyright {
    color: #ebecef;
    font-size: 0.875rem;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links button {
    background: none;
    border: none;
    color: #ebecef;
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links button:hover {
    color: #1be0f9;
}

/* === ANIMAÇÕES === */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === RESPONSIVIDADE === */
@media (max-width: 1024px) {
    .nav-desktop,
    .social-desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 48px;
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .company-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .features {
        flex-direction: column;
    }

    .company-stats {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .nav-mobile {
        left: 16px;
        right: 16px;
        top: 70px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .benefit-card:hover,
    .plan-card:hover,
    .contact-card:hover {
        transform: none;
    }

    .benefit-card:active,
    .plan-card:active,
    .contact-card:active {
        transform: scale(0.98);
    }
}

/* ============================================
   PÁGINA DE ERRO
   ============================================ */
.error-page {
    min-height: calc(100vh - 80px); /* Ocupa a tela inteira descontando o header */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px 0; /* Padding superior para não ficar por baixo do header fixo */
    background: #ebecef; /* Mantém o fundo padrão claro do seu projeto */
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 24px;
    background: #ffffff; /* Card branco para destacar o erro */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(22, 25, 49, 0.05); /* Sombra leve com a cor escura #161931 */
}

.error-icon {
    font-size: 4rem;
    color: #1bb0f1; /* Azul principal da Bitnet */
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

.error-content h1 {
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    /* Usa a classe gradient-text que você já tem, mas se quiser reforçar: */
    background: linear-gradient(135deg, #1bb0f1, #1be0f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-content h2 {
    font-size: 2rem;
    color: #161931; /* Cor primária escura */
    margin-bottom: 16px;
}

.error-content p {
    font-size: 1.1rem;
    color: #26334e; /* Cor secundária de texto */
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Animação opcional para o ícone de aviso */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Ajuste Responsivo */
@media (max-width: 480px) {
    .error-content h1 { font-size: 5rem; }
    .error-content h2 { font-size: 1.5rem; }
    .error-page { padding-top: 100px; }
}

/* ============================================
   ESTILOS EXCLUSIVOS PARA PÁGINAS DE ERRO
   ============================================ */

/* O header só fica escuro se o body tiver a classe is-error-page */
.is-error-page .header {
    background-color: rgba(38, 51, 78, 0.95) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Espaçamento para o conteúdo não entrar debaixo do header na página de erro */
.is-error-page .error-page {
    padding-top: 120px; 
    min-height: calc(100vh - 80px);
}

/* Barra de Rolagem Escura APENAS nas páginas de erro (Opcional) */
.is-error-page ::-webkit-scrollbar {
    width: 12px;
}
.is-error-page ::-webkit-scrollbar-track {
    background: #ebecef; 
}
.is-error-page ::-webkit-scrollbar-thumb {
    background-color: #26334e; 
    border-radius: 10px;
    border: 3px solid #ebecef; 
}
.is-error-page ::-webkit-scrollbar-thumb:hover {
    background-color: #1bb0f1; 
}