/* ============================================
   PACE DIÁRIO — Design System
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #FF6B35;
  --amber: #F7931E;
  --navy: #1A1A2E;
  --navy-light: #16213E;
  --navy-card: #0F3460;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #F5F5F5;
  --gray-border: rgba(255,255,255,0.08);
  --gradient: linear-gradient(135deg, #FF6B35, #F7931E);
  --gradient-dark: linear-gradient(180deg, #1A1A2E 0%, #16213E 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.2);
  --shadow-orange: 0 4px 20px rgba(255,107,53,0.25);
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(26,26,46,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-border);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(26,26,46,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.header-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255,107,53,0.3));
}

.header-logo {
  font-size: 22px;
}

.header-logo .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav a:hover, .nav a.active {
  color: var(--white);
  background: rgba(255,107,53,0.12);
}

.nav a.active { color: var(--orange); }

/* Nav CTA */
.nav-cta {
  margin-left: 12px;
  padding: 8px 18px !important;
  background: var(--gradient) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-orange);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,107,53,0.35) !important;
  background: var(--gradient) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Social bar in header */
.header-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}

.header-social a {
  font-size: 18px;
  opacity: 0.6;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.header-social a:hover { opacity: 1; }

/* ============================================
   MOBILE NAV
   ============================================ */
@media (max-width: 900px) {
  .header { overflow: visible; }
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    z-index: 10000;
    overflow-y: auto;
    gap: 4px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav.open {
    visibility: visible;
    opacity: 1;
  }

  .nav a {
    font-size: 18px;
    padding: 14px 16px;
  }

  .nav-cta { margin-left: 0 !important; margin-top: 16px; text-align: center; }

  .header-social { display: none; }

  .nav .mobile-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-border);
  }

  .nav .mobile-social a { font-size: 24px; opacity: 0.7; }
}

@media (min-width: 901px) {
  .nav .mobile-social { display: none; }
}

/* ============================================
   PAGE CONTENT (below fixed header)
   ============================================ */
.page-content {
  padding-top: var(--header-height);
  min-height: 100vh;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,107,53,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(247,147,30,0.06) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(255,107,53,0.3));
}

.hero h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gradient);
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.4);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.section-header h2 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 15px;
  color: var(--gray);
}

/* ============================================
   CARDS GRID
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  cursor: pointer;
}

.card:hover {
  border-color: rgba(255,107,53,0.3);
  background: rgba(255,107,53,0.06);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,107,53,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* Card with image */
.card-img {
  overflow: hidden;
  padding: 0;
}

.card-img .card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-img .card-body { padding: 20px; }

.card-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,107,53,0.15);
  color: var(--orange);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.card-date {
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
}

/* ============================================
   CALCULADORA
   ============================================ */
.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.calc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.calc-card:hover, .calc-card.active {
  border-color: var(--orange);
  background: rgba(255,107,53,0.08);
  transform: translateY(-2px);
}

.calc-card.active {
  box-shadow: 0 0 0 2px var(--orange);
}

.calc-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.calc-card h3 {
  font-size: 15px;
  font-weight: 700;
}

/* Calculator panel */
.calc-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 32px;
  display: none;
}

.calc-panel.active { display: block; }

.calc-panel h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.calc-row {
  display: flex;
  gap: 16px;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.calc-field {
  flex: 1;
  min-width: 140px;
}

.calc-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.calc-field input, .calc-field select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

.calc-field input:focus, .calc-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.15);
}

.calc-field select option { background: var(--navy); }

.calc-btn {
  padding: 12px 28px;
  background: var(--gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
}

.calc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,107,53,0.35);
}

.calc-result {
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 20px;
}

