:root {
  --color-primary: #1c1c1e;
  --color-secondary: #3a3a3c;
  --color-accent-energy: #f5c518;
  --color-accent-cta: #e8720c;
  --color-white: #ffffff;
  --color-bg-light: #f2f1ee;
  --color-border: #d6d3cd;
  --color-text-main: #1c1c1e;
  --color-success-green: #2d7a3a;
  --navy: #1c1c1e;
  --navy-mid: #2c2c2e;
  --navy-light: #3a3a3c;
  --orange: #e8720c;
  --orange-dark: #c45e08;
  --white: #ffffff;
  --grey: #7a7a7e;
  --text: #4a4a4e;
  --yellow: #f5c518;
  --yellow-dark: #d4a912;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Barlow", sans-serif;
  background: var(--color-bg-light);
  color: var(--color-text-main);
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent-energy);
  border-radius: 3px;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(28, 28, 30, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
  transition: all 0.3s;
}
nav.scrolled {
  height: 60px;
  background: rgba(28, 28, 30, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-energy);
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--color-primary);
}
.logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--color-white);
  letter-spacing: 2px;
}
.logo-text span {
  color: var(--color-accent-energy);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent-energy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  padding: 9px 22px;
  background: var(--color-accent-energy);
  color: var(--color-primary) !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  clip-path: polygon(0 0, 92% 0, 100% 25%, 100% 100%, 8% 100%, 0 75%);
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--yellow-dark) !important;
}
.nav-cta::after {
  display: none !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(28, 28, 30, 0.99);
  backdrop-filter: blur(20px);
  padding: 30px 5%;
  z-index: 999;
  border-bottom: 2px solid var(--color-accent-energy);
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.mobile-menu a:hover {
  color: var(--color-accent-energy);
  padding-left: 10px;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-accent-energy);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s;
}
.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 48px;
  height: 48px;
  background: var(--color-accent-energy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
  text-decoration: none;
  color: var(--color-primary);
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-top:hover {
  transform: translateY(-4px);
}
.fab-whatsapp {
  position: fixed;
  bottom: 40px;
  right: 28px;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-white);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  animation: wabounce 2s 3s ease-in-out infinite;
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  animation: none;
}
@keyframes wabounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-label {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent-cta);
  margin-bottom: 14px;
}
.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
  color: var(--color-primary);
}
.section-title span {
  color: var(--color-accent-cta);
}
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--color-accent-energy);
  margin: 20px 0 16px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 5% 80px;
  background: var(--color-primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 70% 40%,
    rgba(245, 197, 24, 0.07) 0%,
    transparent 65%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(245, 197, 24, 0.4);
  background: rgba(245, 197, 24, 0.07);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-energy);
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-accent-energy);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 9vw, 104px);
  line-height: 0.88;
  letter-spacing: -2px;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.4s both;
}
.hero h1 .stroke {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  color: transparent;
  display: block;
}
.hero h1 .white {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  color: white;
  display: block;
}
.hero h1 .orange {
  color: var(--color-accent-energy);
  display: block;
}
.hero-right {
  animation: fadeUp 0.8s 0.6s both;
  max-width: 380px;
}
.hero-right p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-filters {
  background: var(--color-primary);
  padding: 0 5%;
  border-bottom: 1px solid rgba(245, 197, 24, 0.12);
  position: sticky;
  top: 70px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.filter-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar {
  display: none;
}
.ftab {
  padding: 18px 22px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ftab:hover,
.ftab.active {
  color: var(--color-accent-energy);
  border-bottom-color: var(--color-accent-energy);
}
.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}
.blog-search input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 9px 16px;
  color: var(--color-white);
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  outline: none;
  width: 220px;
  transition: border-color 0.2s;
}
.blog-search input:focus {
  border-color: var(--color-accent-energy);
}
.blog-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.blog-search i {
  color: rgba(255, 255, 255, 0.4);
}
.blog-section {
  padding: 80px 5%;
  background: var(--color-bg-light);
}
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent-energy);
  overflow: hidden;
  margin-bottom: 70px;
  transition: box-shadow 0.3s;
}
.featured-post:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.feat-img {
  background: linear-gradient(135deg, #2c2c2e 0%, #1c1c1e 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.feat-img-icon {
  font-size: 180px;
  color: rgba(245, 197, 24, 0.06);
}
.feat-img-main {
  position: absolute;
  font-size: 80px;
  color: var(--color-accent-energy);
  filter: drop-shadow(0 0 30px rgba(245, 197, 24, 0.25));
}
.feat-label {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  background: var(--color-accent-energy);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
}
.feat-date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.feat-body {
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat-cat {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-cta);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat-cat::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--color-accent-cta);
}
.feat-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.feat-excerpt {
  font-size: 15px;
  color: var(--color-text-main);
  line-height: 1.75;
  margin-bottom: 28px;
  opacity: 0.72;
}
.feat-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--color-text-main);
  opacity: 0.6;
  margin-bottom: 28px;
}
.feat-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.feat-meta i {
  color: var(--color-accent-energy);
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-cta);
  text-decoration: none;
  transition: gap 0.2s;
}
.read-more:hover {
  gap: 16px;
}
.blog-grid-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.blog-grid-title .section-title {
  color: var(--color-primary);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
}
.post-card {
  background: var(--color-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(245, 197, 24, 0.3);
}
.post-img {
  height: 180px;
  background: linear-gradient(135deg, #2c2c2e 0%, #1c1c1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.post-img-icon {
  font-size: 90px;
  color: rgba(245, 197, 24, 0.07);
}
.post-img-main {
  position: absolute;
  font-size: 42px;
  color: var(--color-accent-energy);
}
.post-cat-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  background: linear-gradient(transparent, rgba(28, 28, 30, 0.9));
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-energy);
}
.post-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-date {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-main);
  opacity: 0.5;
  margin-bottom: 10px;
  font-family: "Barlow Condensed", sans-serif;
}
.post-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--color-primary);
  margin-bottom: 10px;
  flex: 1;
}
.post-excerpt {
  font-size: 13px;
  color: var(--color-text-main);
  line-height: 1.65;
  margin-bottom: 18px;
  opacity: 0.68;
}
.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}
.post-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-main);
  opacity: 0.6;
}
.post-avatar {
  width: 26px;
  height: 26px;
  background: var(--color-accent-energy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: var(--color-primary);
}
.post-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-cta);
  text-decoration: none;
  transition: gap 0.2s;
}
.post-read-link:hover {
  gap: 10px;
}
.post-read-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--color-text-main);
  opacity: 0.55;
  font-family: "Barlow Condensed", sans-serif;
}
.post-read-time i {
  color: var(--color-accent-energy);
  font-size: 10px;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  padding: 80px 5%;
  background: var(--color-bg-light);
}
.sidebar-widget {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget .topic-tags {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 6px;
}
.sidebar-widget .topic-tags::-webkit-scrollbar {
  width: 4px;
}
.sidebar-widget .topic-tags::-webkit-scrollbar-track {
  background: rgba(28, 28, 30, 0.04);
}
.sidebar-widget .topic-tags::-webkit-scrollbar-thumb {
  background: var(--color-accent-energy);
  border-radius: 2px;
}
.widget-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent-energy);
}
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.topic-tag {
  padding: 6px 14px;
  background: rgba(28, 28, 30, 0.05);
  border: 1px solid var(--color-border);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-main);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.topic-tag:hover,
