@import url('fonts.css');


.font-family-regular{
    font-family: 'TTNorms' !important;
}
.font-family-bold{
    font-family: 'TTNorms Bold' !important;
}
.font-family-extrabold{
    font-family: 'TTNorms ExtraBold' !important;
}
.font-family-medium{
    font-family: 'TTNorms Medium' !important;
}
.font-family-heavy{
    font-family: 'TTNorms Heavy' !important;
}
.font-family-light{
    font-family: 'TTNorms Light' !important;
}
.font-family-thin{
    font-family: 'TTNorms Thin' !important;
}


/* * {
    font-family: 'TTNorms Light' !important;
} */


/* Estilos Gerais */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'TTNorms Light';
    color: var(--text-color);
    line-height: 1.6;


    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none; /* Suporte para Safari/Chrome antigos */
    font-feature-settings: "liga" 0, "clig" 0; /* Desativa ligaduras padrão e contextuais */
}

.text-justify{
    text-align: justify;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: #0a2342;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #F28B6C !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #0a2342;
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
    }

    .navbar-nav {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Hero Section */
.hero-section {
    padding: 150px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.hero-section .btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
}

.sobre-section, .programacao-section, .expositores-section, .contato-section {
    padding: 100px 0;
}

.sobre-section {
    background-color: var(--light-bg);
}

/* Contato Section */
.contact-info {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Footer */
.footer {
    background: #0a2342;
    position: relative;
    overflow: hidden;
}
.footer-bg-ondas {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 1;
}
.footer-brand-text {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}
.footer-title {
    color: #3cffb4;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}
.footer-link {
    color: #b0e6d2;
    text-decoration: none;
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social-link {
    color: #3cffb4;
    font-size: 1.3rem;
    transition: color 0.2s;
}
.footer-social-link:hover {
    color: #fff;
}
@media (max-width: 991px) {
    .footer-brand-text { text-align: center; }
    .footer-title { text-align: center; }
}
@media (max-width: 767px) {
    .footer { padding-top: 2rem; padding-bottom: 1rem; }
    .footer-title { font-size: 1rem; }
    .footer-link { font-size: 0.95rem; }
    .footer-social-link { font-size: 1.1rem; }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

.bg-dark-blue {
    background-color: #0a2342 !important;
}

.header .navbar, .header .navbar-nav .nav-link {
    color: #fff !important;
}

.header .navbar-nav .nav-link.btn-inscricoes {
    background: #ff5e5b;
    color: #fff !important;
    border-radius: 20px;
    padding: 6px 22px;
    font-weight: 600;
    margin-left: 10px;
    margin-right: 10px;
    transition: background 0.2s;
}

.header .navbar-nav .nav-link.btn-inscricoes:hover {
    background: #ff8c42;
    color: #fff !important;
}

.header .navbar-brand img {
    max-height: 42px;
}

/* Fases da FEICE */
.fases-section {
    background: #0a2342;
    position: relative;
    overflow: hidden;
}
.fases-section .section-title {
    color: #fff;
}
.text-green {
    color: #3cffb4;
    font-weight: 700;
}
.fase-card {
    background: #162447;
    border: none;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.fase-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(60,255,180,0.15);
}
/* .fase-card.fase-1 { border-top: 6px solid #3cffb4; } */
/* .fase-card.fase-2 { border-top: 6px solid #4db8ff; } */
/* .fase-card.fase-3 { border-top: 6px solid #7cffb4; } */
/* .fase-card.fase-4 { border-top: 6px solid #ff8c42; } */
.fase-icon img {
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px 0 rgba(60,255,180,0.10);
}
.fases-bg {
    left: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0.7;
}
@media (max-width: 991px) {
    .fase-card { min-height: 260px; }
}
@media (max-width: 767px) {
    .fase-card {
        min-height: 100px;
        /* width: 60%; */
    }
    .fases-section {
        padding-bottom: 40px;
    }
}

.hero-bg-ondas, .fases-bg-ondas {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 1;
}
.hero-main-img {
    max-width: 350px;
    z-index: 2;
    position: relative;
}
.hero-logo-vertical {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 180px;
    z-index: 3;
}
.laptop-trilha {
    max-width: 400px;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.fases-cubo-esferas {
    right: 0;
    bottom: 0;
    max-width: 300px;
    z-index: 2;
    pointer-events: none;
}
@media (max-width: 991px) {
    .hero-main-img { max-width: 220px; }
    .hero-logo-vertical { max-width: 120px; }
    .fases-cubo-esferas { max-width: 180px; }
    .laptop-trilha { max-width: 250px; }
}
@media (max-width: 767px) {
    .hero-main-img { max-width: 160px; }
    .hero-logo-vertical { max-width: 90px; }
    .fases-cubo-esferas { max-width: 100px; }
    .laptop-trilha { max-width: 160px; }
}

.documentos-section {
    background: #0a2342;
    position: relative;
    overflow: hidden;
}
.documentos-bg-ondas {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 1;
}
.documentos-section .section-title {
    color: #fff;
}
.documentos-section .btn-outline-info {
    border-color: #3cffb4;
    color: #3cffb4;
    font-weight: 600;
    background: transparent;
    transition: background 0.2s, color 0.2s;
}
.documentos-section .btn-outline-info:hover {
    background: #3cffb4;
    color: #0a2342;
}
.documentos-section .table {
    background: rgba(22,36,71,0.95);
    border-radius: 16px;
    overflow: hidden;
}
.documentos-section .table td {
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    border: none;
}
.documentos-section .text-info {
    color: #3cffb4 !important;
    font-weight: 500;
    text-decoration: underline;
}
.documentos-section .btn-success {
    background: #3cffb4;
    color: #0a2342;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2rem;
    transition: background 0.2s, color 0.2s;
}
.documentos-section .btn-success:hover {
    background: #2be6a0;
    color: #0a2342;
}
.documentos-subtitle {
    color: #3cffb4;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.documentos-desc {
    color: #b0e6d2;
    font-size: 1.1rem;
}
.documentos-section .list-group-item {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.08rem;
    padding: 1.1rem 0.5rem 1.1rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 0.2rem;
    transition: background 0.2s;
}
.documentos-section .list-group-item:hover {
    background: rgba(60,255,180,0.08);
}
.documentos-section .text-info {
    color: #3cffb4 !important;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.2s;
}
.documentos-section .text-info:hover {
    color: #fff !important;
}
.documentos-section .fa-download {
    font-size: 1.3rem;
    margin-left: 10px;
}
@media (max-width: 991px) {
    .documentos-section .list-group-item {
        font-size: 0.98rem;
        padding: 0.8rem 0.5rem 0.8rem 1rem;
    }
}
@media (max-width: 767px) {
    .documentos-section .list-group-item {
        font-size: 0.92rem;
        padding: 0.7rem 0.3rem 0.7rem 0.7rem;
    }
    .documentos-section .btn-success {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

.como-surgiu-section {
    background: #0a2342;
    position: relative;
    overflow: hidden;
}
.como-surgiu-bg-ondas {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 1;
}
.como-surgiu-section .section-title {
    color: #fff;
}
.como-surgiu-section .text-green {
    color: #3cffb4;
    font-weight: 700;
}
.como-surgiu-cubo-esferas {
    max-width: 350px;
    width: 100%;
    z-index: 2;
    position: relative;
}
@media (max-width: 991px) {
    .como-surgiu-cubo-esferas { max-width: 200px; }
}
@media (max-width: 767px) {
    .como-surgiu-cubo-esferas { max-width: 120px; }
    .como-surgiu-section .section-title { font-size: 2rem; }
}

/* Responsividade Geral */
@media (max-width: 991px) {
    /* .hero-feice-bg-section {
        min-height: 100vh !important;
    } */

    .hero-feice-bg-section .container {
        padding-top: 100px;
    }

    .como-surgiu-feice-section h1 {
        font-size: 6rem !important;
    }

    .como-surgiu-feice-section h2 {
        font-size: 2.5rem !important;
    }

    .documentos-feice-section .list-group-item {
        font-size: 0.9rem;
    }

    .documentos-feice-section .btn {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 767px) {
    .hero-feice-bg-section {
        text-align: center;
    }

    .hero-feice-bg-section .d-flex {
        justify-content: center;
    }

    .como-surgiu-feice-section h1 {
        font-size: 4rem !important;
    }

    .como-surgiu-feice-section h2 {
        font-size: 2rem !important;
    }

    .como-surgiu-feice-section p {
        font-size: 1rem !important;
    }

    .documentos-feice-section .list-group-item {
        font-size: 0.8rem;
    }

    .documentos-feice-section .btn {
        font-size: 1rem !important;
        padding: 0.5rem 1.5rem !important;
    }

    .footer-feice-section {
        text-align: center;
    }

    .footer-feice-section .col-lg-4,
    .footer-feice-section .col-lg-2,
    .footer-feice-section .col-lg-3 {
        margin-bottom: 2rem;
    }
}


.ml-10{
    margin-left: 10%;
}
.ml-15{
    margin-left: 15%;
}
.ml-30{
    margin-left: 30%;
}
.float-right{
    float:right;
}



/* ----------------- xxxxx xxxxx xxxxx xxxxx------------------ */

@media screen and (min-width: 1024px) {
    .hero-feice-bg-section{
        min-height: 150vh;
        background-image: url('../images/bg-hero-feice.png');
        background-size: cover;
        background-position: right;
        background-color: #090922;
    }

    .logo-feice-vertical {
        width: 100%;
    }

    .elements-hero{
        min-height: 120vh;
    }

    .display-desktop{
        display: block;
    }

    .display-mobile{display: none;}
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-feice-bg-section{
        min-height: 100vh;
        background-color: #090922;
    }

    .logo-feice-vertical{
        width: 100%;
    }

    .elements-hero{
        min-height: 100vh;
    }

    .display-desktop{display: block;}
    .display-mobile{display: none;}
}

@media (min-width: 540px) and (max-width: 767px) {
    .hero-feice-bg-section{
        min-height: 100vh;
        background-color: #090922;
    }

    .logo-feice-vertical{
        width: 100%;
    }

    .elements-hero{
        min-height: 90vh;
    }

    .display-desktop{display: none;}
    .display-mobile{display: block;}

    .titulo1-fases{
        font-size:3.0rem;
        font-weight:400;
        line-height:1.1;
    }

    .titulo2-fases{
        font-size:3.0rem;
        color:#00F0B5;
    }
}

@media (min-width: 420px) and (max-width: 539px) {
    .hero-feice-bg-section{
        min-height: 100vh;
        background-color: #090922;
    }

    .logo-feice-vertical{
        width: 100%;
    }

    .elements-hero{
        min-height: 80vh;
    }

    .display-desktop{display: none;}
    .display-mobile{display: block;}

    .titulo1-fases{
        font-size:2.5rem;
        font-weight:400;
        line-height:1.1;
    }

    .titulo2-fases{
        font-size:2.5rem;
        color:#00F0B5;
    }
}

@media (max-width: 419px) {
    .hero-feice-bg-section{
        min-height: 100vh;
        background-color: #090922;
    }

    .logo-feice-vertical{
        width: 100%;
    }

    .elements-hero{
        min-height: 80vh;
    }

    .display-desktop{display: none;}
    .display-mobile{display: block;}

    .titulo1-fases{
        font-size:2.5rem;
        font-weight:400;
        line-height:1.1;
    }

    .titulo2-fases{
        font-size:2.5rem;
        color:#00F0B5;
    }
}

/* ----------------- xxxxx xxxxx xxxxx xxxxx------------------ */
