/* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}



/* =========================
   SEARCH BAR
========================= */

.search-box{
  position:relative;
  display:flex;
  align-items:center;
  margin-right:20px;
}

.search-box input{
  width:260px;
  padding:12px 45px 12px 18px;
  border:none;
  outline:none;
  border-radius:40px;
  background:#fff;
  color:#222;
  font-size:15px;
  transition:.2s;
}

.search-box input:focus{
  box-shadow:0 0 0 3px rgba(255,255,255,0.25);
}

.search-box input::placeholder{
  color:#777;
}

.search-icon{
  position:absolute;
  right:15px;
  color:#666;
  font-size:22px;
}

/* MOBILE SEARCH */

.mobile-search-item{
  width:100%;
  padding:20px;
}

.mobile-search{
  width:100%;
}

.mobile-search input{
  width:100%;
}

/* RESPONSIVO */

@media(max-width: 900px){

  .search-box input{
    width:200px;
  }

}

@media(max-width: 600px){

  .search-box{
    display:none;
  }

  .mobile-search{
    display:flex;
  }

}

body{
  font-family: Arial, Helvetica, sans-serif;
  background:#f5f7fa;
  color:#222;
  line-height:1.8;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

/* HEADER */

.topbar{
  width:100%;
  background:#274074;
  color:#fff;
  padding:18px 0;
}

.topbar-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  
}

.logo{
  
  font-size:24px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;

}

.logo img{
  width:130px;
  height:130px;
  object-fit:contain;
}

.menu{
  display:flex;
  justify-content: flex-end;
 
  
}

.menu ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu li{
  height: 60px;
}

.aparece{
  display: none;
}

.menu a{
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #fff;
}

.menu .mobile{
  
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  z-index: 999;
  background-color: rgba(3, 9, 31, 0.523);
  box-shadow: -10px 0 10px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  backdrop-filter: blur(10px);
}

.menu a:hover{
  opacity:1;
}



/* FOOTER */

footer{
  margin-top:60px;
  background:#274074;
  color:#fff;
  padding:40px 0;
  text-align:center;
  font-size:15px;
}

/* =========================
   HOME PAGE
========================= */

.home-page{
  padding:40px;
}

.home-container{
  max-width:1200px;
  margin:auto;
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);

  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:40px;
}

.hero-image-home{
  width:100%;
  height:320px;
  border-radius:8px;
  overflow:hidden;
  margin-bottom:28px;
  background:#ddd;
}

.hero-image-home img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.main-title{
  font-size:42px;
  line-height:1.2;
  font-weight:700;
  margin-bottom:22px;
  color:#1f1f1f;
}

.description{
  color:#666;
  font-size:18px;
  margin-bottom:40px;
  line-height:1.6;
}

.author{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#888;
  font-size:15px;
  border-top:1px solid #eee;
  padding-top:20px;
}

.sidebar-title{
  font-size:22px;
  font-weight:700;
  margin-bottom:25px;
  padding-bottom:12px;
  border-bottom:2px solid #ff0000;
}

