/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #c5951a;
  --gold-light: #d4af5a;
  --gold-dark: #8a6812;
  --dark: #141414;
  --dark-lighter: #1f1f1f;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #d1d1d1;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --whatsapp: #25d366;
  --whatsapp-hover: #1fb855;
  --gradient-gold: linear-gradient(135deg, #c5951a 0%, #d4af5a 100%);
  --shadow-gold: 0 4px 20px -2px rgba(197, 149, 26, 0.4);
  --shadow-card: 0 4px 30px -8px rgba(0, 0, 0, 0.1);
  --shadow-whatsapp: 0 4px 20px -2px rgba(37, 211, 102, 0.5);
  --radius: 0.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-whatsapp);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.05);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}
.btn-gold:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--dark-lighter);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.logo-text h1 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}
.logo-text p {
  color: var(--gray-500);
  font-size: 0.75rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a {
  color: var(--gray-400);
  transition: color 0.3s;
  font-size: 0.95rem;
}
.nav-desktop a:hover {
  color: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-cta .btn-whatsapp {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--dark-lighter);
}
.mobile-nav.active {
  display: block;
}
.mobile-nav a {
  display: block;
  color: var(--gray-400);
  padding: 0.75rem 0;
  transition: color 0.3s;
}
.mobile-nav a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .nav-desktop,
  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?q=80&w=2011&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 149, 26, 0.2);
  border: 1px solid rgba(197, 149, 26, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
}
.hero h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-subtitle strong {
  color: var(--white);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-buttons .btn-whatsapp,
.hero-buttons .btn-gold {
  font-size: 1.1rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 500px;
}
.hero-stat {
  text-align: center;
}
.hero-stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.hero-stat-value span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  font-family: "Inter", sans-serif;
}
.hero-stat p {
  font-size: 0.75rem;
  color: var(--gray-500);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-form-desktop {
    display: none;
  }
  .hero h2 {
    font-size: 2.5rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .hero h2 {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
}

/* ========== CONTACT FORM ========== */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--gray-300);
}
.contact-form-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  text-align: center;
}
.contact-form-wrapper .form-subtitle {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.contact-form-wrapper .form-subtitle strong {
  color: var(--gold);
}
.form-group {
  margin-bottom: 1rem;
}
.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  background: var(--gray-100);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus {
  border-color: var(--gold);
}
.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}
.form-trust {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.875rem;
}
.form-trust-item i {
  color: var(--whatsapp);
}

/* Mobile form section */
.mobile-form-section {
  display: none;
  padding: 3rem 0;
  background: var(--gray-100);
}
@media (max-width: 1024px) {
  .mobile-form-section {
    display: block;
  }
}

