/* =========================================================
   CONECTA LOS ÁNGELES
   styles.css
========================================================= */

:root {
  --black: #1A0F0B;
  --chocolate: #3B2420;
  --terracotta: #C47A5A;
  --nude: #F3C6B6;
  --ivory: #F8E9DD;
  --gold: #D4AF7B;
  --white: #FFFAF6;

  --container: 1380px;

  --shadow-soft:
    0 20px 60px rgba(26, 15, 11, 0.12);

  --shadow-dark:
    0 25px 70px rgba(0, 0, 0, 0.32);

  --radius-medium: 24px;
  --radius-large: 34px;

  --transition:
    260ms cubic-bezier(.2, .75, .25, 1);
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;

  color: var(--black);

  background:
    var(--ivory);

  font-family:
    Arial,
    Helvetica,
    sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
a {
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}


/* =========================================================
   GENERALES
========================================================= */

section {
  position: relative;
}

.section-kicker {
  margin-bottom: 14px;

  color: var(--terracotta);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;

  text-transform: uppercase;
}

.section-heading {
  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  margin:
    0 auto 52px;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 48px;
}

.section-heading h2 {
  max-width: 760px;

  margin-bottom: 0;

  color: var(--chocolate);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.3rem, 4vw, 4.6rem);

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.045em;
}

.section-heading h2 span {
  color: var(--terracotta);
  font-style: italic;
}

.section-heading-description,
.section-heading > p {
  max-width: 520px;

  margin-bottom: 0;

  color:
    rgba(59, 36, 32, 0.65);

  line-height: 1.8;
}

.section-heading.centered {
  max-width: 900px;

  display: block;

  text-align: center;
}

.section-heading.centered h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-heading.centered > p {
  margin:
    22px auto 0;
}


/* =========================================================
   BOTONES
========================================================= */

.btn {
  min-height: 52px;

  padding:
    0 28px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border-radius: 999px;

  font-weight: 800;

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform:
    translateY(-3px);
}

.btn-primary {
  color: var(--ivory);

  background:
    linear-gradient(
      135deg,
      var(--terracotta),
      #9A5B45
    );

  box-shadow:
    0 14px 34px
    rgba(196, 122, 90, 0.28);
}

.btn-secondary {
  color: var(--ivory);

  border:
    1px solid
    rgba(248, 233, 221, 0.4);

  background:
    rgba(248, 233, 221, 0.08);

  backdrop-filter:
    blur(12px);
}

.btn-secondary:hover {
  color: var(--black);
  background: var(--ivory);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;

  z-index: 1000;

  top: 0;
  left: 0;
  right: 0;

  height: 84px;

  border-bottom:
    1px solid
    rgba(212, 175, 123, 0.14);

  background:
    rgba(26, 15, 11, 0.91);

  backdrop-filter:
    blur(18px);
}

.site-header.scrolled {
  background:
    rgba(26, 15, 11, 0.98);

  box-shadow:
    0 12px 40px
    rgba(0, 0, 0, 0.16);
}

.header-inner {
  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  height: 100%;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    auto 1fr auto;

  align-items: center;

  gap: 28px;
}

.brand-logo {
  width: 66px;
  height: 66px;

  object-fit: contain;
}

.main-nav {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 25px;
}

.main-nav a {
  position: relative;

  color:
    rgba(248, 233, 221, 0.78);

  font-size: 0.88rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--ivory);
}

.header-cta {
  padding:
    13px 22px;

  border-radius: 999px;

  color: var(--black);

  background:
    linear-gradient(
      135deg,
      #F2D6AA,
      var(--gold)
    );

  font-size: 0.88rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height:
    min(100vh, 940px);

  display: flex;

  align-items: center;

  overflow: hidden;

  background:
    var(--black);
}

.hero-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(20, 10, 7, 0.94),
      rgba(20, 10, 7, 0.74) 35%,
      rgba(20, 10, 7, 0.18)
    );
}

.hero::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 180px;

  background:
    linear-gradient(
      to top,
      var(--ivory),
      transparent
    );
}

.hero-content {
  position: relative;

  z-index: 3;

  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  margin: 0 auto;

  padding:
    160px 0 130px;

  color: var(--ivory);
}

