/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variáveis CSS */
:root {
    --primary-color: #1A4F84;
    --primary-dark: #0f3d6b;
    --secondary-color: #2096F3;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, #1A4F84 0%, #2096F3 100%);
    --gradient-text: linear-gradient(135deg, #1A4F84 0%, #2096F3 100%);
}

/* Botões */
.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu .btn-primary {
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: transparent;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: titleSlideIn 1.5s ease-out;
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.gradient-text {
    background: linear-gradient(135deg, #1A4F84 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientPulse 2s ease-in-out infinite;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1A4F84 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(2px);
    opacity: 0.5;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Cartão Principal Flutuante */
.main-floating-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 220px;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: cardFloat 8s ease-in-out infinite;
    z-index: 10;
    overflow: hidden;
}

.card-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bank-icon {
    width: 28px;
    height: 28px;
    background: #1A4F84;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.card-header h3 {
    color: #1A4F84;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    flex-shrink: 0;
}

.card-number {
    font-size: 1.375rem;
    color: #1A4F84;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    word-spacing: 4px;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.5rem;
    flex: 1;
}

.card-holder, .card-expiry {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.card-holder {
    flex: 1;
    margin-right: 1rem;
}

.card-expiry {
    flex-shrink: 0;
}

.card-holder .label, .card-expiry .label {
    color: #999;
    font-size: 0.625rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
}

.card-holder .name, .card-expiry .date {
    color: #1A4F84;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-chip {
    position: absolute;
    bottom: 50%;
    left: 1.5rem;
    transform: translateY(50%);
}

.chip {
    width: 35px;
    height: 25px;
    background: #FFD700;
    border-radius: 3px;
}

.card-eye {
    position: absolute;
    bottom: 50%;
    right: 1.5rem;
    transform: translateY(50%);
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.75rem;
}

@keyframes cardFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) rotateY(0deg); 
    }
    50% { 
        transform: translate(-50%, -50%) rotateY(10deg); 
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes gradientPulse {
    0%, 100% {
        background-size: 100% 100%;
    }
    50% {
        background-size: 200% 200%;
    }
}

@keyframes glow {
    0% {
        opacity: 0.3;
        filter: blur(2px);
    }
    100% {
        opacity: 0.7;
        filter: blur(4px);
    }
}

.floating-pix,
.floating-boleto,
.floating-transfer,
.floating-account,
.floating-split {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.floating-card {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-pix {
    top: 15%;
    right: 15%;
    animation-delay: 3s;
}

.floating-boleto {
    top: 25%;
    left: 10%;
    animation-delay: 1s;
}

.floating-transfer {
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
}

.floating-account {
    bottom: 15%;
    right: 15%;
    animation-delay: 4s;
}

.floating-split {
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Produtos Section */
.produtos {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.produto-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.produto-card:hover::before {
    transform: scaleX(1);
}

.produto-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.produto-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.produto-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.produto-card ul {
    list-style: none;
}

.produto-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.produto-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
    background: var(--bg-white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.sobre-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
}

.sobre-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Abrir Conta Section */
.abrir-conta {
    padding: 80px 0;
    background: #1A4F84;
    color: white;
}

.abrir-conta .section-header h2 {
    color: white;
}

.conta-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step p {
    opacity: 0.9;
}

.cta-buttons {
    text-align: center;
    margin-top: 3rem;
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Contato Section */
.contato {
    padding: 80px 0;
    background: var(--bg-light);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contato-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contato-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.contato-item h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contato-item p {
    color: var(--text-light);
}

.contato-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #ffffff;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Botão WhatsApp Flutuante */
.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 79, 132, 0.3);
}

.back-to-top:hover {
    background: #0f3d6b;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(26, 79, 132, 0.5);
}

.back-to-top.show {
    display: flex;
}

/* Política de Privacidade */
.politica-content {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.politica-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.politica-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 1rem;
    font-style: italic;
}

.politica-body {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 3rem;
}

.politica-section {
    margin-bottom: 3rem;
}

.politica-section:last-child {
    margin-bottom: 0;
}

.politica-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.politica-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

.politica-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.politica-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.politica-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.politica-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.direitos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.direito-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.direito-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.direito-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.direito-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.direito-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contato-privacidade {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contato-privacidade .contato-item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

    .contato-privacidade .contato-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

/* Termos de Uso */
.termos-content {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.termos-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.termos-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.termos-body {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 3rem;
}

.termos-section {
    margin-bottom: 3rem;
}

.termos-section:last-child {
    margin-bottom: 0;
}

.termos-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.termos-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

.termos-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.termos-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.termos-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.termos-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.link-destaque {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-destaque:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.definicoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.definicao-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.definicao-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.definicao-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.definicao-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contato-termos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contato-termos .contato-item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contato-termos .contato-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.aceitacao-termos {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.aceitacao-termos p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Política de PLDFT */
.pldft-content {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.pldft-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.pldft-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pldft-header .subtitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pldft-body {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 3rem;
}

.pldft-section {
    margin-bottom: 3rem;
}

.pldft-section:last-child {
    margin-bottom: 0;
}

.pldft-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.pldft-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

.pldft-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.pldft-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.pldft-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.pldft-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.principios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.principio-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.principio-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.principio-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.principio-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.principio-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.risco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.risco-card {
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.risco-card.baixo {
    background: #f0fdf4;
    border-left-color: #2096F3;
}

.risco-card.medio {
    background: #fefce8;
    border-left-color: #eab308;
}

.risco-card.alto {
    background: #fef2f2;
    border-left-color: #ef4444;
}

.risco-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.risco-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.risco-card.baixo h4 {
    color: #1a7bd1;
}

.risco-card.medio h4 {
    color: #92400e;
}

.risco-card.alto h4 {
    color: #991b1b;
}

.risco-card ul {
    margin: 0;
    padding-left: 1rem;
}

.risco-card li {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.indicadores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.indicador-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.indicador-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.indicador-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.indicador-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contato-pldft {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contato-pldft .contato-item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contato-pldft .contato-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.aceitacao-pldft {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.aceitacao-pldft p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Central de Ajuda */
.ajuda-content {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.ajuda-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.ajuda-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.ajuda-header .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.5rem;
    transition: border-color 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary-color);
}

.search-box i {
    color: var(--text-light);
    margin: 0 1rem;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.5rem;
}

.search-box button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--primary-dark);
}

.ajuda-body {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 3rem;
}

.categorias-section {
    margin-bottom: 4rem;
}

.categorias-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.categoria-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.categoria-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.categoria-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.categoria-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.categoria-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.faq-categoria {
    margin-bottom: 3rem;
}

.faq-categoria h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: var(--bg-light);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    background: white;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer ul, .faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.tutoriais-section {
    margin-bottom: 4rem;
}

.tutoriais-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.tutoriais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tutorial-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tutorial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tutorial-thumbnail {
    height: 160px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tutorial-thumbnail i {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.tutorial-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1rem;
    margin-bottom: 0.5rem;
}

.tutorial-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 1rem 1rem;
}

.duracao {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 1rem 1rem;
    display: inline-block;
}

.suporte-section {
    margin-bottom: 4rem;
}

.suporte-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.canais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.canal-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.canal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.canal-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.canal-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.canal-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.canal-card .btn-secondary {
    margin-top: 1rem;
}

.status-section {
    margin-bottom: 2rem;
}

.status-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.status-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.online {
    background: #2096F3;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.status-indicator.offline {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.status-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.status-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ */
.faq-content {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.faq-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-header .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.filtros-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.filtro-btn {
    background: var(--bg-light);
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filtro-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filtro-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.faq-body {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 3rem;
}

.faq-categoria {
    margin-bottom: 3rem;
}

.faq-categoria:last-child {
    margin-bottom: 0;
}

.faq-categoria h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: var(--bg-light);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    background: white;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

.faq-answer ul, .faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Status dos Serviços */
.status-content {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.status-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.status-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.status-header .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.status-geral {
    margin: 2rem 0;
}

.status-overview {
    display: flex;
    justify-content: center;
}

.status-card.geral {
    background: linear-gradient(135deg, #2096F3, #1a7bd1);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    max-width: 500px;
}

.status-icon i {
    font-size: 3rem;
    color: white;
}

.status-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.status-text {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.status-time {
    font-size: 0.9rem;
    opacity: 0.8;
}

.ultima-atualizacao {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.status-body {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 3rem;
}

.status-section {
    margin-bottom: 3rem;
}

.status-section:last-child {
    margin-bottom: 0;
}

.status-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.status-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.status-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.status-header-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.online {
    background: #2096F3;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.status-indicator.offline {
    background: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.status-indicator.warning {
    background: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.status-header-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.online {
    background: #e3f2fd;
    color: #1a7bd1;
}

.status-badge.offline {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.warning {
    background: #fef3c7;
    color: #92400e;
}

.status-details p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.status-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-metrics span {
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-metrics i {
    color: var(--primary-color);
    width: 16px;
}

/* Incidentes */
.incidentes-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.incidente-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.incidente-item.resolved {
    border-left: 4px solid #2096F3;
}

.incidente-item.warning {
    border-left: 4px solid #f59e0b;
}

.incidente-item.critical {
    border-left: 4px solid #ef4444;
}

.incidente-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.incidente-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.incidente-status.resolved {
    color: #2096F3;
}

.incidente-status.warning {
    color: #f59e0b;
}

.incidente-status.critical {
    color: #ef4444;
}

.incidente-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.incidente-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.incidente-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.incidente-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.incidente-details span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.incidente-details strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Informações Adicionais */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-icon {
    margin-bottom: 1rem;
}

.info-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.info-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.btn-secondary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contato-content {
        grid-template-columns: 1fr;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
    }

    .conta-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .politica-body {
        padding: 2rem 1.5rem;
    }

    .politica-header h1 {
        font-size: 2rem;
    }

    .direitos-grid {
        grid-template-columns: 1fr;
    }

    .contato-privacidade {
        grid-template-columns: 1fr;
    }

    .termos-body {
        padding: 2rem 1.5rem;
    }

    .termos-header h1 {
        font-size: 2rem;
    }

    .definicoes-grid {
        grid-template-columns: 1fr;
    }

    .contato-termos {
        grid-template-columns: 1fr;
    }

    .pldft-body {
        padding: 2rem 1.5rem;
    }

    .pldft-header h1 {
        font-size: 2rem;
    }

    .principios-grid {
        grid-template-columns: 1fr;
    }

    .risco-grid {
        grid-template-columns: 1fr;
    }

    .indicadores-grid {
        grid-template-columns: 1fr;
    }

    .contato-pldft {
        grid-template-columns: 1fr;
    }

    .ajuda-body {
        padding: 2rem 1.5rem;
    }

    .ajuda-header h1 {
        font-size: 2rem;
    }

    .categorias-grid {
        grid-template-columns: 1fr;
    }

    .tutoriais-grid {
        grid-template-columns: 1fr;
    }

    .canais-grid {
        grid-template-columns: 1fr;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .search-box {
        flex-direction: column;
        gap: 1rem;
    }

    .search-box input {
        width: 100%;
    }

    .faq-body {
        padding: 2rem 1.5rem;
    }

    .faq-header h1 {
        font-size: 2rem;
    }

    .filtros-container {
        flex-direction: column;
        align-items: center;
    }

    .filtro-btn {
        width: 100%;
        max-width: 200px;
    }

    .status-header h1 {
        font-size: 2rem;
    }

    .status-card.geral {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .status-body {
        padding: 2rem 1.5rem;
    }

    .incidente-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .produto-card {
        padding: 1.5rem;
    }

    .main-floating-card {
        width: 300px;
        height: 190px;
        padding: 1.25rem;
    }

    .card-number {
        font-size: 1.125rem;
        letter-spacing: 1px;
        word-spacing: 2px;
    }

    .card-header h3 {
        font-size: 1rem;
    }

    .card-holder .name, .card-expiry .date {
        font-size: 0.75rem;
    }

    .card-holder .label, .card-expiry .label {
        font-size: 0.5rem;
    }

    .bank-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .chip {
        width: 30px;
        height: 20px;
    }

    .card-eye {
        width: 24px;
        height: 24px;
        font-size: 0.625rem;
    }

    .floating-pix,
    .floating-boleto,
    .floating-transfer,
    .floating-account,
    .floating-split {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.produto-card,
.step,
.contato-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Estilos para a imagem do app */
.hero-app-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    mix-blend-mode: screen;
    filter: contrast(1.1) brightness(1.05);
    background: transparent;
}

.hero-app-image:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .hero-app-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .whatsapp-button {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
} 