.topic-tag.active {
  background: var(--color-accent-energy);
  border-color: var(--color-accent-energy);
  color: var(--color-primary);
}
.recent-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.recent-item:last-child {
  border-bottom: none;
}
.recent-thumb {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-accent-energy);
  flex-shrink: 0;
}
.recent-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.recent-title:hover {
  color: var(--color-accent-cta);
}
.recent-date {
  font-size: 11px;
  color: var(--color-text-main);
  letter-spacing: 1px;
  opacity: 0.55;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-form input {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 11px 14px;
  color: var(--color-text-main);
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus {
  border-color: var(--color-accent-energy);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.1);
}
.newsletter-form input::placeholder {
  color: rgba(28, 28, 30, 0.35);
}
.newsletter-form button {
  padding: 12px;
  background: var(--color-accent-energy);
  color: var(--color-primary);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, 94% 0, 100% 30%, 100% 100%, 6% 100%, 0 70%);
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: var(--yellow-dark);
}
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  padding: 48px 5% 16px;
  flex-wrap: wrap;
  background: var(--color-bg-light);
}
.page-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-main);
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 20% 100%, 0 80%);
  text-decoration: none;
}
.page-btn:hover:not(.disabled) {
  background: rgba(245, 197, 24, 0.1);
  border-color: rgba(245, 197, 24, 0.4);
  color: var(--color-primary);
}
.page-btn.active {
  background: var(--color-accent-energy);
  border-color: var(--color-accent-energy);
  color: var(--color-primary);
}
.page-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-dots {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  color: var(--color-text-main);
  opacity: 0.4;
  padding: 0 4px;
}
footer {
  background: var(--color-primary);
  padding: 60px 5% 30px;
  border-top: 3px solid var(--color-accent-energy);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer-col-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 18px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--color-accent-energy);
  padding-left: 6px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-contact-item i {
  color: var(--color-accent-energy);
  width: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.certif-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.certif-badge {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.hidden-tab {
  display: none;
}
.ftab-more {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.ftab-more:hover,
.ftab-more.expanded {
  border-color: var(--color-accent-energy);
  color: var(--color-accent-energy);
}
@keyframes skel-shimmer {
  0% {
    background-position: -600px 0;
  }
  100% {
    background-position: 600px 0;
  }
}
.skel-post {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;
}
.skel-post-img {
  height: 200px;
  background: linear-gradient(
    90deg,
    rgba(28, 28, 30, 0.04) 0px,
    rgba(28, 28, 30, 0.08) 200px,
    rgba(28, 28, 30, 0.04) 400px
  );
  background-size: 600px 100%;
  animation: skel-shimmer 1.4s infinite linear;
}
.skel-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.skel-line {
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(28, 28, 30, 0.05) 0px,
    rgba(28, 28, 30, 0.1) 200px,
    rgba(28, 28, 30, 0.05) 400px
  );
  background-size: 600px 100%;
  animation: skel-shimmer 1.4s infinite linear;
}
.skel-short {
  width: 35%;
}
.skel-long {
  width: 90%;
  height: 18px;
}
.skel-mid {
  width: 70%;
}
.skel-xs {
  width: 25%;
}
.skel-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}
@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.post-card.card-enter {
  animation: card-enter 0.4s ease both;
}
@media (max-width: 960px) {
  .featured-post {
    grid-template-columns: 1fr;
  }
  .feat-img {
    min-height: 220px;
  }
  .posts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

.footer-social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Elimina el guion */
.footer-social a::before {
    display: none !important;
    content: none !important;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* Móvil */
@media (max-width: 768px) {
    .footer-social {
        flex-direction: column;
        gap: 12px;
    }
}

.footer-social a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-social i {
    color: inherit;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(28, 28, 30, 0.06);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.footer-brand-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-copy span {
    color: var(--color-accent-energy);
}

.footer-links:not(.no-dash) a::before {
    content: "—";
    color: var(--color-accent-energy);
    font-size: 10px;
}


footer {
  background: var(--color-primary);
  padding: 60px 5% 30px;
  border-top: 3px solid var(--color-accent-energy)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px
}

.footer-brand-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 280px
}

.footer-certif {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center
}

.certif-badge {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55)
}

.footer-col-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-links:not(.no-dash) a::before {
  content: "—";
  color: var(--color-accent-energy);
  font-size: 10px;
}

.footer-links a:hover {
  color: var(--color-accent-energy)
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45)
}

.footer-copy span {
  color: var(--color-accent-energy)
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-accent-energy);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-main);
  grid-column: 1/-1
}