.hero .eyebrow {
  margin-bottom: 25px;

  color: var(--gold);

  font-size: 0.74rem;
  font-weight: 800;

  letter-spacing: 0.28em;
}

.hero h1 {
  max-width: 780px;

  margin-bottom: 30px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(3.6rem, 7vw, 7.3rem);

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;

  color: var(--nude);

  font-style: italic;
}

.hero-description {
  max-width: 620px;

  margin-bottom: 36px;

  color:
    rgba(248, 233, 221, 0.78);

  font-size:
    clamp(1rem, 1.4vw, 1.22rem);

  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;
}

.hero-mini-info {
  margin-top: 60px;

  display: flex;
  flex-wrap: wrap;

  gap: 46px;
}

.hero-mini-info div {
  position: relative;

  padding-left: 18px;
}

.hero-mini-info div::before {
  content: "";

  position: absolute;

  left: 0;
  top: 3px;
  bottom: 3px;

  width: 1px;

  background:
    var(--gold);
}

.hero-mini-info strong {
  display: block;

  margin-bottom: 5px;
}

.hero-mini-info span {
  color:
    rgba(248, 233, 221, 0.56);

  font-size: 0.8rem;
}


/* =========================================================
   CONTRATAR PLAN
========================================================= */

.join-section {
  padding:
    30px 0 120px;

  background:
    linear-gradient(
      180deg,
      var(--ivory),
      #FFFAF6
    );
}

.join-banner {
  position: relative;

  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  min-height: 390px;

  margin:
    0 auto 100px;

  display: flex;

  align-items: center;

  overflow: hidden;

  border-radius:
    var(--radius-large);

  box-shadow:
    var(--shadow-soft);
}

.join-banner-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.join-banner-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(26, 15, 11, 0.91),
      rgba(26, 15, 11, 0.58) 50%,
      rgba(26, 15, 11, 0.05)
    );
}

.join-banner-content {
  position: relative;

  z-index: 2;

  max-width: 680px;

  padding: 70px;

  color: var(--ivory);
}

.join-banner-content
.section-kicker {
  color: var(--gold);
}

.join-banner-content h2 {
  margin-bottom: 24px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.7rem, 5vw, 5.4rem);

  font-weight: 400;

  line-height: 0.96;
}

.join-banner-content h2 span {
  display: block;

  color: var(--nude);

  font-style: italic;
}

.join-banner-content p {
  margin-bottom: 0;

  color:
    rgba(248, 233, 221, 0.74);

  line-height: 1.8;
}


/* =========================================================
   CATEGORÍAS
========================================================= */

.category-grid {
  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(5, minmax(0, 1fr));

  gap: 18px;
}

.category-card {
  position: relative;

  aspect-ratio: 1 / 1;

  padding: 0;

  overflow: hidden;

  border-radius: 24px;

  background:
    var(--black);

  cursor: pointer;

  box-shadow:
    0 16px 44px
    rgba(59, 36, 32, 0.12);

  transition:
    transform var(--transition);
}

.category-card img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 700ms ease;
}

.category-card:hover img {
  transform:
    scale(1.07);
}

.category-card-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(26, 15, 11, 0.92),
      rgba(26, 15, 11, 0.08) 65%
    );
}

.category-card-content {
  position: absolute;

  z-index: 2;

  left: 22px;
  right: 22px;
  bottom: 22px;

  color: var(--ivory);

  text-align: left;
}

.category-card-content > span {
  display: block;

  margin-bottom: 7px;

  color: var(--gold);

  font-size: 0.68rem;
  font-weight: 800;
}

.category-card-content h3 {
  margin-bottom: 7px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.3rem, 2vw, 1.9rem);

  font-weight: 400;
}

.category-card-content p {
  margin-bottom: 0;

  color:
    rgba(248, 233, 221, 0.7);

  font-size: 0.8rem;

  line-height: 1.4;
}


/* =========================================================
   NEGOCIOS
========================================================= */

.business-section {
  padding:
    125px 0;

  background:
    #FFFAF6;
}

.business-filters {
  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  margin:
    0 auto 30px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 10px;
}

.filter-button {
  padding:
    11px 18px;

  border:
    1px solid
    rgba(59, 36, 32, 0.12);

  border-radius: 999px;

  color:
    rgba(59, 36, 32, 0.78);

  background:
    rgba(248, 233, 221, 0.58);

  cursor: pointer;
}

