@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root{
    --logo-blue: #01349f;     
    --blue-primary: #00235B; 
    --blue-dark: #14173A;     
    --gold: #FFCC00;  
    --blue-light: #f3f6fc;
    --gold-dark:   #c9a000;
    --cream: #f8f6f1;
    --white: #ffffff;
    --text-dark: #111827;
    --text-mid: #374151;
}

html{
    scroll-behavior:smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    width: 100%;
}

.navb a{
    text-decoration: none;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 5px 4px;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1.8px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
    position: relative;
    display: inline-block;
}

.navb a::after {
  content: '';
  position: absolute;
  bottom: -5px; 
  left: 0;
  width: 0; 
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}

.navb a:hover { 
    color: var(--white); 
}

.navb a:hover::after { 
    width: 100%; 
}

#header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    left: 0;
    top: 0;
    right: 0;

    background: 
    radial-gradient(circle at 20% 30%, rgba(255,204,0,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06), transparent 40%),
    linear-gradient(135deg, #000428 0%, #001f5c 40%, #000010 100%);
}

.particles { 
    position: absolute; 
    inset: 0; 
    pointer-events: none; 
}

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) translateX(0px); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-10vh) translateX(30px); opacity: 0; }
}

.p1{
    font-family: 'Montserrat', sans-serif;
    color: rgb(219, 219, 219);
    font-weight: 450;
    font-size: 0.9rem;
    text-align: center;
    max-width: 90%;
    width: 500px;
    line-height: 1.65;
    position: absolute;
    top: 450px;
    opacity: 1;
    font-style: italic;
    animation: fadeUp 0.9s 0.85s forwards;
}



.botoes{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.foto1{
    width: 420px;
    height: 320px;
    object-fit: cover;
    margin-bottom: 100px;
}

@media (min-width: 768px) {
    .p1{
        top: 430px;
    }

    .foto1{
        margin-bottom: 50px;
    }
    
    .navmobile{
        display: none;
    }
}

nav{
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 40px;
    background: rgba(0, 11, 49, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    height: auto;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px;
}

nav.active{
    right: 0;
    transition: 0.5s ease;
}


.menu-btn{
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: fixed;
    top: 17px;
    right: 20px;
    z-index: 1000;
}

.menu-btn span{
    width:100%;
    height:3px;
    background:#ffffff;
    border-radius:3px;
    transition:0.3s ease;
}

.menu-btn:hover span{
    background: rgba(255,255,255,0.1);
    background: var(--gold);
}

#doubt, #inicio, #contact{
    display: none;
}


.menu-btn.active span:first-child{
    transform: rotate(45deg) translateY(13px);
}

.menu-btn.active span:nth-child(2){
    opacity: 0;
}

.menu-btn.active span:last-child{
    transform: rotate(-45deg) translateY(-14px);
}

@media (min-width: 768px){
    nav{
        position: fixed;
        display: flex;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        gap: 50px;
        transition: 0.7s ease;
        background-color: transparent;
        border: none;
    }

    nav.scrolled {
        background: rgba(10, 15, 46, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 2px 32px rgba(0, 0, 0, 0.4);
        padding: 14px 56px;
    }

    #doubt, #contact{
        display: block;
    }
    
    .menu-btn{
        display: none;
    }
    
    .butoes{
        display: none;
    }
}

.nav-logo {
    position: static;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; 
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    left: 0px;
    top: 0px;
    z-index: 2001;
}

.nav-logo span {
    color: var(--gold);
}

.navmobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    height: 60px;
    z-index: 2000;
}

.navmobile.scrolled{
    background-color: #000428;
}


@media (min-width: 768px) {
    .navmobile {
        display: none;
    }

    .nav-logo {
        font-size: 2rem;
        position: fixed;
        top: 0;
        left: 20px;
    }

    .p1{
        font-family: 'Montserrat', sans-serif;
        color: rgb(255, 255, 255);
        font-weight: 450;
        font-size: 0.9rem;
        text-align: center;
        max-width: 90%;
        width: 500px;
        line-height: 1.65;
        position: absolute;
        margin-top: 30px;
        opacity: 1;
        animation: fadeUp 0.9s 0.85s forwards;
    }

    .botoes{
        margin-top: 50px;
    }
}

.entre {
    height: 45px;
    width: 230px;
    text-wrap: wrap;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #cccccc;
    color: var(--blue-dark);
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-top: -20px;
    transition: all 0.3s ease;
    text-align: center;
}

.entre:hover{
    background-color: #e6b800;
    box-shadow: 0 8px 25px 0 rgba(255, 204, 0, 0.4);
    transform: translateY(-5px);
}


.icons{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px 10px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    gap: 30px;

}

.icons img{
    width: 30px;
    height: 30px;
    object-fit: cover;
}

header{
    min-height: 1200px;
}

section{
    width: 100%;
    padding: 100px 20px;
}

section:nth-child(even){
    background:#ffffff;
}

.menumobile {
  display: none;
  position: fixed;
  background: var(--navy-deep);
  z-index: 998;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  opacity: 0;
  transition: 0.3s;
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(8px);
  top: 0;
  width: 100%;
  height: 100%;
}

.menumobile[style*="flex"] {
  display: flex;
  opacity: 1;
}

.mob-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.25s;
}

.mob-link:hover { 
    color: var(--gold); 
}

.mob-cta {
  font-size: 18px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 14px 36px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

#servicos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #c5c5c5, #b9b9b9);
}

.servicos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.servico-card {
  background: rgba(255, 255, 255, 0.945);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(10px);
  border-radius: 14px;
  transition: all 0.2s ease;
}
 
