html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit;margin:0;padding:0}

:root{
  --gc-brand:#0D5C63;
  --gc-highlight:#F2B705;
  --gc-deep:#083D42;
  --gc-surface:#EEF5F6;
  --gc-copy:#3D3D3D;
  --gc-muted:#7A7A7A;
  --gc-stroke:#E0E0E0;
}

body{
  font-family:'Cabin',sans-serif;
  font-weight:400;
  color:var(--gc-copy);
  line-height:1.75;
  background:#fff;
}

h1,h2,h3,h4{font-family:'Sora',sans-serif;line-height:1.3}

a{color:var(--gc-brand);text-decoration:none;transition:color .25s}
a:hover{color:var(--gc-deep)}

img{max-width:100%;height:auto;display:block;border-radius:10px}

ul{list-style:none}

.gc-container{max-width:1160px;margin:0 auto;padding:0 1.25rem}

/* ── Header ── */
.gc-header{
  position:fixed;top:0;left:0;width:100%;z-index:100;
  height:68px;
  background:rgba(255,255,255,.95);
  border-bottom:1px solid var(--gc-stroke);
  transition:box-shadow .3s;
}
.gc-header-fixed{box-shadow:0 2px 12px rgba(0,0,0,.08)}

.gc-header-inner{
  display:flex;align-items:center;justify-content:space-between;height:68px;
}

.gc-logo{
  font-family:'Sora',sans-serif;font-weight:700;font-size:1.15rem;
  color:var(--gc-brand);white-space:nowrap;
}

.gc-nav{display:flex;gap:28px}
.gc-nav a{font-size:.95rem;font-weight:600;color:var(--gc-copy)}
.gc-nav a:hover{color:var(--gc-brand)}

.gc-burger{
  display:none;background:none;border:none;cursor:pointer;
  flex-direction:column;gap:5px;padding:4px;
}
.gc-burger span{display:block;width:24px;height:2px;background:var(--gc-copy);border-radius:2px;transition:transform .3s}

/* ── Hero Type C ── */
.gc-hero{
  position:relative;
  background:url('/images/cover.jpg') center/cover no-repeat;
  min-height:540px;
  display:flex;align-items:center;
  margin-top:68px;
}

.gc-hero-overlay{
  position:absolute;inset:0;
  background:rgba(8,61,66,.72);
}

.gc-hero-inner{
  position:relative;z-index:1;
  text-align:center;
  padding:90px 1.25rem;
  color:#fff;
}

.gc-hero-inner h1{
  font-size:2.6rem;font-weight:800;
  max-width:750px;margin:0 auto 20px;
}

.gc-hero-sub{
  font-size:1.15rem;font-weight:300;
  max-width:600px;margin:0 auto 36px;
  opacity:.9;
}

/* ── Button ── */
.gc-btn{
  display:inline-block;
  padding:13px 32px;
  border-radius:6px;
  background:var(--gc-highlight);
  color:var(--gc-deep);
  font-family:'Sora',sans-serif;font-weight:700;font-size:1rem;
  border:none;cursor:pointer;
  transition:background .25s,transform .2s;
}
.gc-btn:hover{background:#d9a504;color:var(--gc-deep);transform:translateY(-1px)}

/* ── Sections ── */
.gc-section{padding:70px 0}
.gc-section-title{
  font-size:1.85rem;font-weight:700;
  margin-bottom:45px;
  color:var(--gc-deep);
}

/* ── Sobre ── */
.gc-sobre{background:var(--gc-surface)}
.gc-sobre-grid{display:grid;grid-template-columns:2fr 3fr;gap:48px;align-items:start}
.gc-sobre-img{overflow:hidden;border-radius:10px}
.gc-sobre-img img{width:100%;height:auto;border-radius:10px}
.gc-sobre-text p{margin-bottom:18px;color:var(--gc-copy)}
.gc-sobre-text p:last-child{margin-bottom:0}

/* ── Blog ── */
.gc-blog-list{display:flex;flex-direction:column;gap:28px}

.gc-blog-card{
  display:flex;gap:24px;align-items:stretch;
  background:#fff;border:1px solid var(--gc-stroke);
  border-radius:10px;overflow:hidden;
  transition:box-shadow .3s,transform .2s;
}
.gc-blog-card:hover{box-shadow:0 4px 18px rgba(0,0,0,.07);transform:translateY(-2px)}

.gc-blog-card img{
  width:280px;min-height:190px;object-fit:cover;
  border-radius:0;flex-shrink:0;
}

.gc-blog-card-body{
  padding:24px 28px 24px 0;display:flex;flex-direction:column;justify-content:center;
}
.gc-blog-card-body h3{
  font-size:1.15rem;font-weight:700;color:var(--gc-deep);margin-bottom:10px;
}
.gc-blog-card-body p{font-size:.95rem;color:var(--gc-muted)}

/* ── Cards ── */
.gc-cards{background:var(--gc-surface)}
.gc-cards-list{display:flex;flex-direction:column;gap:20px}

.gc-card{
  display:flex;gap:22px;align-items:flex-start;
  background:#fff;border:1px solid var(--gc-stroke);
  border-radius:10px;padding:26px 28px;
  transition:box-shadow .3s;
}
.gc-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.06)}