.filter-button.active {
  color: var(--ivory);

  border-color:
    var(--terracotta);

  background:
    var(--terracotta);
}

.business-search {
  width:
    min(
      700px,
      calc(100% - 48px)
    );

  margin:
    0 auto 52px;

  padding:
    0 22px;

  display: flex;

  align-items: center;

  gap: 12px;

  border:
    1px solid
    rgba(59, 36, 32, 0.1);

  border-radius: 999px;

  background:
    rgba(248, 233, 221, 0.7);
}

.business-search input {
  width: 100%;

  min-height: 54px;

  border: 0;

  outline: 0;

  background: transparent;
}

.business-grid {
  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;
}

.business-card {
  overflow: hidden;

  border:
    1px solid
    rgba(59, 36, 32, 0.08);

  border-radius:
    var(--radius-medium);

  background:
    var(--white);

  box-shadow:
    0 16px 44px
    rgba(59, 36, 32, 0.07);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.business-card:hover {
  transform:
    translateY(-8px);

  box-shadow:
    0 26px 64px
    rgba(59, 36, 32, 0.13);
}

.business-card-image {
  position: relative;

  aspect-ratio:
    16 / 10;

  overflow: hidden;

  background:
    var(--nude);
}

.business-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* =========================================================
   MODO LOGO EN EXPLORA NEGOCIOS
========================================================= */

.business-card-image.business-logo-mode {
  padding: 8px;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at center,
      rgba(212, 175, 123, 0.15),
      transparent 64%
    ),
    linear-gradient(
      145deg,
      #1A0F0B,
      #2B1712
    );
}

.business-card-image.business-logo-mode img {
  width: 96%;
  height: 96%;

  object-fit: contain;

  object-position: center;

  filter:
    drop-shadow(
      0 14px 28px
      rgba(0, 0, 0, 0.3)
    );
}

.business-card:hover
.business-card-image.business-logo-mode img {
  transform:
    scale(1.025);
}

.business-badges {
  position: absolute;

  z-index: 5;

  top: 14px;
  left: 14px;

  display: flex;
  flex-wrap: wrap;

  gap: 7px;
}

.business-badge {
  padding:
    7px 10px;

  border-radius: 999px;

  color: var(--black);

  background:
    rgba(248, 233, 221, 0.94);

  font-size: 0.67rem;
  font-weight: 800;
}

.business-badge.founder {
  color: var(--ivory);

  background:
    rgba(196, 122, 90, 0.94);
}

.business-card-content {
  padding: 24px;
}

.business-category {
  margin-bottom: 8px;

  color: var(--terracotta);

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.business-name {
  margin-bottom: 12px;

  color: var(--chocolate);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.65rem;

  font-weight: 400;
}

.business-description {
  min-height: 52px;

  margin-bottom: 22px;

  color:
    rgba(59, 36, 32, 0.64);

  font-size: 0.9rem;

  line-height: 1.65;
}

.business-card-footer {
  padding-top: 18px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 18px;

  border-top:
    1px solid
    rgba(59, 36, 32, 0.08);
}

.business-location {
  color:
    rgba(59, 36, 32, 0.5);

  font-size: 0.76rem;
}

.business-view-button {
  color: var(--terracotta);

  font-size: 0.84rem;
  font-weight: 800;
}


/* =========================================================
   FUNDADORAS
========================================================= */

.founders-section {
  padding:
    120px 0;

  color: var(--ivory);

  background:
    linear-gradient(
      145deg,
      #1A0F0B,
      #2B1813 55%,
      #3B2420
    );
}

.founders-banner {
  position: relative;

  z-index: 2;

  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  margin:
    0 auto 95px;

  overflow: hidden;

  border:
    1px solid
    rgba(212, 175, 123, 0.2);

  border-radius:
    var(--radius-large);

  box-shadow:
    var(--shadow-dark);
}

.founders-banner img {
  width: 100%;

  max-height: 640px;

  object-fit: cover;
}

.founders-section
.section-heading h2 {
  color: var(--ivory);
}

.founders-section
.section-heading-description {
  color:
    rgba(248, 233, 221, 0.62);
}

.founders-section
.section-kicker {
  color: var(--gold);
}

.founder-brand-grid {
  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 22px;
}

.founder-brand-card {
  overflow: hidden;

  border:
    1px solid
    rgba(212, 175, 123, 0.18);

  border-radius: 24px;

  background:
    rgba(248, 233, 221, 0.05);

  transition:
    transform var(--transition);
}

.founder-brand-card:hover {
  transform:
    translateY(-8px);
}


/* =========================================================
   LOGOS FUNDADORAS — GRANDES
========================================================= */

.founder-brand-image {
  position: relative;

  aspect-ratio: 1 / 1;

  padding: 5px;

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(212, 175, 123, 0.15),
      transparent 66%
    ),
    linear-gradient(
      145deg,
      #1A0F0B,
      #2A1712
    );
}

