html {
  scroll-behavior: smooth;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  isolation: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
}

/* NAV — desktop: fixed alinhado ao header */
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 80px; /* mesma altura do header */
  z-index: 8001;
  background: transparent;
  pointer-events: all;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    transform: translateX(110%);
    height: 100vh;
    width: 72vw;
    max-width: 280px;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    padding: 90px 32px 40px;
    gap: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 8001;
  }

  .nav.open {
    transform: translateX(0);
  }
}

.nav a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav a:hover, .nav a.active {
  color: #e07b00;
  border-bottom: 2px solid #e07b00;
  padding-bottom: 2px;
}

.header-contact {
  font-size: 0.78rem;
  color: #555;
  text-align: right;
  line-height: 1.9;
}

.header-contact i { color: #e07b00; margin-right: 5px; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #3a2008 0%, #6b3a10 40%, #a85c20 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('fundo.jpg') repeat;
  background-attachment: fixed;
  background-size: 600px auto;
  opacity: 0.18;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.hero-text { flex: 1; }

.hero-tag {
  display: inline-block;
  background: rgba(245, 166, 35, 0.25);
  color: #f5c842;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(245, 166, 35, 0.4);
}

.hero-text h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.highlight { color: #f5a623; }

.hero-text p {
  color: #f0d9b5;
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: #e07b00;
  color: #fff;
  border: 2px solid #e07b00;
}

.btn-primary:hover { background: #c46a00; border-color: #c46a00; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover { background: rgba(255,255,255,0.12); }

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 380px;
  width: 100%;
  display: block;
}

/* ── ANIMAÇÃO DO LOGO HERO ── */
@keyframes logoWiggle {
  0%   { transform: scale(1)    rotate(0deg); }
  8%   { transform: scale(1.1)  rotate(-5deg); }
  16%  { transform: scale(1.12) rotate(5deg); }
  24%  { transform: scale(1.1)  rotate(-4deg); }
  32%  { transform: scale(1.08) rotate(3deg); }
  40%  { transform: scale(1.04) rotate(-1deg); }
  50%  { transform: scale(1)    rotate(0deg); }
  100% { transform: scale(1)    rotate(0deg); }
}

.hero-logo {
  max-width: 380px;
  width: 100%;
  display: block;
  transform-origin: center center;
}

.hero-logo.wiggle {
  animation: logoWiggle 3s ease-in-out forwards;
}

/* FEATURES */
.features {
  background: #fdf6ee;
  border-bottom: 1px solid #ecdcc8;
}

.features-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 28px 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  font-size: 1.8rem;
  background: #fff3e0;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(224,123,0,0.15);
}

.feature-item strong {
  display: block;
  font-size: 0.92rem;
  color: #333;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.78rem;
  color: #777;
}

/* DELIVERY BAR */
.delivery-bar {
  background: linear-gradient(90deg, #1a3a1a 0%, #2e7d32 50%, #1a3a1a 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.delivery-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.03) 18px,
    rgba(255,255,255,0.03) 36px
  );
}

.delivery-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.delivery-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.delivery-img {
  height: 100px;
  width: auto;
  display: block;
  animation: deliveryBounce 1.8s ease-in-out infinite;
}

@keyframes deliveryBounce {
  0%, 100% { transform: translateX(0); }
  30%       { transform: translateX(8px); }
  60%       { transform: translateX(-4px); }
}

.delivery-text {
  flex: 1;
  min-width: 200px;
}

.delivery-text strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.delivery-text span {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}

.delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1a5c1a;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.delivery-btn:hover {
  background: #e8f5e9;
  transform: translateY(-2px);
}

.delivery-btn i {
  font-size: 1rem;
  color: #25d366;
}

@media (max-width: 600px) {
  .delivery-inner { justify-content: center; text-align: center; }
  .delivery-text { text-align: center; }
}

/* PRODUCTS */
.products {
  padding: 56px 20px;
  background: #fff;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #333;
}

.section-sub {
  font-size: 0.9rem;
  color: #999;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.2s ease;
}

.product-card.visible:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18) !important;
}
.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.product-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(58, 32, 8, 0.85);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 0;
}

.product-label-green {
  background: rgba(34, 120, 50, 0.88);
}

/* GRASS SECTION */
.grass {
  background: #f0f7f0;
  padding: 60px 20px;
  border-top: 1px solid #d4e8d4;
  border-bottom: 1px solid #d4e8d4;
}