.calc-result h4 {
  font-size: 14px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.calc-result .big-number {
  font-size: 36px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-result-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.calc-result-table th, .calc-result-table td {
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-border);
}

.calc-result-table th {
  color: var(--gray);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-result-table td { font-weight: 600; }

/* ============================================
   EVENTS / CALENDARIO
   ============================================ */
.event-card {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}

.event-card:hover {
  border-color: rgba(255,107,53,0.3);
  background: rgba(255,107,53,0.04);
}

.event-date-box {
  min-width: 60px;
  text-align: center;
  padding: 12px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.event-date-box .day {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.event-date-box .month {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.event-info p {
  font-size: 14px;
  color: var(--gray);
}

.event-info .event-meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.event-info .event-meta span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Calendar */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.calendar-month {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 24px;
}

.calendar-month h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calendar-month h3 .month-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

.calendar-event {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
}

.calendar-event:last-child { border-bottom: none; }

.calendar-event .cal-day {
  min-width: 36px;
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
}

.calendar-event .cal-info { font-size: 14px; color: rgba(255,255,255,0.8); }
.calendar-event .cal-location { font-size: 12px; color: var(--gray); }

/* ============================================
   GUIA ACESSORIOS
   ============================================ */
.accessory-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cat-btn {
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.cat-btn:hover, .cat-btn.active {
  background: rgba(255,107,53,0.12);
  border-color: var(--orange);
  color: var(--orange);
}

.accessory-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.accessory-card:hover {
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-2px);
}

.accessory-card .rating {
  color: #FFB800;
  font-size: 14px;
  margin: 8px 0 4px;
}

.accessory-card .price {
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
}

.accessory-card .price-old {
  font-size: 14px;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: 8px;
}

/* ============================================
   NOTICIAS
   ============================================ */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .news-featured { grid-template-columns: 1fr; }
}

.news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.news-card:hover {
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-2px);
}

.news-card-img {
  width: 100%;
  height: 200px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.news-card-body { padding: 20px; }

.news-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.news-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.news-card .news-meta {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   NEWSLETTER CTA STRIP
   ============================================ */
.newsletter-strip {
  background: var(--gradient);
  padding: 40px 0;
  text-align: center;
}

.newsletter-strip h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}

.newsletter-strip p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.newsletter-strip .strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.newsletter-strip .strip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid var(--gray-border);
  padding: 48px 0 24px;
}

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

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 900;
}

.footer-brand .footer-logo img {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 2px 8px rgba(255,107,53,0.3));
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(255,107,53,0.15);
  border-color: var(--orange);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--orange);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: var(--orange); }

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--gray-border);
}

.page-hero h1 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 16px;
  color: var(--gray);
  margin-top: 8px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}

.breadcrumb a { color: var(--orange); }

/* ============================================
   FILTERS BAR
   ============================================ */
.filters-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-border);
  margin-bottom: 32px;
}

.filter-btn {
  padding: 6px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(255,107,53,0.12);
  border-color: var(--orange);
  color: var(--orange);
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.text-center { text-align: center; }
.text-gray { color: var(--gray); }

/* ============================================
   SOCIAL ICONS (real SVGs)
   ============================================ */
[data-icon] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-icon] svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-social a { color: rgba(255,255,255,0.7); }
.header-social a:hover { color: var(--white); }
.header-social a[title="Instagram"]:hover { color: #E4405F; }
.header-social a[title="TikTok"]:hover { color: #fff; }
.header-social a[title="YouTube"]:hover { color: #FF0000; }

.footer-social a { color: rgba(255,255,255,0.6); }
.footer-social a:hover { color: var(--white); }
.footer-social a[title="Instagram"]:hover { color: #E4405F; border-color: #E4405F; background: rgba(228,64,95,0.12); }
.footer-social a[title="TikTok"]:hover { color: #fff; }
.footer-social a[title="YouTube"]:hover { color: #FF0000; border-color: #FF0000; background: rgba(255,0,0,0.1); }
.footer-social a[title="WhatsApp"]:hover { color: #25D366; border-color: #25D366; background: rgba(37,211,102,0.1); }

.mobile-social a { color: rgba(255,255,255,0.7); }
.mobile-social a[data-icon] svg { width: 28px; height: 28px; }

.whatsapp-fab [data-icon] svg { width: 32px; height: 32px; fill: #fff; }

/* ============================================
   READ MORE BUTTON (noticias)
   ============================================ */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: var(--radius-sm);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-read-more:hover {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}

/* News card image with real photos */
.news-card-img {
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

/* Card image for grid cards */
.card .card-img-cover {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.card:hover .card-img-cover {
  transform: scale(1.03);
}

/* ============================================
   AFFILIATE BUTTON (acessorios)
   ============================================ */
.btn-affiliate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-top: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  width: 100%;
  justify-content: center;
}

.btn-affiliate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,53,0.4);
}

.btn-affiliate svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================================
   NEWS MODAL / EXPANDED READ
   ============================================ */
.news-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.news-modal-overlay.active {
  display: flex;
}

.news-modal {
  background: var(--navy-light);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}

.news-modal-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.news-modal-body {
  padding: 32px;
}

.news-modal-body h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.3;
}

.news-modal-body .modal-meta {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
}

.news-modal-body .modal-content {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.news-modal-body .modal-content p {
  margin-bottom: 16px;
}

.news-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
}

.news-modal-close:hover {
  background: var(--orange);
}

@media (max-width: 640px) {
  .hero h1 { font-size: 28px; }
  .section-header h2 { font-size: 22px; }
  .calc-row { flex-direction: column; }
  .container { padding: 0 16px; }
  .news-modal { max-height: 95vh; }
  .news-modal-body { padding: 20px; }
  .news-modal-body h2 { font-size: 20px; }
}