.founder-brand-image img {
  width: 97%;
  height: 97%;

  max-width: none;
  max-height: none;

  object-fit: contain;

  object-position: center;

  filter:
    drop-shadow(
      0 16px 32px
      rgba(0, 0, 0, 0.34)
    );

  transition:
    transform 400ms ease;
}

.founder-brand-card:hover
.founder-brand-image img {
  transform:
    scale(1.025);
}

.founder-badge {
  position: absolute;

  z-index: 5;

  top: 14px;
  left: 14px;

  padding:
    8px 12px;

  border-radius: 999px;

  color: var(--black);

  background:
    rgba(248, 233, 221, 0.95);

  font-size: 0.65rem;
  font-weight: 800;
}

.founder-brand-content {
  padding: 22px;
}

.founder-brand-category {
  margin-bottom: 8px;

  color: var(--gold);

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.founder-brand-name {
  margin-bottom: 10px;

  color: var(--ivory);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.5rem;

  font-weight: 400;
}

.founder-brand-description {
  min-height: 70px;

  margin-bottom: 18px;

  color:
    rgba(248, 233, 221, 0.58);

  font-size: 0.85rem;

  line-height: 1.6;
}

.founder-brand-link {
  color: var(--nude);

  font-size: 0.82rem;
  font-weight: 800;
}


/* =========================================================
   FUNCIONES
========================================================= */

.features-section {
  padding:
    130px 0;

  background:
    linear-gradient(
      180deg,
      #FFFAF6,
      var(--ivory)
    );
}

.feature-grid {
  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 28px;
}

.feature-card {
  display: grid;

  grid-template-columns:
    1.1fr 0.9fr;

  overflow: hidden;

  border-radius:
    var(--radius-large);

  background:
    var(--white);

  box-shadow:
    var(--shadow-soft);
}

.feature-image {
  min-height: 420px;
}

.feature-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.feature-content {
  padding:
    42px 34px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.feature-number {
  margin-bottom: 22px;

  color: var(--gold);

  font-size: 0.7rem;
  font-weight: 800;
}

.feature-content h3 {
  margin-bottom: 16px;

  color: var(--chocolate);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(1.8rem, 2.5vw, 2.8rem);

  font-weight: 400;
}

.feature-content p {
  color:
    rgba(59, 36, 32, 0.62);

  line-height: 1.7;
}


/* =========================================================
   PLANES
========================================================= */

.plans-section {
  padding:
    130px 0;

  background:
    linear-gradient(
      135deg,
      #2A1712,
      #1A0F0B
    );
}

.plans-layout {
  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1.08fr 0.92fr;

  align-items: center;

  gap: 70px;
}

.plans-image {
  overflow: hidden;

  border-radius:
    var(--radius-large);

  box-shadow:
    var(--shadow-dark);
}

.plans-copy h2 {
  color: var(--ivory);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.6rem, 4.6vw, 5.2rem);

  font-weight: 400;
}

.plans-copy h2 span {
  display: block;

  color: var(--nude);

  font-style: italic;
}

.plans-copy > p {
  color:
    rgba(248, 233, 221, 0.66);

  line-height: 1.8;
}

.plans-benefits {
  margin-bottom: 36px;

  display: grid;

  gap: 14px;
}

.plans-benefits div {
  display: flex;

  align-items: center;

  gap: 13px;
}

.plans-benefits span {
  width: 28px;
  height: 28px;

  display: flex;

  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(212, 175, 123, 0.4);

  border-radius: 50%;

  color: var(--gold);
}

.plans-benefits p {
  margin: 0;

  color:
    rgba(248, 233, 221, 0.74);
}


/* =========================================================
   RECOMENDADOS
========================================================= */

.recommended-section {
  padding:
    130px 0;

  background:
    #FFFAF6;
}

.recommended-layout {
  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1.1fr 0.9fr;

  align-items: center;

  gap: 54px;
}

.recommended-image {
  overflow: hidden;

  border-radius:
    var(--radius-large);
}

.recommended-grid {
  display: grid;

  gap: 16px;
}

.recommended-item {
  padding: 20px;

  display: grid;

  grid-template-columns:
    74px 1fr auto;

  align-items: center;

  gap: 18px;

  border-radius: 18px;

  background:
    var(--white);
}

.recommended-item img {
  width: 74px;
  height: 74px;

  object-fit: contain;

  border-radius: 15px;
}


/* =========================================================
   CTA FINAL
========================================================= */

.final-cta {
  padding:
    120px 24px;

  background:
    linear-gradient(
      135deg,
      var(--terracotta),
      #8E533E
    );
}

.final-cta-inner {
  max-width: 900px;

  margin: 0 auto;

  text-align: center;
}

.final-cta h2 {
  color: var(--ivory);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.8rem, 5.3vw, 5.8rem);

  font-weight: 400;
}