.gc-card-icon{
  flex-shrink:0;
  width:56px;height:56px;
  display:flex;align-items:center;justify-content:center;
  background:var(--gc-surface);border-radius:10px;
  color:var(--gc-brand);
}

.gc-card-body h3{font-size:1.08rem;font-weight:700;color:var(--gc-deep);margin-bottom:6px}
.gc-card-body p{font-size:.93rem;color:var(--gc-muted)}

/* ── FAQ ── */
.gc-faq-list{max-width:820px}

.gc-faq-item{
  padding:24px 0;
  border-bottom:1px solid var(--gc-stroke);
}
.gc-faq-item:first-child{padding-top:0}
.gc-faq-item:last-child{border-bottom:none}

.gc-faq-item h3{font-size:1.05rem;font-weight:700;color:var(--gc-deep);margin-bottom:8px}
.gc-faq-item p{font-size:.95rem;color:var(--gc-muted)}

/* ── Contato ── */
.gc-contato{background:var(--gc-surface)}
.gc-contato-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:50px;align-items:start}

.gc-form-group{margin-bottom:18px}
.gc-form-group label{display:block;font-weight:600;font-size:.93rem;margin-bottom:6px;color:var(--gc-deep)}

.gc-form-group input,
.gc-form-group textarea{
  width:100%;
  padding:11px 15px;
  border:1px solid var(--gc-stroke);
  border-radius:6px;
  font-family:'Cabin',sans-serif;font-size:.95rem;
  color:var(--gc-copy);
  background:#fff;
  transition:border-color .25s;
}
.gc-form-group input:focus,
.gc-form-group textarea:focus{border-color:var(--gc-brand);outline:none}

.gc-form-group textarea{resize:vertical}

.gc-contato-info{display:flex;flex-direction:column;gap:22px}
.gc-contato-info-item strong{
  display:block;font-family:'Sora',sans-serif;font-weight:700;
  font-size:.93rem;color:var(--gc-deep);margin-bottom:4px;
}
.gc-contato-info-item p{font-size:.93rem;color:var(--gc-muted)}

/* ── Footer ── */
.gc-footer{
  background:var(--gc-deep);color:rgba(255,255,255,.8);
  padding-top:48px;padding-bottom:32px;
}

.gc-footer h4{
  font-family:'Sora',sans-serif;font-weight:700;font-size:1rem;
  color:#fff;margin-bottom:14px;
}

.gc-footer-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:36px;
  padding-bottom:32px;border-bottom:1px solid rgba(255,255,255,.12);
}

.gc-footer-contact p{font-size:.9rem;margin-bottom:6px}

.gc-footer-links{display:flex;flex-direction:column;gap:8px}
.gc-footer-links a{color:rgba(255,255,255,.75);font-size:.9rem}
.gc-footer-links a:hover{color:var(--gc-highlight)}