.grass-inner {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}

.grass-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #227832;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  z-index: 1;
}

.grass-content {
  display: flex;
  align-items: stretch;
}

.grass-text {
  flex: 1.2;
  padding: 52px 40px 40px;
}

.grass-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a3a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.highlight-green { color: #2e9e48; }

.grass-text > p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.grass-types {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.grass-type {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f4faf4;
  border-radius: 12px;
  padding: 16px 18px;
}

.grass-type-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.grass-type strong {
  display: block;
  font-size: 0.95rem;
  color: #1a3a1a;
  margin-bottom: 3px;
}

.grass-type p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

.btn-green {
  background: #2e9e48;
  color: #fff;
  border: 2px solid #2e9e48;
}

.btn-green:hover {
  background: #227832;
  border-color: #227832;
}

.grass-image {
  flex: 1;
  min-height: 360px;
}

.grass-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .grass-content { flex-direction: column; }
  .grass-image { min-height: 240px; }
  .grass-text { padding: 48px 24px 28px; }
}
.about {
  background: #fdf6ee;
  padding: 60px 20px;
  border-top: 1px solid #ecdcc8;
  border-bottom: 1px solid #ecdcc8;
}

.about-inner {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.about-text {
  flex: 1.2;
}

.about-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #3a2008;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-text .btn {
  margin-top: 8px;
}

.about-highlights {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(224,123,0,0.15);
}

.highlight-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e07b00, #f5a623);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(224,123,0,0.3);
}

.highlight-icon-wrap i {
  color: #fff;
  font-size: 1.2rem;
}

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 3px;
}

.highlight-item p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #3a2008 0%, #6b3a10 50%, #a85c20 100%);
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('fundo.jpg') repeat;
  background-attachment: fixed;
  background-size: 600px auto;
  opacity: 0.15;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
}

.cta-text {
  flex: 1;
}

.cta-banner h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  color: #f0d9b5;
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-address {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #f0d9b5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-address i {
  color: #f5a623;
  font-size: 1rem;
  flex-shrink: 0;
}

.cta-map {
  flex: 1;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.cta-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .cta-inner {
    flex-direction: column;
  }
  .cta-text {
    text-align: center;
  }
  .cta-address {
    justify-content: center;
  }
  .cta-map {
    width: 100%;
    height: 260px;
  }
}

/* FOOTER */
.footer {
  background: #2a1404;
  color: #c4a07a;
  padding: 44px 20px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid #4a2a0a;
}

.footer-logo {
  height: 144px;
  width: auto;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 0.84rem;
  margin-bottom: 7px;
  line-height: 1.6;
}

.footer-col i {
  color: #e07b00;
  margin-right: 7px;
  width: 14px;
}

.footer-bottom {
  text-align: center;
  padding: 16px 0;
  font-size: 0.78rem;
  color: #7a5a3a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-dev {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #5a3a1a;
}

.footer-dev a {
  display: flex;
  align-items: center;
}

.logo-infoarte {
  height: 22px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-dev a:hover .logo-infoarte {
  opacity: 1;
}

/* ── ANIMAÇÕES DE SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.from-left {
  transform: translateX(-40px);
}

.reveal.from-right {
  transform: translateX(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* delay escalonado para grupos de cards */
.reveal-group .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal-group .reveal:nth-child(6) { transition-delay: 0.5s; }
/* ── HAMBURGUER / MOBILE NAV ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #e07b00;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* X quando aberto */
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .header-contact { display: none; }
  .header-inner { justify-content: space-between; flex-wrap: nowrap; }

  .nav a {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    padding: 16px 0;
    border-bottom: 1px solid #f0e8de;
    border-radius: 0;
    display: block;
    width: 100%;
  }

  .nav a:last-child { border-bottom: none; }

  .nav a.active,
  .nav a:hover {
    color: #e07b00;
    border-bottom-color: #f0e8de;
    padding-bottom: 16px;
  }

  /* overlay escuro — atrás do menu, na frente da página */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 8000;
    display: none;
  }

  .nav-overlay.open {
    display: block;
  }
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-image { justify-content: center; }
  .about-inner { flex-direction: column; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; }
  .hero-text h1 { font-size: 1.9rem; }
  .cta-banner h2 { font-size: 1.6rem; }
}

