/*

Theme Name: Portfolio Web Designer

Theme URI: https://exemplo.com/portfolio-theme

Author: Manus AI

Author URI: https://manus.im

Description: Um tema WordPress moderno e responsivo para portfólio de web designers e criadores de sites.

Version: 1.0.0

License: GNU General Public License v2 or later

License URI: http://www.gnu.org/licenses/gpl-2.0.html

Text Domain: portfolio-designer

Tags: portfolio, web-design, slider, responsive, clean

*/

:root {
  --ink: #0b0b0a;
  --ink-60: rgba(11,11,10,0.6);
  --ink-20: rgba(11,11,10,0.18);
  --ink-08: rgba(11,11,10,0.08);
  --paper: #f4f1eb;
  --off: #eceae4;
  --void: #0f0f0e;
  --void2: #171714;
  --accent: #c97f3a;
  --accent2: #551e78;
  --rule: rgba(11,11,10,0.12);
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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



/* Estilos básicos para garantir que o tema seja reconhecido */

body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    margin: 0;

    padding: 0;

    color: #333;

}



/* Estilos para os novos botões de seção */

.section-header {

    position: relative;

    margin-bottom: 40px;

    text-align: center;

}



.section-header .section-btn {

    display: inline-block;

    margin-top: 20px;

    padding: 12px 30px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;

    border: none;

    cursor: pointer;

}



.section-header .section-btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

}



.section-footer {

    text-align: center;

    margin-top: 40px;

}



.section-footer .section-btn {

    display: inline-block;

    padding: 12px 30px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;

    border: none;

    cursor: pointer;

}



.section-footer .section-btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

}



/* Estilos para o botão do slider */

.hero-slider .btn-primary {

    display: inline-block;

    padding: 12px 30px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;

    border: none;

    cursor: pointer;

    margin-top: 20px;

}



.hero-slider .btn-primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);

}



/* Responsividade */

@media (max-width: 768px) {

    .section-header .section-btn,

    .section-footer .section-btn {

        padding: 10px 25px;

        font-size: 14px;

    }

    

    .hero-slider .btn-primary {

        padding: 10px 25px;

        font-size: 14px;

    }

}



/* Animações para o slider */

@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(50px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* Efeitos hover para imagem */

.image-wrapper {

    position: relative;

    overflow: hidden;

    transition: transform 0.5s ease;

}



.image-wrapper[data-hover-effect="glitch"]:hover .main-image {

    animation: glitch 0.3s infinite;

}



.image-wrapper[data-hover-effect="scan"]:hover::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 200%;

    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);

    animation: scan 2s infinite;

    z-index: 10;

}



.image-wrapper[data-hover-effect="pulse"]:hover {

    animation: pulseGlow 1.5s infinite;

}



.image-wrapper[data-hover-effect="neon"]:hover {

    box-shadow: 0 0 20px #00ff88, 0 0 40px #00ff88, 0 0 60px #00ff88;

}



@keyframes glitch {

    0% { transform: translate(0); filter: hue-rotate(0deg); }

    20% { transform: translate(-5px, 5px); filter: hue-rotate(90deg); }

    40% { transform: translate(5px, -5px); filter: hue-rotate(180deg); }

    60% { transform: translate(-5px, -5px); filter: hue-rotate(270deg); }

    80% { transform: translate(5px, 5px); filter: hue-rotate(360deg); }

    100% { transform: translate(0); filter: hue-rotate(0deg); }

}



@keyframes scan {

    0% { left: -100%; }

    100% { left: 100%; }

}



@keyframes pulseGlow {

    0%, 100% { box-shadow: 0 0 20px rgba(0,255,136,0.3); }

    50% { box-shadow: 0 0 50px rgba(0,255,136,0.6); }

}


