/* ============================================================
   COOPFOOD — VISUAL PREMIUM VERMELHO (IFOOD STYLE)
   ============================================================ */

/* Evita rolagem lateral */
html, body { overflow-x: hidden !important; }

/* Paleta principal */
:root {
  --coop-bg: #0c0000;
  --coop-fg: #ffffff;
  --coop-muted: #d1d1d1;

  --coop-red: #ff2d2d;          /* Vermelho principal */
  --coop-red-soft: #ff4c4c;     /* Hover */
  --coop-red-dark: #470000;     /* Profundidade */

  --coop-border: rgba(255, 100, 100, 0.35);

  --coop-card: rgba(20, 0, 0, 0.72);
  --coop-card-solid: rgba(20,0,0,0.9);

  --coop-shadow: rgba(255, 50, 50, 0.55);
}

/* Corpo */
body {
  background-color: var(--coop-bg);
  color: var(--coop-fg);
}

/* ---------------------------------------------
   BOTÃO PRINCIPAL
---------------------------------------------- */
.btn-primary-soft {
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--coop-red), var(--coop-red-soft));
  color: white;
  box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
  transition: all 0.25s ease;
}

.btn-primary-soft:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(255, 0, 0, 0.65);
  filter: brightness(1.08);
}

/* Cinematic shine no botão */
.cinematic-button:hover {
  box-shadow: 0 0 75px rgba(255, 60, 60, 0.55);
}

/* ---------------------------------------------
   INPUTS
---------------------------------------------- */
.input-dark {
  background-color: rgba(20,0,0,0.8);
  border-radius: 9999px;
  border: 1px solid rgba(255, 80, 80, 0.45);
  padding: 0.9rem 1.1rem;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.input-dark:focus {
  border-color: var(--coop-red);
  box-shadow: 0 0 14px rgba(255, 80, 80, 0.65);
  transform: scale(1.02);
}

.input-dark::placeholder { color: #999; }

/* ---------------------------------------------
   BENEFÍCIOS — CARDS
---------------------------------------------- */
.beneficio-card {
  background: var(--coop-card);
  border: 1px solid rgba(255, 80, 80, 0.35);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 60, 60, 0.08);
}

.beneficio-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 80, 80, 0.9);
  box-shadow:
    0 12px 40px rgba(255, 0, 0, 0.25),
    0 0 55px rgba(255, 0, 0, 0.32);
}

/* Ícone */
.beneficio-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(255, 60, 60, 0.15);
  border: 1px solid rgba(255, 60, 60, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  transition: all 0.35s ease;
}

.beneficio-card:hover .beneficio-icon {
  background: rgba(255, 90, 90, 0.3);
  border-color: rgba(255, 120, 120, 1);
  box-shadow: 0 0 22px rgba(255, 80, 80, 0.55);
  transform: scale(1.08);
}

/* Shine effect */
.beneficio-card::after {
  content: "";
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
      115deg,
      rgba(255,255,255,0) 40%,
      rgba(255,255,255,0.22) 50%,
      rgba(255,255,255,0) 60%
  );
  transform: translateX(-120%);
  transition: transform 0.8s ease;
}

.beneficio-card:hover::after {
  transform: translateX(120%);
}

/* Título */
.beneficio-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  transition: all 0.35s ease;
}

.beneficio-card:hover .beneficio-title {
  color: var(--coop-red);
  text-shadow: 0 0 18px rgba(255, 80, 80, 0.55);
}

/* Texto */
.beneficio-text {
  color: #e3e3e3;
  font-size: 1rem;
  line-height: 1.55;
}

/* ---------------------------------------------
   PROCESSO (NÚMEROS)
---------------------------------------------- */
.processo-badge {
  width: 78px;
  height: 78px;
  border-radius: 9999px;
  background: rgba(255, 80, 80, 0.12);
  border: 2px solid rgba(255, 80, 80, 0.65);
  color: #ff8585;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  transition: all 0.4s ease;
}

.processo-item:hover .processo-badge {
  background: rgba(255, 80, 80, 0.25);
  border-color: rgba(255, 120, 120, 1);
  box-shadow: 0 0 25px rgba(255, 80, 80, 0.45);
  transform: scale(1.06);
}

/* Linha animada */
.processo-line {
  width: 2px;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255, 80, 80, 0.1),
    rgba(255, 80, 80, 0.5),
    rgba(255, 80, 80, 0)
  );
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.processo-line::after {
  content: "";
  position: absolute;
  top: -100%;
  width: 100%;
  height: 50%;
  background: rgba(255, 120, 120, 0.7);
  filter: blur(8px);
  animation: linePulseRed 3s infinite ease-in-out;
}

@keyframes linePulseRed {
  0% { top: -100%; }
  50% { top: 130%; }
  100% { top: -100%; }
}

.processo-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
}

.processo-item:hover .processo-title {
  color: var(--coop-red);
  text-shadow: 0 0 14px rgba(255, 80, 80, 0.55);
}

/* ---------------------------------------------
   DEPOIMENTOS
---------------------------------------------- */
.depo-card {
  background: var(--coop-card-solid);
  border: 1px solid rgba(255, 80, 80, 0.35);
  border-radius: 1.5rem;
  padding: 2.4rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 60, 60, 0.15);
}

.depo-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 120, 120, 1);
  box-shadow:
    0 14px 50px rgba(255, 0, 0, 0.25),
    0 0 50px rgba(255, 0, 0, 0.33);
}

.depo-icon {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--coop-red);
  transition: all 0.35s ease;
}

.depo-card:hover .depo-icon {
  text-shadow: 0 0 18px rgba(255, 80, 80, 0.55);
}

/* Shine swipe */
.depo-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 280%;
  height: 280%;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0) 60%
  );
  transform: translateX(-120%);
  transition: transform 0.9s ease;
}

.depo-card:hover::after {
  transform: translateX(120%);
}

/* ---------------------------------------------
   ITENS DA ENGENHARIA
---------------------------------------------- */
.eng-item {
  background: var(--coop-card);
  border: 1px solid rgba(255, 80, 80, 0.25);
  border-radius: 1rem;
  padding: 1.6rem 1.9rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: all 0.35s ease;
}

.eng-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 120, 120, 1);
  box-shadow:
    0 12px 40px rgba(255, 0, 0, 0.28),
    0 0 65px rgba(255, 0, 0, 0.32);
}

.eng-icon {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 120, 120, 0.45);
  color: var(--coop-red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.eng-item:hover .eng-icon {
  background: rgba(255, 80, 80, 0.25);
  box-shadow: 0 0 20px rgba(255, 80, 80, 0.45);
  color: #ff7a7a;
}

/* ---------------------------------------------
   ANIMAÇÕES UNIVERSAIS
---------------------------------------------- */
@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.animate-floating {
  animation: floating 6s ease-in-out infinite;
}

/* Fade */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0px); }
}

.animate-fade-in {
  animation: fade-in 0.6s ease forwards;
}


/* Shine Swipe nos cards da seção Verdade */
.verdade-card::after {
    content: "";
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        115deg,
        rgba(255,255,255,0) 40%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0) 60%
    );
    transform: translateX(-120%);
    transition: transform 0.9s ease-in-out;
    pointer-events: none;
}

.verdade-card:hover::after {
    transform: translateX(120%);
}

.verdade-card:hover {
    transform: translateY(-8px);
    transition: 0.35s;
    border-color: rgba(255,0,0,0.55);
    box-shadow: 0 12px 40px rgba(255,0,0,0.25),
                0 0 45px rgba(255,0,0,0.35);
}
