/* ===========================
   SEMANA DO BACHARELADO EM FÍSICA
   =========================== */

/* Fundo geral */
body {
    background: #f8fafc;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Cabeçalho */
.confTitleBox {
    background: linear-gradient(135deg,#081c3a,#123d72,#1f6fb2);
    border-top: 5px solid #f4b400;
    border-bottom: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
}

/* Título */
.conference-title-link {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    padding: 30px 0 10px;
}

.conference-title-link:hover {
    color: #f4b400;
}

/* Subtítulo */
.confSubTitleBox {
    background: white;
    border-bottom: 3px solid #f4b400;
    padding: 12px 0;
}

.confSubTitleContent {
    color: #1b365d;
    font-size: 14px;
}

/* Caixa principal */
#confSectionsBox {
    width: 1200px;
    margin: 30px auto;
}

/* ===========================
   MENU
   =========================== */

#outer {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 3px 10px rgba(0,0,0,.12);
}

.menuConfTitle a {
    color: #123d72;
    font-weight: 600;
    transition: all .3s;
}

.menuConfTitle a:hover {
    background: #eef5fb;
    color: #1f6fb2;
    padding-left: 18px;
}

.menuConfTitle.selected > a,
.menuConfMiddleCell.selected > a {
    background: #1f6fb2;
    color: white;
    border: none;
}

/* Submenu */

li ul.inner li a {
    background: none;
    padding-left: 35px;
}

li ul.inner li a:before {
    content: "▸ ";
    color: #f4b400;
}

/* ===========================
   CONTEÚDO
   =========================== */

.confBodyBox {
    margin-left: 240px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
}

/* Links */

a {
    color: #1565c0;
}

a:hover {
    color: #f4b400;
}

/* Botões */

.i-button,
input[type="submit"] {
    background: #1f6fb2;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    transition: .3s;
}

.i-button:hover,
input[type="submit"]:hover {
    background: #123d72;
}

/* Anúncios */

.simpleTextAnnouncement {
    background: linear-gradient(90deg,#123d72,#1f6fb2);
    color: white;
    border: none;
    padding: 12px;
    font-size: 15px;
}