
/* SCROLL SUAVE */
html {
    scroll-behavior: smooth;
}

/* Cores da marca */
:root {
    --azul-principal: #091226;
    --laranja: #ff7e00;
}

body {
    overflow-x: hidden ;
}

section {
    padding: 60px 0;
}

/* ------ NAVBAR INICIO ------ */
.navbar-fladu {
    background-color: var(--azul-principal);
}

.navbar-fladu .font-fw2 {
    font-weight: 200;
}

.navbar-fladu img {
    height: 45px;
}

.navbar-fladu span {
    font-weight: bold;
    font-size: 20px;
    margin-left: 10px;
}

/* Texto destaque */
.text-laranja {
    color: var(--laranja);
}
/* Navbar fim */ 

/* ------ SECTION HERO inicio ------ */
.hero-fladu{
    background-color: #f8f9fa;
    color: white;
    padding: 80px 0;
}

.hero-fladu h1 {
    font-weight: 300;
    color:#091226;
    padding-bottom: 1rem;
}

.hero-fladu h2 {
    font-weight: 300;
    color:#091226;
    padding-top: 1.5rem;
}

.hero-fladu a {
    display: inline-block;
}

.hero-fladu img {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.btn-fladu {
    background-color: var(--laranja);
    color: #ffffff;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Efeito ao passar o mouse */
.btn-fladu:hover {
    background-color: #e56f00;
    color: #ffffff; 
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2)
}
/* SECTION Hero - fim */

/* SECTION Portfólio - inicio */
.portfolio-fladu {
    background-color: #ffffff;
    padding: 60px 0;
}

.portfolio-fladu h2 {
    font-weight: bold;
}

.portfolio-fladu p {
    color: #6c757d;
}

.card-fladu {
    transition: all 0.2s ease;
}
.card-fladu:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.card-fladu .card-body{
    padding: 20px;
}

.card-fladu img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 20px;
    font-weight: 700px;
}
.card-fladu .card-body .card-title {
    font-size: 20px;
    font-weight: 600;
}

.card-fladu small {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.card-fladu .btn {
    background-color: var(--laranja);
    color: #ffffff;
    font-weight: bold;
    border-radius: 6px;
    padding: 8px 20px;
    transition: all 0.2s ease;
}

.card-fladu .btn:hover {
    background-color: #e56f00;
    transform: translateY(-2px);
}
/* Projetos - fim */

/* SOBRE - inicio */
.sobre-fladu {
    background-color: #f8f9fa;
    padding: 80px 0;
    padding-bottom: 20px;
    overflow: hidden;
    display: flow-root;
 /*   margin-bottom: -50px; */
}

.sobre-fladu h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sobre-fladu p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

.sobre-fladu img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

.frase-destaque {
    font-weight: bold;
    font-size: 18px;
    color: var(--azul-principal);
    margin-top: 20px;
}

.sobre-fladu p:last-child {
    margin-bottom: 0;
}
/* Sobre - fim */

/* CONTATO - inicio */
.contato-fladu {
    background-color: #ffffff;
    padding: 80px 0;
}

.contato-fladu h2 {
    font-size: 32px;
    font-weight: 700;
}

.contato-fladu p {
    color: #666;
}

.card-contato {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #f1f1f1;
    transition: 0.3s;
}

.card-contato:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-contato a {
    background-color: var(--laranja);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
}

.card-contato a:hover {
    background-color: #e56f00;
    transform: translateY(-2px);
}

.card-contato i {
    font-size: 40px;
    color: var(--laranja);
    margin-bottom: 10px;
}

.card-contato p {
    margin-bottom: 10px;
}


/* Contato - Fim */

/* FOOTER - inicio */
.footer-fladu {
    background-color: var(--azul-principal);
    color: #ffffff;
    padding: 25px 0;
    margin-top: 0;
}

.footer-fladu p {
    margin: 8px;
}

.footer-fladu .contato-footer {
    margin-top: 10px;
}

.footer-fladu .contato-footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 16px;
    font-size: 16px;
}

.footer-fladu .contato-footer a:hover {
    color: var(--laranja)
}

.footer-fladu i {
    margin-right: 5px;
    font-size: 18px;
}

.footer-fladu h5 {
    font-weight: 600;
    padding-top: 1rem;
}