.gc-footer-bottom{
  padding-top:24px;text-align:center;font-size:.82rem;
  color:rgba(255,255,255,.55);
}
.gc-footer-bottom p{margin-bottom:6px}

.gc-disclaimer{
  max-width:700px;margin:0 auto 10px;
  font-size:.8rem;line-height:1.6;
}

/* ── Breadcrumb ── */
.gc-breadcrumb{
  padding:18px 0 0;font-size:.88rem;color:var(--gc-muted);
}
.gc-breadcrumb a{color:var(--gc-brand);font-weight:600}
.gc-breadcrumb a:hover{color:var(--gc-deep)}

/* ── Legal Content ── */
.gc-legal-content{
  max-width:820px;margin:0 auto;padding:48px 0 60px;
}
.gc-legal-content h1{font-size:1.85rem;font-weight:700;color:var(--gc-deep);margin-bottom:32px}
.gc-legal-content h2{font-size:1.25rem;font-weight:700;color:var(--gc-deep);margin:32px 0 12px}
.gc-legal-content p{margin-bottom:14px;color:var(--gc-copy)}
.gc-legal-content ul{margin:10px 0 14px 20px;list-style:disc}
.gc-legal-content ul li{margin-bottom:6px;color:var(--gc-copy);font-size:.95rem}

/* ── Blog Grid (blog/index) ── */
.gc-blog-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
}

.gc-blog-card-img{overflow:hidden;border-radius:10px 10px 0 0}
.gc-blog-card-img img{width:100%;height:220px;object-fit:cover;border-radius:0}

/* ── Article ── */
.gc-article{max-width:820px;margin:0 auto;padding:48px 0 60px}

.gc-article-header{margin-bottom:28px}
.gc-article-header h1{font-size:1.85rem;font-weight:700;color:var(--gc-deep);margin-bottom:10px}

.gc-article-meta{font-size:.88rem;color:var(--gc-muted);margin-bottom:20px}

.gc-article-img{margin-bottom:32px}
.gc-article-img img{width:100%;height:auto;border-radius:10px}

.gc-article-body{margin-bottom:40px}
.gc-article-body h2{font-size:1.25rem;font-weight:700;color:var(--gc-deep);margin:28px 0 12px}
.gc-article-body h3{font-size:1.1rem;font-weight:700;color:var(--gc-deep);margin:22px 0 10px}
.gc-article-body p{margin-bottom:14px;color:var(--gc-copy)}
.gc-article-body ul{margin:10px 0 14px 20px;list-style:disc}
.gc-article-body ul li{margin-bottom:6px;color:var(--gc-copy);font-size:.95rem}

.gc-article-back{
  display:inline-block;font-weight:600;font-size:.95rem;
  color:var(--gc-brand);
}
.gc-article-back:hover{color:var(--gc-deep)}

/* ── Responsivo ── */
@media(max-width:768px){
  .gc-nav{
    display:none;
    position:absolute;top:68px;left:0;width:100%;
    flex-direction:column;gap:0;
    background:#fff;border-bottom:1px solid var(--gc-stroke);
    box-shadow:0 4px 12px rgba(0,0,0,.06);
  }
  .gc-nav.open{display:flex}
  .gc-nav a{padding:14px 1.25rem;border-top:1px solid var(--gc-stroke)}

  .gc-burger{display:flex}

  .gc-hero-inner h1{font-size:1.75rem}
  .gc-hero-sub{font-size:1rem}
  .gc-hero{min-height:420px}

  .gc-section-title{font-size:1.45rem;margin-bottom:32px}

  .gc-sobre-grid{grid-template-columns:1fr;gap:28px}

  .gc-blog-card{flex-direction:column}
  .gc-blog-card img{width:100%;min-height:180px}
  .gc-blog-card-body{padding:18px 20px}

  .gc-contato-grid{grid-template-columns:1fr;gap:32px}

  .gc-footer-grid{grid-template-columns:1fr;gap:28px}
}