/* ========== SERVICES ========== */
.services {
  padding: 5rem 0;
  background: var(--gray-100);
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-label {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0.75rem 0 1rem;
}
.section-header p {
  color: var(--gray-500);
  font-size: 1.125rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px -8px rgba(0, 0, 0, 0.15);
}
.service-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: rgba(197, 149, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.service-icon i {
  color: var(--gold);
  width: 28px;
  height: 28px;
}
.service-card:hover .service-icon {
  background: var(--gold);
}
.service-card:hover .service-icon i {
  color: var(--white);
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.service-card:hover h3 {
  color: var(--gold);
}
.service-card p {
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}
.service-highlight {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}
.services-cta .btn-whatsapp {
  font-size: 1.1rem;
}

/* ========== ABOUT ========== */
.about {
  padding: 5rem 0;
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about .section-label {
  margin-bottom: 0;
}
.about h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.75rem 0 1.5rem;
}
.about-text {
  color: var(--gray-400);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.about-text strong {
  color: var(--white);
}
.about-text-secondary {
  color: var(--gray-400);
  margin-bottom: 2rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-400);
}
.about-feature i {
  color: var(--gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.about-stat {
  background: var(--dark-lighter);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
.about-stat i {
  color: var(--gold);
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
}
.about-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}
.about-stat p {
  color: var(--gray-400);
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 5rem 0;
  background: var(--gray-100);
}
.testimonials .section-header h2 {
  color: var(--dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
}
.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(197, 149, 26, 0.2);
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.testimonial-stars i {
  color: var(--gold);
  width: 20px;
  height: 20px;
}
.testimonial-card blockquote {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  border-top: 1px solid var(--gray-300);
  padding-top: 1rem;
}
.testimonial-author strong {
  color: var(--dark);
  display: block;
}
.testimonial-author span {
  color: var(--gray-500);
  font-size: 0.875rem;
}
.testimonials-badge {
  text-align: center;
  margin-top: 3rem;
}
.testimonials-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.testimonials-badge-stars {
  display: flex;
  gap: 0.25rem;
}
.testimonials-badge-stars i {
  color: var(--gold);
  width: 20px;
  height: 20px;
}
.testimonials-badge strong {
  color: var(--dark);
}
.testimonials-badge span {
  color: var(--gray-500);
}

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

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 5rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(
    circle at 2px 2px,
    var(--gold) 1px,
    transparent 0
  );
  background-size: 40px 40px;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cta-content > p {
  font-size: 1.25rem;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .btn-whatsapp,
.cta-buttons .btn-gold {
  font-size: 1.1rem;
}
.cta-info {
  color: var(--gray-500);
  margin-top: 2rem;
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .cta-content h2 {
    font-size: 2rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark-lighter);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.footer p,
.footer a,
.footer li {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer a:hover {
  color: var(--gold);
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a i {
  width: 20px;
  height: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact-item i {
  color: var(--gold);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item strong {
  color: var(--white);
  display: block;
}
.footer-contact-item span {
  color: var(--gray-500);
  font-size: 0.8rem;
}
.footer-hours-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-hours-item i {
  color: var(--gold);
  width: 20px;
  height: 20px;
}
.footer-hours-item strong {
  color: var(--white);
  display: block;
}
.footer-hours-item span {
  color: var(--gray-500);
  font-size: 0.8rem;
}
.footer-bottom {
  border-top: 1px solid var(--dark);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}
.whatsapp-float-btn {
  position: relative;
  width: 64px;
  height: 64px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
  border: none;
  cursor: pointer;
}
.whatsapp-float-btn:hover {
  transform: scale(1.1);
}
.whatsapp-float-btn i {
  color: var(--white);
  width: 32px;
  height: 32px;
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0.3;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ========== NEWS ALERTS SLIDER ========== */
.news-alerts {
  padding: 4rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.news-alerts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}
.news-alerts .section-header h2 {
  color: var(--white);
}
.news-alerts .section-header p {
  color: var(--gray-400);
}
.news-slider {
  position: relative;
  overflow: hidden;
}
.news-slides-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}
.news-slide {
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
.news-card {
  background: var(--dark-lighter);
  border: 1px solid rgba(197, 149, 26, 0.2);
  border-radius: 1rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-gold);
}
.news-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 149, 26, 0.15);
  border: 1px solid rgba(197, 149, 26, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.news-badge.urgent {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.3);
}
.news-badge.info {
  color: var(--gold);
}
.news-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.news-card-content {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.news-card-content strong {
  color: var(--white);
}
.news-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}
.news-table th {
  background: rgba(197, 149, 26, 0.15);
  color: var(--gold);
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.news-table td {
  padding: 0.75rem 1rem;
  color: var(--gray-400);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.news-table tr:last-child td {
  border-bottom: none;
}
.news-table td:last-child {
  color: var(--white);
  font-weight: 600;
}
.news-card-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.news-card-cta .btn-whatsapp,
.news-card-cta .btn-gold {
  font-size: 0.95rem;
  padding: 0.875rem 1.5rem;
}

.news-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.news-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-500);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.news-dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 6px;
}
.news-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(197, 149, 26, 0.2);
  border: 1px solid rgba(197, 149, 26, 0.3);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}
.news-nav:hover {
  background: var(--gold);
  color: var(--white);
}
.news-nav.prev {
  left: 0;
}
.news-nav.next {
  right: 0;
}

@media (max-width: 768px) {
  .news-card {
    padding: 1.5rem;
  }
  .news-card h3 {
    font-size: 1.35rem;
  }
  .news-nav {
    display: none;
  }
  .news-table {
    font-size: 0.85rem;
  }
  .news-table th,
  .news-table td {
    padding: 0.5rem 0.75rem;
  }
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* ========== FORM SPINNER ========== */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