.post-list{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.post-item{
  border-bottom:1px solid #eee;
  padding-bottom:18px;
}

.post-item:last-child{
  border-bottom:none;
}

.post-title{
  font-size:17px;
  font-weight:600;
  line-height:1.5;
  margin-bottom:10px;
  transition:0.2s;
}

.post-title:hover{
  color:#ff5a1f;
}

.post-meta{
  display:flex;
  justify-content:space-between;
  color:#888;
  font-size:14px;
}

/* =========================
   ARTICLE PAGE
========================= */

.article-container{
  width:90%;
  max-width:1200px;
  margin:40px auto;

  display:grid;
  grid-template-columns: 2fr 340px;
  gap:40px;
}

.article{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 25px rgba(0,0,0,0.06);
}

.hero-image{
  width:100%;
  height:420px;
  overflow:hidden;
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.article-content{
  padding:45px;
}

.category{
  display:inline-block;
  background:#fff1eb;
  color:#ff5a1f;
  font-size:13px;
  font-weight:700;
  padding:8px 14px;
  border-radius:30px;
  margin-bottom:22px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

h1{
  font-size:46px;
  line-height:1.2;
  margin-bottom:20px;
  color:#111827;
}

.article-meta{
  display:flex;
  gap:18px;
  color:#777;
  font-size:14px;
  margin-bottom:35px;
  padding-bottom:25px;
  border-bottom:1px solid #eee;
}

.intro{
  font-size:20px;
  color:#444;
  margin-bottom:40px;
}

h2{
  margin-top:50px;
  margin-bottom:18px;
  font-size:32px;
  line-height:1.3;
  color:#111827;
}

p{
  margin-bottom:22px;
  color:#444;
  font-size:18px;
}

ul{
  padding-left:22px;
  margin-bottom:30px;
}

li{
  margin-bottom:14px;
  color:#444;
  font-size:18px;
}

strong{
  color:#111827;
}

/* ADS */

.ad-banner{
  width:100%;
  min-height:140px;
  border:2px dashed #d6d6d6;
  background:#fafafa;
  border-radius:12px;

  display:flex;
  justify-content:center;
  align-items:center;

  color:#888;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;

  margin:45px 0;
}

.ad-large{
  min-height:280px;
}

/* SIDEBAR */

.sidebar{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.sidebar-card{
  background:#fff;
  padding:28px;
  border-radius:14px;
  box-shadow:0 4px 25px rgba(0,0,0,0.05);
}

.sidebar-card h3{
  margin-bottom:20px;
  font-size:22px;
  color:#111827;
}

.related-post{
  padding:16px 0;
  border-bottom:1px solid #eee;
}

.related-post:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.related-post a{
  font-weight:600;
  line-height:1.5;
  transition:.2s;
}

.related-post a:hover{
  color:#ff5a1f;
}

/* CTA */

.cta-box{
  margin-top:60px;
  background:#111827;
  color:#fff;
  padding:40px;
  border-radius:14px;
}

.cta-box h3{
  font-size:32px;
  margin-bottom:16px;
}

.cta-box p{
  color:#d1d5db;
  margin-bottom:24px;
}

.cta-button{
  display:inline-block;
  background:#ff5a1f;
  color:#fff;
  padding:14px 28px;
  border-radius:8px;
  font-weight:700;
  transition:.2s;
}

.cta-button:hover{
  background:#e14d17;
}

/* RESPONSIVO */

@media(max-width: 1000px){

  .article-container,
  .home-container{
    grid-template-columns:1fr;
  }

  h1{
    font-size:36px;
  }

  .main-title{
    font-size:32px;
  }

  .article-content{
    padding:28px;
  }

}

@media(max-width: 600px){

  .some{
    display:none;
  }

  .aparece{
  display: block;
  }

  h1{
    font-size:30px;
  }

  h2{
    font-size:25px;
  }

  p, li{
    font-size:17px;
  }

  .hero-image{
    height:260px;
  }

  .home-page{
    padding:20px;
  }

}

/* =========================
   ABOUT PAGE
========================= */

.about-page{
  width:100%;
}

.about-hero{
  background:#ff5a1f;
  color:#fff;
  padding:90px 20px;
  margin-top: 120px;
}

.about-hero-content{
  width:90%;
  max-width:1000px;
  margin:auto;
  text-align:center;
}

.about-badge{
  display:inline-block;
  background:#ff5a1f;
  color:#fff;
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:24px;
}

.about-hero h1{
  color:#fff;
  font-size:52px;
  line-height:1.15;
  margin-bottom:24px;
}

.about-hero p{
  color:#d1d5db;
  font-size:20px;
  max-width:760px;
  margin:auto;
}

.about-container{
  width:90%;
  max-width:1200px;
  margin:60px auto;

  display:grid;
  grid-template-columns: 2fr 340px;
  gap:40px;
}

.about-content{
  background:#fff;
  padding:50px;
  border-radius:14px;
  box-shadow:0 4px 25px rgba(0,0,0,0.05);
}

.about-content h2{
  margin-top:0;
}

.about-highlight{
  background:#fff7f3;
  border-left:5px solid #ff5a1f;
  padding:30px;
  border-radius:12px;
  margin:40px 0;
}

.about-highlight h3{
  margin-bottom:18px;
  color:#111827;
  font-size:24px;
}

.about-sidebar{
  display:flex;
  flex-direction:column;
  gap:30px;
}

/* RESPONSIVO */

@media(max-width: 1000px){

  .about-container{
    grid-template-columns:1fr;
  }

  .about-hero h1{
    font-size:40px;
  }

}

@media(max-width: 600px){

  .about-content{
    padding:28px;
  }

  .about-hero{
    padding:70px 20px;
  }

  .about-hero h1{
    font-size:32px;
  }

  .about-hero p{
    font-size:18px;
  }

}

/* =========================
   ARTICLES PAGE
========================= */

.articles-hero{
  background:#111827;
  color:#fff;
  padding:90px 20px;
}

.articles-hero-content{
  width:90%;
  max-width:1000px;
  margin:auto;
  text-align:center;
}

.articles-badge{
  display:inline-block;
  background:#ff5a1f;
  color:#fff;
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:24px;
}

.articles-hero h1{
  color:#fff;
  font-size:52px;
  line-height:1.15;
  margin-bottom:24px;
}

.articles-hero p{
  color:#d1d5db;
  font-size:20px;
  max-width:760px;
  margin:auto;
}

.articles-container{
  width:90%;
  max-width:1200px;
  margin:60px auto;

  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:32px;
}

.article-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 4px 25px rgba(0,0,0,0.06);
  transition:.25s;
}

.article-card:hover{
  transform:translateY(-6px);
}

.article-card-image{
  width:100%;
  height:220px;
  overflow:hidden;
}

.article-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.article-card-content{
  padding:28px;
}

.article-category{
  display:inline-block;
  background:#fff1eb;
  color:#ff5a1f;
  font-size:12px;
  font-weight:700;
  padding:7px 14px;
  border-radius:30px;
  margin-bottom:18px;
  text-transform:uppercase;
}

.article-card-content h2{
  font-size:28px;
  line-height:1.3;
  margin-bottom:16px;
  color:#111827;
}

.article-card-content p{
  color:#666;
  margin-bottom:26px;
  font-size:17px;
}

.article-card-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.article-date{
  color:#888;
  font-size:15px;
}

.article-button{
  display:inline-block;
  background:#ff5a1f;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  font-weight:700;
  transition:.2s;
}

.article-button:hover{
  background:#e14d17;
}

@media(max-width: 700px){

  .articles-hero{
    padding:70px 20px;
  }

  .articles-hero h1{
    font-size:34px;
  }

  .articles-hero p{
    font-size:18px;
  }

  .article-card-content{
    padding:22px;
  }

  .article-card-content h2{
    font-size:24px;
  }

  .article-card-footer{
    flex-direction:column;
    align-items:flex-start;
  }

}/* =========================
   FAQ SECTION
========================= */

.faq-section{
  width:90%;
  max-width:1200px;
  margin:80px auto;
}

.faq-container{
  background:#fff;
  border-radius:18px;
  padding:50px;
  box-shadow:0 4px 25px rgba(0,0,0,0.06);
}

.faq-header{
  text-align:center;
  margin-bottom:50px;
}

.faq-badge{
  display:inline-block;
  background:#fff1eb;
  color:#ff5a1f;
  padding:8px 16px;
  border-radius:30px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:22px;
}

.faq-header h2{
  margin-top:0;
  font-size:42px;
  color:#111827;
  margin-bottom:18px;
}

.faq-header p{
  max-width:700px;
  margin:auto;
  color:#666;
  font-size:18px;
}

.faq-grid{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq-item{
  border:1px solid #ececec;
  border-radius:14px;
  overflow:hidden;
  transition:.2s;
}

.faq-item.active{
  border-color:#ff5a1f;
}

.faq-question{
  width:100%;
  background:#fff;

  border:none;
  outline:none;

  padding:24px 28px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  cursor:pointer;

  font-size:18px;
  font-weight:700;
  color:#111827;

  transition:.2s;
}

.faq-question:hover{
  background:#fff7f3;
}

.faq-question span{
  font-size:28px;
  color:#ff5a1f;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}

.faq-answer p{
  padding:0 28px 28px;
  margin:0;
  color:#555;
  font-size:17px;
  line-height:1.7;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

/* RESPONSIVO */

@media(max-width:700px){

  .faq-container{
    padding:28px;
  }

  .faq-header h2{
    font-size:32px;
  }

  .faq-header p{
    font-size:17px;
  }

  .faq-question{
    font-size:16px;
    padding:20px;
  }

  .faq-answer p{
    padding:0 20px 20px;
    font-size:16px;
  }

}