.final-cta h2 span {
  display: block;

  color: #FFE4D7;

  font-style: italic;
}

.final-cta p {
  max-width: 640px;

  margin:
    0 auto 34px;

  color:
    rgba(255, 250, 246, 0.8);

  line-height: 1.8;
}

.final-cta-actions {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  color: var(--ivory);

  background:
    #120A08;
}

.footer-main {
  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  margin: 0 auto;

  padding:
    80px 0 60px;

  display: grid;

  grid-template-columns:
    1.6fr repeat(3, 1fr);

  gap: 60px;
}

.footer-brand img {
  width: 110px;

  margin-bottom: 24px;
}

.footer-brand p {
  color:
    rgba(248, 233, 221, 0.55);

  line-height: 1.7;
}

.footer-column {
  display: flex;

  flex-direction: column;

  gap: 13px;
}

.footer-column h3 {
  color: var(--gold);
}

.footer-column a {
  color:
    rgba(248, 233, 221, 0.58);
}

.footer-bottom {
  width:
    min(
      var(--container),
      calc(100% - 48px)
    );

  margin: 0 auto;

  padding:
    24px 0 32px;

  display: flex;

  justify-content: space-between;

  border-top:
    1px solid
    rgba(248, 233, 221, 0.08);
}


/* =========================================================
   WHATSAPP
========================================================= */

.floating-whatsapp {
  position: fixed;

  z-index: 950;

  right: 24px;
  bottom: 24px;

  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: var(--ivory);

  background:
    linear-gradient(
      135deg,
      var(--terracotta),
      #8F5540
    );

  box-shadow:
    0 16px 40px
    rgba(26, 15, 11, 0.28);
}


/* =========================================================
   ANIMACIONES
========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(30px);

  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1180px) {

  .category-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

  .business-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .founder-brand-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns:
      1fr;
  }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 760px) {

  .section-heading,
  .category-grid,
  .business-filters,
  .business-grid,
  .founder-brand-grid,
  .feature-grid,
  .plans-layout,
  .recommended-layout,
  .footer-main,
  .footer-bottom,
  .founders-banner,
  .join-banner {
    width:
      calc(100% - 30px);
  }

  .hero-content {
    width:
      calc(100% - 30px);
  }

  .category-grid {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 12px;
  }

  .business-grid {
    grid-template-columns:
      1fr;
  }

  .founder-brand-grid {
    grid-template-columns:
      1fr;
  }

  .feature-card {
    grid-template-columns:
      1fr;
  }

  .plans-layout,
  .recommended-layout {
    grid-template-columns:
      1fr;
  }

  .footer-main {
    grid-template-columns:
      1fr;
  }

  .footer-bottom {
    flex-direction:
      column;
  }

  .founder-brand-image img {
    width: 98%;
    height: 98%;
  }

  .business-card-image.business-logo-mode img {
    width: 98%;
    height: 98%;
  }

}