/* MARQUEE */
.neo-marquee-wrap {
  background: var(--accent2);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.neo-marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.neo-marquee-text {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  padding-right: 64px;
}
.neo-marquee-sep {
  color: var(--accent);
  margin-right: 64px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SERVICES ROW (dark band) */
.neo-services {
  background: var(--void2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 1px 100%, 100% 1px;
}
.neo-service-item {
  background: var(--void2);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.22s;
  cursor: default;
}
.neo-service-item:hover { background: #1d1d1a; }
.neo-service-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 4px;
}
.neo-service-name {
  font-family: var(--font-mono);
  font-size: 22px;
  color: #fff;
  font-weight: 400;
}
.neo-service-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}


/* PORTFOLIO */
.neo-portfolio { background: var(--paper); }
.neo-filters {
  display: flex;
  padding: 0 48px;
  border-bottom: 1px solid var(--rule);
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.neo-filters::-webkit-scrollbar { display: none; }
.neo-filter {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 20px 0;
  margin-right: 36px;
  cursor: pointer;
  transition: color 0.18s, border-color 0.22s;
  flex-shrink: 0;
}
.neo-filter:hover { color: var(--ink); border-bottom-color: var(--ink-20); }
.neo-filter.active { color: var(--ink); border-bottom-color: var(--ink); }

.neo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  margin: 0;
}
.neo-card {
  position: relative;
  background: var(--off);
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.neo-card.visible { opacity: 1; transform: translateY(0); }
.neo-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1), filter 0.5s ease;
}
.neo-card:hover .neo-card-img {
  transform: scale(1.04);
  filter: brightness(0.75);
}
.neo-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--ink);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  clip-path: polygon(0 100%, 100% 70%, 100% 100%, 0 100%);
  transition: opacity 0.4s ease, clip-path 0.45s cubic-bezier(0.22,0.61,0.36,1);
}
.neo-card:hover .neo-card-overlay {
  opacity: 0.94;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.neo-card-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.15s, transform 0.3s 0.15s;
}
.neo-card-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: #fff;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.2s, transform 0.3s 0.2s;
}
.neo-card-view {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  align-self: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.25s, transform 0.3s 0.25s;
  text-decoration: none;
}
.neo-card:hover .neo-card-tag,
.neo-card:hover .neo-card-name,
.neo-card:hover .neo-card-view { opacity: 1; transform: translateY(0); }

/* CTA DARK */
.neo-cta {
  background: var(--void);
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.neo-cta-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(85,30,120,0.12));
  pointer-events: none;
}
.neo-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.neo-cta-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}
.neo-cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: #fff;
  position: relative;
  z-index: 1;
}
.neo-cta-title span { color: var(--accent); }
.neo-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.neo-btn-light {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--ink);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.18s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
.neo-btn-light:hover { background: var(--accent); color: var(--paper); }
.neo-cta-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* NEWS */
.neo-news { background: var(--paper); }
.neo-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 0;
}
.neo-news-card {
  background: var(--paper);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: background 0.22s;
  cursor: pointer;
}
.neo-news-card:hover { background: var(--off); }
.neo-news-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.neo-news-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-60);
}
.neo-news-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.neo-news-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 14px;
  flex: 1;
}
.neo-news-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-60);
  margin-bottom: 24px;
  font-weight: 300;
}
.neo-news-read {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-20);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 0.18s, color 0.18s;
}
.neo-news-read:hover { color: var(--accent); border-color: var(--accent); }

/* FOOTER */
.neo-footer {
  background: var(--void);
  padding: 64px 48px 40px;
}
.neo-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.neo-footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 16px;
}
.neo-footer-logo span { color: var(--accent); }
.neo-footer-tagline {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  max-width: 260px;
}
.neo-footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.neo-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.neo-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.18s;
}
.neo-footer-links a:hover { color: rgba(255,255,255,0.9); }
.neo-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.neo-footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
}
.neo-footer-social {
  display: flex;
  gap: 24px;
}
.neo-footer-social a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.18s;
}
.neo-footer-social a:hover { color: rgba(255,255,255,0.7); }

/* SERVICES ROW (dark band) */
.neo-services {
  background: var(--void2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 1px 100%, 100% 1px;
}
.neo-service-item {
  background: var(--void2);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.22s;
  cursor: default;
}
.neo-service-item:hover { background: #1d1d1a; }
.neo-service-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 4px;
}
.neo-service-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: #fff;
  font-weight: 400;
}
.neo-service-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* MARQUEE */
.neo-marquee-wrap {
  background: var(--accent2);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.neo-marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.neo-marquee-text {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  padding-right: 64px;
}
.neo-marquee-sep {
  color: var(--accent);
  margin-right: 64px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.neo-root {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.neo-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
}
.neo-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}
.neo-logo span { color: var(--accent); }
.neo-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.neo-nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-decoration: none;
  transition: color 0.18s;
}
.neo-nav-links a:hover { color: var(--ink); }
.neo-nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.18s;
  text-decoration: none;
}
.neo-nav-cta:hover { background: var(--accent2); }