/* ── WHATSAPP WIDGET ── */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  30%       { transform: translateY(-8px) scale(1.08); }
  60%       { transform: translateY(-3px) scale(1.03); }
}

.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none; /* o container não bloqueia cliques */
}

/* FAB button */
.wa-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  animation: waPulse 2s infinite, waBounce 3s ease-in-out infinite;
  transition: transform 0.2s;
  flex-shrink: 0;
  pointer-events: all; /* FAB sempre clicável */
}

.wa-fab:hover {
  transform: scale(1.1);
}

.wa-fab i {
  color: #fff;
  font-size: 1.8rem;
}

/* Bubble */
.wa-bubble {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  width: 300px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  pointer-events: none; /* fechado: invisível e não bloqueia */
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: bottom right;
}

.wa-bubble.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all; /* aberto: clicável */
}

.wa-bubble-header {
  background: #075e54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-bubble-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-bubble-avatar i {
  color: #fff;
  font-size: 1.3rem;
}

.wa-bubble-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wa-bubble-info strong {
  color: #fff;
  font-size: 0.9rem;
}

.wa-bubble-info span {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
}

.wa-bubble-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
  transition: color 0.2s;
}

.wa-bubble-close:hover {
  color: #fff;
}

.wa-bubble-body {
  background: #ece5dd;
  padding: 16px;
}

.wa-message {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 10px 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  position: relative;
}

.wa-message p {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 6px;
}

.wa-message p:last-of-type {
  margin-bottom: 4px;
}

.wa-time {
  font-size: 0.68rem;
  color: #999;
  display: block;
  text-align: right;
}

.wa-bubble-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 14px;
  transition: background 0.2s;
}

.wa-bubble-btn:hover {
  background: #1ebe5d;
}

.wa-bubble-btn i {
  font-size: 1.1rem;
}

/* ── RAÇÕES PARA CAVALOS ── */
.horse-feed {
  background: #fdf6ee;
  padding: 60px 20px;
  border-top: 1px solid #ecdcc8;
  border-bottom: 1px solid #ecdcc8;
}

.horse-feed-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

/* CARROSSEL */
.hf-carousel {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 6px 32px rgba(0,0,0,0.13);
  background: #fff;
  min-width: 0;
}

.hf-track {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
}

.hf-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.hf-slide.active {
  opacity: 1;
  pointer-events: all;
}

.hf-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 16px;
}

/* Botões prev/next */
.hf-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e8d5c0;
  color: #3a2008;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.hf-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hf-btn:hover {
  background: #e07b00;
  border-color: #e07b00;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(224,123,0,0.35);
}

.hf-prev { left: auto; position: static; transform: none; }
.hf-next { right: auto; position: static; transform: none; }
.hf-prev:hover, .hf-next:hover { transform: scale(1.1); }

/* Barra de controles abaixo da foto */
.hf-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 0 4px;
  background: transparent;
}

/* Dots */
.hf-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  position: static;
  transform: none;
  bottom: auto;
  left: auto;
}

.hf-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d9c4ae;
  cursor: pointer;
  transition: background 0.25s, width 0.25s, transform 0.25s;
  border: none;
}

.hf-dot.active {
  background: #e07b00;
  width: 24px;
  transform: none;
}

/* PAINEL DE INFORMAÇÕES */
.hf-info {
  flex: 1.1;
  min-width: 0;
  position: relative;
}

.hf-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
  animation: hfFadeIn 0.4s ease;
}

.hf-panel.active {
  display: flex;
}

@keyframes hfFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hf-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e07b00, #f5a623);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  align-self: flex-start;
}

.hf-badge-green {
  background: linear-gradient(135deg, #2e9e48, #4caf50);
}

.hf-badge-gold {
  background: linear-gradient(135deg, #b8860b, #d4a017);
}

.hf-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #3a2008;
  line-height: 1.2;
}

.hf-brand {
  font-size: 0.85rem;
  color: #e07b00;
  font-weight: 700;
}

.hf-desc {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.75;
}

.hf-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hf-features li {
  font-size: 0.88rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hf-features li i {
  color: #e07b00;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hf-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.hf-cta i { font-size: 1rem; }

/* Responsivo */
@media (max-width: 900px) {
  .horse-feed-inner {
    flex-direction: column;
    gap: 32px;
  }

  .hf-carousel {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .hf-cta {
    align-self: stretch;
    justify-content: center;
  }
}