.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0; 
  left: 0; 
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.servico-card:hover::after { transform: scaleX(1); }
 
.servico-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 204, 0, 0.18);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
 
.servico-icon {
  background: var(--logo-blue);
  border-radius: 12px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 22px;
  width: 60px;
  height: 60px;
  font-size: 26px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.servico-card:hover .servico-icon {
  background: var(--blue-dark);
  transform: scale(1.1);
}
 
.servico-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.servico-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.9);
}
 
@media (max-width: 900px) {
  .servicos-grid { grid-template-columns: 1fr; }
  #servicos { padding: 80px 24px; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
}

.container{
    max-width: 1100px;
    width: 90%;
    margin-top: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 60px;
}

section h2{
    text-align:center;
    font-size: 34px;
    color: #ffffff;
    background-color: #00235B;
    max-width: 500px;
    padding: 10px 40px;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-transform: uppercase;
    margin: 0 auto;
    position: relative;
    top: 20px;
}

#sobre-mim{
    background: linear-gradient(135deg, #000428 0%, #001f5c 40%, #000010 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.flexdir{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 40px;
    margin-top: -20px;
}

#frame{
    border-radius: 8px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    background: linear-gradient(180deg, #ffffff, #b9b9b9);
}

.foto{
    display: flex;
    position: relative;
}

.fad{
    width: 240px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.15);
}

.sobre-badge {
    position: absolute;
    bottom: -24px; right: -14px;
    background: var(--blue-dark);
    color: var(--white);
    padding: 18px 22px;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 14px 40px rgba(0, 35, 91, 0.4);
    text-align: center;
    min-width: 110px;
}

.sobre-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.sobre-badge .lbl {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 6px;
    line-height: 1.4;
}

.topicos{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    overflow: hidden;
}

.topicos li{
    background-color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 5px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
    padding: 14px 18px 14px 40px;
    color: var(--blue-dark);
    transition: transform 0.25s ease;
    opacity:0;
    transition: all 0.8s ease;
}

.topicos.show li{
    transform: translateX(0);
    opacity:1;
}

.topicos li:nth-child(1){ transition-delay:0.1s; }
.topicos li:nth-child(2){ transition-delay:0.25s; }
.topicos li:nth-child(3){ transition-delay:0.4s; }
.topicos li:nth-child(4){ transition-delay:0.55s; }
.topicos li:nth-child(5){ transition-delay:0.7s; }

.topicos li::before{
    content: "✔";
    position:absolute;
    left:0;
    left: 14px;
    top: 14px;
    font-weight: bold;
    color: var(--gold);
}

.topicos li:hover{
    transform: translateY(-4px);
}

#sobre_desk{
    display: none;
}

@media (min-width: 768px) {
    .flexdir{
        display: flex;
        flex-direction: row;
    }

    .fad{
        width: 340px;
        height: 420px;
        transform: translateX(-80px);
        opacity:0;
        transition: all 0.8s ease;
    }

    .topicos li{
        transform: translateX(80px);
        opacity:0;
        transition: all 0.8s ease;
    }

    .fad.show{
        transform: translateX(0);
        opacity:1;
    }

    .topicos.show li{
        transform: translateX(0);
        opacity:1;
    }

    #sobre_mobile{
        display: none;
    }

    #sobre_desk{
        display: inline;
    }
}

#stats {
    width: 100%;
    padding: 80px 20px;

    background: #ccc;
    color: white;

    display: flex;
    justify-content: center;
}

.stats-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;

    width: 100%;
    max-width: 900px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
}

.stat-num {
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: 'Cormorant Garamond', serif;
}


#conteudos{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #000428, #001f5c);
}

.videos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

#thumb{
    width: 360px;
    height: 220px;
    border-radius: 8px;
    object-fit: cover;
}


.video{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition:transform 0.3s ease;
}

.video:hover{
    transform:scale(1.04);
}

.video.bloqueado::after {
    display: none;
}

.video.bloqueado {
    pointer-events: none;
}

.video {
    position: relative;
    display: block;
    width: fit-content;
}

.thumb {
    display: block;
    width: 100%;
}

.embreve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(6px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 8px;
}

.embreve p {
    background: rgba(0,0,0,0.8);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.video[href="#"] {
    pointer-events: none;
}

@media (min-width: 768px) {
    #thumb{
        width: 900px;
        height: 400px;
        border-radius: 8px;
        object-fit: cover;
    }

    .videos{
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .video{
        width: 700px;
        height: 350px;
    }
}

#faq{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 50px;
    background: linear-gradient(180deg, #ffffff, #b9b9b9);
}

.faq-item {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.faq-question {
    width: 100%;
    padding: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border: none;
    background: none;
    cursor: pointer;

    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.icon {
    font-size: 22px;
    transition: 0.3s;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.box .texto{
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
}


#contato{
    background: var(--blue-primary);
    color:white;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.contato-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: 900px;
    text-align: center;
}

@media (min-width: 768px) {
    .contato-box {
        grid-template-columns: 1fr 1fr;
    }
}

.contato-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contato-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--gold-dark);
    text-align: center;
}

.contato-info p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
    text-align: center;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contato-form input,
.contato-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.contato-form textarea {
    min-height: 120px;
}

.contato-form button {
    background: var(--gold);
    color: var(--blue-dark);
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.contato-form button:hover {
    background: var(--gold-dark);
}

footer{
    background: var(--blue-primary);
    color:white;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 28px 56px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

footer strong { color: rgba(255, 255, 255, 0.55); }