/* HERO */
.neo-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.neo-hero-left {
  padding: 80px 48px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--rule);
}
.neo-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.neo-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--ink-60);
}
.neo-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 0;
}
.neo-hero-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-size: 0.78em;
  display: block;
  line-height: 1;
}
.neo-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-60);
  max-width: 380px;
  margin: 40px 0 48px;
  font-weight: 300;
}
.neo-hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.neo-btn-primary {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  text-decoration: none;
  display: inline-block;
}
.neo-btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.neo-btn-ghost {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
}
.neo-btn-ghost:hover { color: var(--accent); border-color: var(--accent); }
.neo-hero-right {
  background: var(--void);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}
.neo-hero-right-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a0a26 0%, #0f0f0e 60%);
}
.neo-hero-counter-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.neo-counter-item {
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.neo-counter-item:nth-child(2n) { border-right: none; }
.neo-counter-item:nth-child(3), .neo-counter-item:nth-child(4) { border-bottom: none; }
.neo-counter-num {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}
.neo-counter-num span { color: var(--accent); }
.neo-counter-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}
.neo-hero-tag {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  gap: 12px;
}
.neo-hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* SECTION HEADER */
.neo-section-header {
  padding: 64px 48px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 32px;
}
.neo-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.neo-section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink-60);
}
.neo-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.neo-section-title em { font-style: italic; color: var(--accent2); }
.neo-section-link {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-20);
  padding-bottom: 2px;
  align-self: flex-end;
  transition: color 0.18s;
}
.neo-section-link:hover { color: var(--ink); }

/* PLACEHOLDER IMAGES */
.neo-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* Ícones flutuantes */

.floating-icons {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    pointer-events: none;

    z-index: 5;

}



.floating-icon {

    position: absolute;

    animation: float 8s ease-in-out infinite;

    opacity: 0.6;

    transition: all 0.3s ease;

}



.floating-icon:hover {

    animation: none;

    transform: scale(1.5);

    opacity: 1;

}



.floating-icon.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }

.floating-icon.icon-2 { top: 80%; left: 20%; animation-delay: 2s; }

.floating-icon.icon-3 { top: 30%; right: 10%; animation-delay: 1s; }

.floating-icon.icon-4 { bottom: 20%; right: 20%; animation-delay: 3s; }

.floating-icon.icon-5 { top: 50%; left: 50%; animation-delay: 2.5s; }



@keyframes float {

    0%, 100% { transform: translateY(0) translateX(0); }

    50% { transform: translateY(-20px) translateX(10px); }

}



/* ============================================

   CORREÇÕES PARA PÁGINA DE NOTÍCIAS

   ============================================ */



/* Garantir que o slider funcione */

.featured-news-slider .swiper-slide {

    flex-shrink: 0;

    width: 100%;

    height: auto;

}



@media (min-width: 768px) {

    .featured-news-slider .swiper-slide {

        width: 50%;

    }

}



@media (min-width: 992px) {

    .featured-news-slider .swiper-slide {

        width: 33.333%;

    }

}



/* ============================================

   CORREÇÃO DOS CARDS DE NOTÍCIAS

   ============================================ */



/* Card principal */

.news-card {

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;

    height: 100%;

    display: flex;

    flex-direction: column;

}



.news-card-inner {

    display: flex;

    flex-direction: column;

    height: 100%;

}



/* Imagem do card */

.news-card-image {

    position: relative;

    width: 100%;

    height: 200px;

    overflow: hidden;

    flex-shrink: 0;

}



.news-image-link {

    display: block;

    width: 100%;

    height: 100%;

}



.news-thumbnail {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;

}



.news-card:hover .news-thumbnail {

    transform: scale(1.05);

}



/* Overlay da imagem */

.image-overlay {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);

    padding: 1rem;

    transform: translateY(100%);

    transition: transform 0.3s ease;

}