.empty-state p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.4
}

a.service-card,
a.equipo-card,
a.arriendo-card,
a.port-card {
  text-decoration: none;
  color: inherit
}

.footer-social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.footer-social a::before {
  display: none !important;
  content: none !important
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: .3s
}

.footer-social a:hover {
  color: var(--primary)
}

.footer-social i {
  color: inherit
}

@media(max-width:1024px) {
  .hero-visual {
    display: none
  }

  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .contacto-layout {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr
  }

  .cat-card:first-child {
    grid-row: span 1;
    min-height: 220px
  }

  .portuarios-grid {
    grid-template-columns: 1fr 1fr
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  nav {
    padding: 0 4%
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  section {
    padding: 70px 4%
  }

  .hero {
    padding: 100px 4% 60px
  }

  .hero-stats {
    gap: 30px
  }

  .nosotros-features {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .cat-grid {
    grid-template-columns: 1fr
  }

  .portuarios-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-social {
    flex-direction: column;
    gap: 12px
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 48px
  }

  .hero-actions {
    flex-direction: column
  }

  .btn-primary,
  .btn-secondary {
    text-align: center
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .equipos-scroll {
    grid-template-columns: 1fr
  }

  .arriendos-grid {
    grid-template-columns: 1fr
  }

  .contact-form {
    padding: 24px 20px
  }
}

.footer-links .emote a::before {
  content: none !important;
}