/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    body {
        padding: 5px;
    }
    
    /* Ajustes gerais para mobile */
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    h3 {
        font-size: 1.3em;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    /* Melhorar legibilidade em telas pequenas */
    p, li {
        font-size: 0.95em;
        line-height: 1.5;
    }
}

/* Navegação */
.nav {
    background: #1e3a8a; /* Azul mais forte */
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Responsividade da navegação */
@media (max-width: 768px) {
    .nav {
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .nav a {
        margin-right: 0;
        font-size: 0.9em;
        padding: 6px 10px;
    }
    
    .nav-user {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
    
    .user-info {
        font-size: 0.9em;
    }
    
    .nav-auth {
        flex-direction: column;
        gap: 10px;
    }
    
    .test-btn {
        margin-left: 0 !important;
    }
}

.nav a {
    color: white;
    text-decoration: none;
    margin-right: 25px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.nav a:hover {
    background-color: rgba(255,255,255,0.2);
    text-decoration: none;
}

.discord-btn {
    background: #5865f2 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    margin-right: 0 !important;
}

.discord-btn:hover {
    background: #4752c4 !important;
}

.test-btn {
    background: #28a745 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    margin-left: 10px !important;
}

.test-btn:hover {
    background: #218838 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3) !important;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Navegação do usuário logado */
.nav-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info {
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-user a {
    margin-right: 0 !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    transition: background-color 0.3s ease !important;
}

.nav-user a:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

.logout-btn {
    background: #dc2626 !important;
    color: white !important;
}

.logout-btn:hover {
    background: #b91c1c !important;
}

.nav-active {
    background: rgba(255,255,255,0.2) !important;
    font-weight: 600 !important;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Responsividade do dashboard */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-card h3 {
        font-size: 1.5em;
    }
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    background: #1e3a8a;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.stat-content h3 {
    color: #1e3a8a;
    font-size: 2em;
    margin: 0;
}

.stat-content p {
    color: #666;
    margin: 5px 0 0 0;
    font-weight: 500;
}

.dashboard-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.section-header h2 {
    color: #1e3a8a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state i {
    font-size: 4em;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.panels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

/* Responsividade dos painéis */
@media (max-width: 768px) {
    .panels-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .panel-card {
        padding: 15px;
    }
    
    .panel-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .panel-actions .btn {
        width: 100%;
    }
}

.panel-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.panel-header h3 {
    color: #1e3a8a;
    margin: 0;
}

.panel-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
    font-weight: 500;
}

.panel-status.active {
    color: #059669;
}

.panel-status.inactive {
    color: #dc2626;
}

.panel-info p {
    margin: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.panel-actions .btn {
    padding: 8px 15px;
    font-size: 0.9em;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Responsividade do guia */
@media (max-width: 768px) {
    .guide-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .guide-step {
        flex-direction: column;
        text-align: center;
    }
}

.guide-step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.guide-step .step-number {
    background: #1e3a8a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e3a8a;
    margin: 0 0 8px 0;
}

.step-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Responsividade do modal */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
        overflow-y: auto;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-width: none;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 15px;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .modal-body {
        padding: 20px;
        max-height: calc(90vh - 120px);
        overflow-y: auto;
    }
    
    .form-actions {
        flex-direction: column;
        position: sticky;
        bottom: 0;
        background: white;
        padding: 15px 20px;
        border-top: 1px solid #e2e8f0;
        margin: 0 -20px -20px -20px;
    }
    
    .form-actions .btn {
        width: 100%;
        margin: 5px 0;
    }
}

.modal-header {
    background: #1e3a8a;
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    background-color: white;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.9em;
}

.pricing-display {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    border-left: 4px solid #1e3a8a;
}

.pricing-display h4 {
    color: #1e3a8a;
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.pricing-display p {
    color: #666;
    margin: 0;
}

.pricing-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #1e3a8a;
}

.pricing-info h4 {
    color: #1e3a8a;
    margin: 0 0 10px 0;
}

.pricing-info p {
    color: #666;
    margin: 0;
}

.dns-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 15px;
    margin-top: 10px;
}

.dns-info p {
    margin: 5px 0;
    color: #856404;
    font-size: 0.9em;
}

.dns-info code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #1e3a8a;
    font-weight: bold;
}

.balance-display {
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
}

.balance-amount {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.insufficient-balance {
    color: #dc3545;
    font-weight: bold;
    font-size: 0.9em;
}

.sufficient-balance {
    color: #28a745;
    font-weight: bold;
    font-size: 0.9em;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn:disabled:hover {
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Sistema de Progresso */
.progress-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.progress-header h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.progress-header p {
    color: #666;
    font-size: 1.1em;
    font-weight: 500;
}

.progress-steps {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.progress-step {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #e2e8f0;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.progress-step.active {
    border-left-color: #1e3a8a;
    opacity: 1;
}

.progress-step.success {
    border-left-color: #28a745;
    opacity: 1;
}

.progress-step.error {
    border-left-color: #dc3545;
    opacity: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 1.2em;
    color: #ccc;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1em;
}

.step-content p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

.step-status {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-status i {
    font-size: 1em;
}

.progress-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

/* Responsividade do progresso */
@media (max-width: 768px) {
    .progress-steps {
        max-height: 300px;
    }
    
    .progress-step {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
    
    .step-content h4 {
        font-size: 0.95em;
    }
    
    .step-content p {
        font-size: 0.85em;
    }
}

/* Viewport meta tag para mobile */
@media (max-width: 480px) {
    body {
        padding: 3px;
    }
    
    .nav {
        padding: 8px;
    }
    
    .hero-card {
        padding: 15px;
    }
    
    .hero-card h1 {
        font-size: 1.5em;
    }
    
    .modal-content {
        width: 98%;
        margin: 5% auto;
    }
    
    .stats-grid {
        gap: 10px;
    }
    
    .stat-card {
        padding: 12px;
    }
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

/* Página de Manutenção */
.maintenance-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 20px;
}

.maintenance-content {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.maintenance-icon {
    font-size: 4em;
    color: #1e3a8a;
    margin-bottom: 30px;
}

.maintenance-content h1 {
    color: #1e3a8a;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.maintenance-content p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.maintenance-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #1e3a8a;
}

.maintenance-info p {
    margin: 10px 0;
    color: #333;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.maintenance-discord {
    margin-top: 20px;
}

/* Títulos */
h1 {
    color: #1e3a8a; /* Azul mais forte */
    margin-bottom: 20px;
    font-size: 2.2em;
    text-align: center;
}

h2 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.8em;
}

/* Parágrafos */
p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Formulários */
form {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px 0;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

button {
    background: #1e3a8a; /* Azul mais forte */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

button:hover {
    background: #1e40af; /* Azul ainda mais escuro no hover */
}

/* Mensagens de sucesso */
.success {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #28a745;
    font-weight: 500;
}

/* Página 404 */
.error-page {
    text-align: center;
    padding: 50px 20px;
}

.error-page h1 {
    color: #e74c3c;
    font-size: 3em;
    margin-bottom: 20px;
}

.error-page p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.error-page a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #1e3a8a;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.error-page a:hover {
    background: #1e3a8a;
    color: white;
}

/* Cards */
.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .nav {
        padding: 10px;
    }
    
    .nav a {
        display: block;
        margin: 5px 0;
        text-align: center;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    form {
        padding: 20px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Hero Section */
.hero-section {
    margin-bottom: 40px;
}

.hero-card {
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 40px;
}

.hero-card h1 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsividade do hero */
@media (max-width: 768px) {
    .hero-card {
        padding: 20px;
    }
    
    .hero-card h1 {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #5865f2;
    color: white;
}

.btn-secondary:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

/* Destaques */
.highlights-section {
    margin-bottom: 40px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Responsividade dos highlights */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-card {
        padding: 20px;
    }
}

.highlight-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.highlight-card h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
}

/* Como Funciona */
.how-it-works-section {
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

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

.step-number {
    background: #1e3a8a;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h4 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

/* Rodapé */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 30px 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer h3 {
    color: white;
    margin-bottom: 15px;
}

.footer a {
    color: #93c5fd;
    text-decoration: none;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

.disclaimer {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #fbbf24;
}

/* Página Sobre */
.about-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.about-section:last-child {
    border-bottom: none;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tech-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #1e3a8a;
}

.tech-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.tech-item h4 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.mission-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
}

.mission-item h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.cta-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Página Contato */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #1e3a8a;
}

.contact-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.contact-method h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.contact-method p {
    margin-bottom: 15px;
}

.contact-info-section {
    margin-bottom: 30px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
}

.info-card h4 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.quick-contact {
    background: #1e3a8a;
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.quick-contact h2 {
    color: white;
    margin-bottom: 15px;
}

.quick-contact .btn {
    margin-top: 20px;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}