.news-card:hover .image-overlay {

    transform: translateY(0);

}



.read-more-text {

    color: #fff;

    font-size: 0.9rem;

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



/* Ações do card (bookmark, share) */

.news-card-actions {

    position: absolute;

    top: 10px;

    right: 10px;

    display: flex;

    gap: 8px;

    opacity: 0;

    transform: translateX(10px);

    transition: all 0.3s ease;

}



.news-card:hover .news-card-actions {

    opacity: 1;

    transform: translateX(0);

}



.action-btn {

    width: 32px;

    height: 32px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    border: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 0.2s ease;

    color: #4a5568;

}



.action-btn:hover {

    background: #4299e1;

    color: #fff;

    transform: scale(1.05);

}



/* Badge de breaking news */

.breaking-badge {

    position: absolute;

    top: 10px;

    left: 10px;

}



.badge-text {

    background: linear-gradient(135deg, #f56565, #c53030);

    color: #fff;

    font-size: 0.7rem;

    font-weight: 700;

    padding: 4px 8px;

    border-radius: 4px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



/* Conteúdo do card */

.news-card-content {

    padding: 1.25rem;

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 0.75rem;

}



/* Categorias */

.news-categories {

    margin-bottom: 0.25rem;

}



.category-tag {

    display: inline-block;

    padding: 4px 12px;

    background: #4299e1;

    color: #fff;

    font-size: 0.7rem;

    font-weight: 600;

    border-radius: 20px;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



.category-tag:hover {

    background: #3182ce;

}



/* Título */

.news-title {

    font-size: 1.1rem;

    line-height: 1.4;

    margin: 0;

}



.news-title a {

    color: #2d3748;

    text-decoration: none;

    transition: color 0.2s ease;

}



.news-title a:hover {

    color: #4299e1;

}



/* Excerto */

.news-excerpt {

    font-size: 0.9rem;

    line-height: 1.5;

    color: #718096;

    margin: 0;

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;

}



/* Meta informações - CORREÇÃO PRINCIPAL */

.news-meta {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 0.5rem;

    margin-top: 0.5rem;

    padding-top: 0.75rem;

    border-top: 1px solid #e2e8f0;

}



.meta-left,

.meta-right {

    display: flex;

    align-items: center;

    gap: 0.75rem;

    flex-wrap: wrap;

}



.meta-item {

    display: inline-flex;

    align-items: center;

    gap: 0.25rem;

    font-size: 0.75rem;

    color: #718096;

    white-space: nowrap;

}



.meta-item.author {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

}



.meta-item.author img {

    width: 24px;

    height: 24px;

    border-radius: 50%;

    object-fit: cover;

}



.author-name {

    font-weight: 500;

    color: #4a5568;

    max-width: 100px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

}



.meta-item i {

    font-size: 0.7rem;

    width: 14px;

    color: #a0aec0;

}



.meta-item time {

    white-space: nowrap;

}



/* Responsivo para mobile */

@media (max-width: 768px) {

    .news-meta {

        flex-direction: column;

        align-items: flex-start;

    }

    

    .meta-left,

    .meta-right {

        width: 100%;

        justify-content: space-between;

    }

    

    .meta-item.author .author-name {

        max-width: 120px;

    }

}



@media (max-width: 480px) {

    .news-card-content {

        padding: 1rem;

    }

    

    .news-title {

        font-size: 1rem;

    }

    

    .news-excerpt {

        font-size: 0.85rem;

        -webkit-line-clamp: 2;

    }

    

    .meta-left,

    .meta-right {

        gap: 0.5rem;

    }

    

    .meta-item {

        font-size: 0.7rem;

    }

    

    .meta-item.author .author-name {

        max-width: 90px;

    }

}



/* Grid layout para diferentes visualizações */

.news-grid {

    display: grid;

    gap: 1.5rem;

}



.news-grid.grid-3 {

    grid-template-columns: repeat(1, 1fr);

}



.news-grid.grid-2 {

    grid-template-columns: repeat(1, 1fr);

}



.news-grid.list {

    grid-template-columns: 1fr;

}



/* Tablet */

@media (min-width: 768px) {

    .news-grid.grid-2 {

        grid-template-columns: repeat(2, 1fr);

    }

    

    .news-grid.grid-3 {

        grid-template-columns: repeat(2, 1fr);

    }

}



/* Desktop */

@media (min-width: 992px) {

    .news-grid.grid-3 {

        grid-template-columns: repeat(3, 1fr);

    }

}



/* Layout lista */

.news-grid.list .news-card-inner {

    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 0;

}



.news-grid.list .news-card-image {

    height: 100%;

    min-height: 200px;

}



.news-grid.list .news-card-content {

    padding: 1.25rem;

}



@media (max-width: 768px) {

    .news-grid.list .news-card-inner {

        grid-template-columns: 1fr;

    }

    

    .news-grid.list .news-card-image {

        height: 200px;

    }

}



/* ============================================

   LAYOUT DE LISTA - CORREÇÃO COMPLETA

   ============================================ */



/* Container principal do grid */

.news-grid-container {

    transition: all 0.3s ease;

}



/* Estilos base do grid */

.news-grid {

    display: grid;

    gap: 2rem;

    transition: all 0.3s ease;

}



/* ============================================

   GRID LAYOUT (padrão)

   ============================================ */



.news-grid.grid-3 {

    grid-template-columns: repeat(3, 1fr);

}



.news-grid.grid-2 {

    grid-template-columns: repeat(2, 1fr);

}

/* ============================================

   LAYOUT DE LISTA - CORREÇÃO VISUAL COMPLETA

   ============================================ */



/* Container do grid no modo lista */

.news-grid.list {

    display: flex;

    flex-direction: column;

    gap: 2rem;

    width: 100%;

}



/* Card individual no modo lista */

.news-grid.list .news-card {

    width: 100%;

    margin: 0;

    display: block;

    overflow: hidden;

    border-radius: 12px;

    background: #fff;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;

}



/* Inner do card - estrutura horizontal */

.news-grid.list .news-card-inner {

    display: flex !important;

    flex-direction: row !important;

    align-items: stretch !important;

    gap: 0 !important;

    height: 100%;

    min-height: 220px;

}



/* Imagem no modo lista */

.news-grid.list .news-card-image {

    flex: 0 0 280px !important;

    width: 280px !important;

    height: auto !important;

    min-height: 220px;

    position: relative;

    overflow: hidden;

    margin: 0 !important;

}



.news-grid.list .news-card-image .news-image-link {

    display: block;

    width: 100%;

    height: 100%;

}



.news-grid.list .news-thumbnail {

    width: 100%;

    height: 100%;

    object-fit: cover;

    position: absolute;

    top: 0;

    left: 0;

}



/* Conteúdo no modo lista */

.news-grid.list .news-card-content {

    flex: 1 !important;

    padding: 1.25rem 1.5rem !important;

    display: flex !important;

    flex-direction: column !important;

    justify-content: center !important;

    gap: 0.75rem !important;

    overflow: hidden;

}



/* Título no modo lista */

.news-grid.list .news-title {

    font-size: 1.25rem !important;

    line-height: 1.4 !important;

    margin: 0 0 0.5rem 0 !important;

}



.news-grid.list .news-title a {

    color: #2d3748;

    text-decoration: none;

    transition: color 0.2s;

}



.news-grid.list .news-title a:hover {

    color: #4299e1;

}



/* Excerto no modo lista */

.news-grid.list .news-excerpt {

    font-size: 0.9rem !important;

    line-height: 1.5 !important;

    color: #718096;

    margin: 0 0 0.5rem 0 !important;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

}



/* Metadados no modo lista */

.news-grid.list .news-meta {

    display: flex !important;

    justify-content: space-between !important;

    align-items: center !important;

    flex-wrap: wrap !important;

    gap: 1rem !important;

    margin-top: 0.5rem !important;

    padding-top: 0.75rem !important;

    border-top: 1px solid #e2e8f0;

}



.news-grid.list .meta-left,

.news-grid.list .meta-right {

    display: flex !important;

    align-items: center !important;

    gap: 1rem !important;

    flex-wrap: wrap !important;

}



.news-grid.list .meta-item {

    display: inline-flex !important;

    align-items: center !important;

    gap: 0.4rem !important;

    font-size: 0.8rem !important;

    color: #718096;

    white-space: nowrap;

}



.news-grid.list .meta-item.author img {

    width: 28px !important;

    height: 28px !important;

    border-radius: 50%;

}



.news-grid.list .author-name {

    font-weight: 500;

    color: #4a5568;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

    max-width: 120px;

}



/* Badge de breaking news no modo lista */

.news-grid.list .breaking-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    z-index: 2;

}



.news-grid.list .badge-text {

    background: linear-gradient(135deg, #f56565, #c53030);

    color: #fff;

    font-size: 0.7rem;

    font-weight: 700;

    padding: 4px 10px;

    border-radius: 4px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



/* Botões de ação no modo lista */

.news-grid.list .news-card-actions {

    position: absolute;

    top: 12px;

    right: 12px;

    display: flex;

    gap: 8px;

    z-index: 2;

    opacity: 0;

    transform: translateX(10px);

    transition: all 0.3s ease;

}



.news-grid.list .news-card:hover .news-card-actions {

    opacity: 1;

    transform: translateX(0);

}



/* Categoria no modo lista */

.news-grid.list .news-categories {

    margin-bottom: 0.25rem;

}



.news-grid.list .category-tag {

    display: inline-block;

    padding: 4px 12px;

    background: #4299e1;

    color: #fff;

    font-size: 0.7rem;

    font-weight: 600;

    border-radius: 20px;

    text-decoration: none;

}



/* ============================================

   RESPONSIVIDADE DO LAYOUT LISTA

   ============================================ */



/* Tablet - mantém lista mas com imagem menor */

@media (max-width: 992px) {

    .news-grid.list .news-card-image {

        flex: 0 0 240px !important;

        width: 240px !important;

    }

    

    .news-grid.list .news-title {

        font-size: 1.1rem !important;

    }

    

    .news-grid.list .news-excerpt {

        font-size: 0.85rem !important;

        -webkit-line-clamp: 2;

    }

}



/* Mobile - empilha verticalmente */

@media (max-width: 768px) {

    .news-grid.list .news-card-inner {

        flex-direction: column !important;

    }

    

    .news-grid.list .news-card-image {

        flex: 0 0 200px !important;

        width: 100% !important;

        min-height: 200px;

    }

    

    .news-grid.list .news-thumbnail {

        position: relative;

        height: 200px;

    }

    

    .news-grid.list .news-card-content {

        padding: 1rem !important;

    }

    

    .news-grid.list .news-title {

        font-size: 1rem !important;

    }

    

    .news-grid.list .news-meta {

        flex-direction: column;

        align-items: flex-start;

        gap: 0.5rem;

    }

    

    .news-grid.list .meta-left,

    .news-grid.list .meta-right {

        width: 100%;

        justify-content: space-between;

    }

    

    .news-grid.list .meta-item {

        white-space: normal;

    }

    

    .news-grid.list .author-name {

        max-width: 100px;

    }

}



/* Mobile pequeno */

@media (max-width: 480px) {

    .news-grid.list .news-card-image {

        flex: 0 0 180px !important;

        min-height: 180px;

    }

    

    .news-grid.list .news-card-content {

        padding: 0.875rem !important;

    }

    

    .news-grid.list .news-title {

        font-size: 0.95rem !important;

    }

    

    .news-grid.list .news-excerpt {

        font-size: 0.8rem !important;

        -webkit-line-clamp: 2;

    }

    

    .news-grid.list .meta-item {

        font-size: 0.7rem !important;

    }

}



/* ============================================

   CORREÇÃO PARA TEXTO NÃO QUEBRAR

   ============================================ */



.news-grid.list .news-title,

.news-grid.list .news-excerpt,

.news-grid.list .author-name,

.news-grid.list .category-tag {

    word-wrap: break-word;

    word-break: break-word;

    overflow-wrap: break-word;

}



.news-grid.list .news-title a {

    display: block;

    word-wrap: break-word;

    overflow-wrap: break-word;

}



/* Garantir que o conteúdo não ultrapasse os limites */

.news-grid.list .news-card-content {

    min-width: 0; /* Importante para evitar overflow */

    max-width: 100%;

}



/* Estilo para hover no modo lista */

.news-grid.list .news-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

}