/* ===== RESET E ESTILOS GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding: 0;
    margin: 0;
}

/* ===== CABEÇALHO ===== */
.u-header {
    background-color: #5528f8;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.u-sheet-1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.u-text-1 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.u-section-1 {
    padding: 30px 0;
    background: white;
}

.u-image-1 {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

blockquote {
    background-color: #f8f9fa;
    border-left: 4px solid #481ce7;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

/* ===== ESTILO DAS ABAS ===== */
.u-tabs-1 {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.u-tab-list {
    display: flex;
    flex-wrap: wrap;
    background:#481ce7;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.u-tab-item {
    flex: 1;
    min-width: 80px;
}

.u-tab-link {
    display: block;
    padding: 12px 5px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    background: transparent;
    font-size: 0.9rem;
}

.u-tab-link:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.u-tab-link.active {
    background: rgba(255,255,255,0.15);
    border-bottom: 3px solid #7c60e4;
    color: white;
    font-weight: bold;
}

/* ===== CONTEÚDO DAS ABAS ===== */
.u-tab-content {
    padding: 25px;
}

.u-container-layout {
    padding: 10px 0;
}

.u-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.u-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.u-container-layout p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Estilo para títulos dentro das abas */
.u-container-layout p span[style*="font-weight: 700"] {
    display: block;
    color: #481ce7;
    font-size: 1.3rem;
    margin: 15px 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 2px solid #eaeaea;
}

/* Estilo para citações em itálico */
.u-container-layout p i {
    display: block;
    background-color: #f0f7f0;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #481ce7;
    font-style: italic;
    color: #444;
    border-radius: 0 4px 4px 0;
}

/* Estilo para referências */
.u-container-layout p:last-child {
    background-color: #f0f8ff;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    
}

/* ===== LINKS ===== */
a {
    color: #e73a1c;
    text-decoration: none;
}

a:hover {
    color: #d35400;
    text-decoration: underline;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .u-text-1 {
        font-size: 1.5rem;
    }
    

    
    .u-tab-item {
        width: 100%;
    }
    
    .u-tab-link {
        padding: 10px;
        text-align: left;
        padding-left: 20px;
    }
    
    .u-tab-content {
        padding: 15px;
    }
    
    .u-container-layout p span[style*="font-weight: 700"] {
        font-size: 1.2rem;
    }
}

/* Estilos para títulos */
h3, h5 {
    color:#481ce7;
    margin: 15px 0;
    text-align: center;
}

h3 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.1rem;
  
    color: #666;
}

/* Seção final */
.u-section-2 {
    padding: 20px 0;
    background-color: #f8f9fa;
    text-align: center;
    color: #666;
}