:root {
  /* Colores principales */
  --color-primary: #11928e;
  --color-secondary: #245251;
  --color-accent: #3d9793;
  --color-dark-teal: #163938;
  --color-muted-teal: #6a7e7e;
  --color-secondary-80: #24525180;
  --color-list-text: #254e4c;

  /* Colores de texto */
  --color-text-dark: #2e4a4c;
  --color-text-white: #ffffff;
  --color-text-white-95: #ffffff95;
  --color-text-white-90: #ffffff90;
  --color-text-white-70: #ffffff70;
  --color-text-transparent: rgba(61, 151, 147, 0.15);
  --color-black: #000000;
  --color-black-60: #00000060;
  --color-black-10: #00000010;

  /* Fondos */
  --color-body-bg: #ffffff;
  --color-background-light: #dcecec;
  --color-background-card: #e8faf9;
  --color-background-dark: #385655;

  /* Tarjetas y Productos */
  --color-card-title: #6abbb8;
  --color-card-text-light: #c9d9d9;
  --color-card-data: #b4e1e1;
  --color-card-ejecutivo: #a6c0ed;
  --color-card-dinamico: #b6e1ba;
  --color-card-comanda: #f4cfbb;

  /* Botones */
  --color-btn-ejecutivo: #3f5b8d;
  --color-btn-dinamico: #529e5a;
  --color-btn-comanda: #c06330;

  /* Sidebars */
  --color-sidebar-ejecutivo: #0f2452;
  --color-sidebar-dinamico: #153d2c;
  --color-sidebar-comanda: #963e08;

  /* Header */
  --color-header-bg: #ddd0c4;
  --color-header-btn: #5376a4;
  --color-header-nav: #b8a18c;
  --color-header-submenu: #c5b5a5;

  /* Hero */
  --color-hero-overlay: #01273290;

  /* Aside */
  --color-whatsapp: #67c15e;
  --color-email: #dd312c;

  /* Footer */
  --color-footer-bg: #092c2a;
  --color-footer-cta: #4a9591;
  --color-footer-cta-subtext: #d5fbff;
  --color-footer-cta-hover-bg: #f6ffff;
  --color-footer-hover: #3f807d;
  --color-footer-title: #cdf7f7;
  --color-footer-muted: #a0b2b2;
  --color-footer-accent: #54d0c8;
  --color-footer-bottom-bg: #00000002;
  --color-badge-bg: rgba(255, 183, 3, 0.15);
  --color-badge-border: rgba(255, 183, 3, 0.4);

  /* Elementos visuales */
  --color-hr: #2a7370;
  --color-border: #ffffff;
  --color-border-transparent: rgba(255, 255, 255, 0.12);

  /* Sombras */
  --color-shadow-cta: rgba(0, 0, 0, 0.3);
  --color-shadow-btn: rgba(0, 0, 0, 0.15);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: montserrat, sans-serif;
  background-color: var(--color-body-bg);
}

hr {
  height: 3px;
  margin: 10px;
  background-color: var(--color-hr);
}

/* ------- HEADER SECTION ------- */

header {
  background-color: var(--color-header-bg);
  position: fixed;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  width: 100vw;
  min-height: 60px;
  justify-content: space-between;
  align-items: center;
  container-type: inline-size;
  container-name: header;
  text-align: center;
  font-size: 20px;
  z-index: 20;
}

.header__menu-checkbox {
  display: none;
}

.header__open-nav-button {
  color: var(--color-header-btn);
  font-size: 3rem;
  font-weight: 600;
  position: absolute;
  right: 50px;
  z-index: 20;
}

.header__nav {
  display: none;
  background-color: var(--color-header-nav);
  position: absolute;
  width: 100vw;
  top: 60px;
  border-radius: 0 0 20px 20px;
  z-index: -1;
}

.item--productos {
  display: flex;
  text-decoration: underline;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.header__menu-checkbox:checked ~ .header__nav {
  display: flex;
  z-index: 10;
}

.header__nav-list {
  display: flex;
  padding: 20px 0;
  gap: 50px;
  flex-direction: column;
  margin: auto;
  align-items: stretch;
}

.header__logo-container {
  max-width: 100%;
  min-width: 120px;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 50px;
  z-index: 20;
  cursor: pointer;

}

.header__logo-container h2 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

.header__logo-container img {
  width: 50px;
}

.header__nav-item {
  list-style: none;
}

.header__nav-item a {
  color: var(--color-black);
}

.header__nav-item a:not(:is(:hover, :active)) {
  text-decoration: none;
}

.item--productos:not(:is(:hover, :active)) {
  text-decoration: none;
}

.header__dropdown {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header__submenu-checkbox {
  display: none;
}

.header__submenu {
  display: none;
  background-color: var(--color-header-submenu);
  position: static;
  border-radius: 0;
  top: 100%;
  width: 100vw;
  padding: 10px 0;
  margin: 0;
}

.header__submenu li {
  list-style: none;
  margin: 8px 0;
}

/* Mostrar submenu al marcar checkbox */
.header__submenu-checkbox:checked ~ .header__submenu {
  display: block;
}

/* ------- HEADER QUERIES ------- */

@container header (min-width: 600px) {
  .header__nav {
    display: flex;
    position: static;
    background-color: transparent;
    flex-direction: row;
    margin: 0;
    z-index: 20;
    height: 60px;
    justify-content: space-between;
  }

  .header__nav-list {
    flex-direction: row;
    align-items: center;
    padding: 0;
    height: 100%;
    width: auto;
    gap: 20px;
    margin-right: 40px;
  }

  .header__open-nav-button {
    display: none;
  }

  .header__dropdown {
    height: 100%;
  }

  .header__submenu-checkbox {
    display: none;
  }

  .header__submenu {
    position: absolute;

    border-radius: 0 0 20px 20px;
    top: 100%;
    width: 100%;
    padding: 10px 0;
  }
}

/* ------- ASIDE SECTION ------- */
.aside-buttons {
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 10px;
  padding: 10px;
  flex-direction: column;
  gap: 20px;
  z-index: 30;
}

.aside-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0px 2px 10px var(--color-black-60);
}

.mail-button {
  background-color: var(--color-email);
}

.whatsapp-button {
  background-color: var(--color-whatsapp);
}

.aside-buttons a svg {
  width: 2rem;
  color: var(--color-text-white);
}

/* ------- ASIDE QUERIES ------- */

/* ------- HERO SECTION ------- */

.hero {
  container-type: inline-size;
  container-name: hero;
}

.hero__wrapper {
  background-image: linear-gradient(var(--color-hero-overlay)), url("../images/mesaas.jpg");
  display: flex;
  padding: 70px 20px 0 20px;

  background-position: center;
  background-size: cover;

  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: 300px;
}

.hero h1 {
  color: var(--color-text-white);
  text-align: center;
  margin: 0;
  font-weight: 400;
  font-size: 1.5rem;
}

.hero h3 {
  color: var(--color-text-white-70);
  text-align: center;
  margin: 0;
  font-size: 1rem;
}

.hero img {
  max-width: 100%;
  margin-bottom: 10px;
  width: 100px;
}

/* ------- HERO QUERIES ------- */

@container hero (min-width: 600px) {
  .hero__wrapper {
    padding: 80px 50px 0 50px;
    height: 650px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h3 {
    text-align: center;
    margin: 0;
    font-size: 1.5rem;
  }

  .hero img {
    width: 450px;
  }
}

/* ------- WHO IS MASTERCHEF SECTION ------- */

.description {
  width: 100%;
  container-type: inline-size;
  container-name: main;
}

.description h2 {
  text-align: center;
  font-size: 2rem;
  margin: 1rem 0;
  color: var(--color-accent);
}

.description h2 span {
  display: block;
  font-weight: 700;
}

.description-wrapper {
  display: flex;
  flex-direction: column;
  background-color: var(--color-background-light);
  width: 100%;
  min-height: 400px;
  margin: auto;
}

.description-wrapper__data-container {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.description-wrapper__img-container {
  flex: 1;
}

.description-wrapper__img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.description-wrapper__data-container p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.description-wrapper__data-container p span {
  font-weight: 700;
}

.description-wrapper__data-container button {
  align-self: flex-end;
  width: fit-content;
  margin-top: 2rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  background-color: var(--color-accent);
  color: var(--color-text-white);
  font-size: 1rem;
  cursor: pointer;
}

.description-wrapper__data-container h2 {
  font-size: 3rem;
  color: var(--color-text-transparent);
}

/* ------- WHO IS MASTERCHEF QUERIES ------- */

@container main (min-width: 600px) {
  .description-wrapper {
    display: flex;
    flex-direction: row;
    background-color: var(--color-background-light);
    width: 100%;
    min-height: 300px;
    margin: auto;
  }

  .description h2 {
    margin: 3rem 0;
    font-size: 4rem;
  }

  .description-wrapper__data-container p {
    font-size: 1.5rem;
  }

  .description-wrapper__data-container {
    padding-left: 100px;
    padding-right: 50px;
  }

  .description-wrapper__data-container button {
    font-size: 2rem;
  }

  .description-wrapper__data-container h2 {
    font-size: 4rem;
  }
}

/* ------- CHARACTERISTICS SECTION ------- */
.characteristics {
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  container-type: inline-size;
  container-name: characteristics;
  width: 100%;
  box-sizing: border-box;
  padding: 50px;
}

.characteristics__text-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.characteristics h2 {
  color: var(--color-primary);
  font-size: 2rem;
  text-align: center;
}

.characteristics__text-wrapper p {
  color: var(--color-secondary);
  font-size: 1rem;
  text-wrap: pretty;
  text-align: center;
}

.characteristics__text-wrapper img {
  position: absolute;
  opacity: 0.1;
  width: 64px;
  object-fit: cover;
  z-index: -10;
}

.characteristics__cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  width: 100%;
  padding: 0 50px;
  justify-content: center;
}

.characteristics__card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  background-color: var(--color-background-card);
  border-radius: 20px;
  padding: 0 0 50px;
  box-shadow: 0 8px 10px var(--color-black-10);
}

.mid-card {
  background-color: var(--color-background-dark);
}

.characteristics__card img {
  border-bottom: 5px solid var(--color-background-dark);
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.mid-card img {
  border-bottom: 5px solid var(--color-background-card);
}

.characteristics__card h3 {
  color: var(--color-card-title);
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  margin: 20px 20px 0;
}

.mid-card h3 {
  color: var(--color-background-card);
}

.characteristics__card p {
  color: var(--color-secondary);
  padding: 20px;
  font-size: 1rem;
  text-wrap: pretty;
  text-align: center;
}

.mid-card p {
  color: var(--color-card-text-light);
}

/* ------- CHARACTERISTICS QUERIES ------- */
@container characteristics (min-width: 600px) {
  .characteristics h2 {
    font-size: 4rem;
    text-align: left;
  }

  .characteristics__text-wrapper p {
    font-size: 1.5rem;
    text-align: left;
    margin: 20px 20px 50px;
  }

  .characteristics__text-wrapper img {
    position: static;
    opacity: 1;
    width: 150px;
  }

  .characteristics__card h3 {
    font-size: 2rem;
  }

  .characteristics__card p {
    font-size: 1.5rem;
  }
}

/* ------- PROMOTION SECTION ------- */

.promotion {
  container-type: inline-size;
  container-name: promotion;
}

.promotion__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0 20px;
}

.promotion__data {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 2fr 2fr 1fr;
  margin: auto;
  width: 100%;
}

.promotion__title {
  display: flex;
  justify-content: left;
  align-items: center;
  color: var(--color-background-dark);
  font-size: 2rem;
  grid-column: span 2;
}

.promotion__text {
  display: flex;
  justify-content: left;
  align-items: center;
  color: var(--color-secondary);
  font-size: 1rem;
  grid-column: span 2;
}

.promotion__price {
  display: flex;
  justify-content: right;
  align-items: center;
  color: var(--color-background-dark);
  padding: 10px;
  font-size: 25px;
  border-right: 5px solid var(--color-background-dark);
}
.promotion__price span {
  font-size: 1rem;
}

.promotion__price-text {
  display: flex;
  justify-content: left;
  align-items: center;
  color: var(--color-secondary-80);
  padding: 0 0 0 20px;
  font-size: 1rem;
}

.promotion__button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.promotion__button {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
}

.promotion__link-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.promotion__more-link {
  color: var(--color-muted-teal);
  font-size: 1rem;
}

.promotion__more-link:not(:is(:hover, :active)) {
  text-decoration: none;
}

.promotion__video-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.promotion__video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  display: block;
}

.promotion__video-description {
  font-size: 2rem;
  color: var(--color-muted-teal);
}

/* ------- PROMOTION QUERIES ------- */
@container promotion (min-width: 600px) {
  .promotion__wrapper {
    flex-direction: row;
    padding: 50px;
    gap: 12px;
    min-height: 20px;
  }

  .promotion__title {
    font-size: 3rem;
  }

  .promotion__text {
    font-size: 2rem;
  }

  .promotion__price {
    font-size: 3rem;
  }

  .promotion__price-text {
    font-size: 20px;
  }

  .promotion__button {
    font-size: 2rem;
    padding: 20px 50px;
  }

  .promotion__more-link {
    color: var(--color-muted-teal);
    font-size: 2rem;
  }
}

/* ------- INFO1 SECTION ------- */

.info1 {
  container-type: inline-size;
  container-name: info1;
}

.info1__wrapper {
  display: flex;
  padding: 0 50px;
  flex-direction: column;
}

.info1__img {
  flex: 1;
  position: relative;
  top: 30px;
  z-index: -1;
  min-width: 0;
  object-fit: cover;
  border-radius: 30px;
}

.info1__data {
  background-color: var(--color-background-light);
  display: flex;
  flex: 1;
  gap: 20px;
  flex-direction: column;
  margin: 0 10px;
  padding: 40px 30px;
  border-radius: 30px;
}

.info1__title {
  color: var(--color-primary);
  font-size: 1.7rem;
  flex: 1;
}

.info1__text {
  color: var(--color-secondary);
  font-size: 1rem;
}

.info1__list {
  display: flex;
  flex-direction: column;
  padding: 0 25px;
  gap: 30px;
}

.info1__list-item::marker {
  color: var(--color-dark-teal);
  font-size: 1.5em;
}

.info1__list-item {
  color: var(--color-secondary);
  font-size: 1rem;
}

.info1__list-item span {
  color: var(--color-dark-teal);
  font-weight: 700;
}

/* ------- INFO1 QUERiES ------- */

@container info1 (min-width: 600px) {
  .info1__wrapper {
    flex-direction: row;
    padding: 50px;
  }

  .info1__data {
    background-color: transparent;
    margin: 0;
    padding: 0 30px;
  }

  .info1__title {
    font-size: 3rem;
  }

  .info1__text {
    font-size: 1.5rem;
  }

  .info1__list-item {
    color: var(--color-secondary);
    font-size: 1.5rem;
  }

  .info1__img {
    position: static;
    border-radius: 30px 0 0 30px;
  }
}

/* ------- INFO2 SECTION ------- */
.info2 {
  container-type: inline-size;
  container-name: info2;
}

.info2__wrapper {
  display: flex;
  padding: 0 50px;
  flex-direction: column;
}

.info2__img {
  flex: 1;
  position: relative;
  order: 1;
  top: 30px;
  z-index: -1;
  min-width: 0;
  object-fit: cover;
  border-radius: 30px;
}

.info2__data {
  background-color: var(--color-background-light);
  display: flex;
  flex: 1;
  order: 2;
  gap: 20px;
  flex-direction: column;
  margin: 0 10px;
  padding: 40px 30px;
  border-radius: 30px;
}

.info2__title {
  color: var(--color-primary);
  font-size: 1.7rem;
  flex: 1;
}

.info2__text {
  color: var(--color-secondary);
  font-size: 1rem;
}

.info2__list {
  display: flex;
  flex-direction: column;
  padding: 0 25px;
  gap: 30px;
}

.info2__list-item::marker {
  color: var(--color-dark-teal);
  font-size: 1.5em;
}

.info2__list-item {
  color: var(--color-secondary);
  font-size: 1rem;
}

.info2__list-item span {
  color: var(--color-dark-teal);
  font-weight: 700;
}

/* ------- INFO2 QUERiES ------- */

@container info2 (min-width: 600px) {
  .info2__wrapper {
    flex-direction: row;
    padding: 50px;
  }

  .info2__data {
    background-color: transparent;
    margin: 0;
    padding: 0 30px;
  }

  .info2__title {
    font-size: 3rem;
  }

  .info2__text {
    font-size: 1.5rem;
  }

  .info2__list-item {
    color: var(--color-secondary);
    font-size: 1.5rem;
  }

  .info2__img {
    position: static;
    transform: scaleX(-1);
    order: 2;
    border-radius: 30px 0 0 30px;
  }
}

/* ------- INFO3 SECTION ------- */

.info3 {
  container-type: inline-size;
  container-name: info3;
}

.info3__wrapper {
  display: flex;
  padding: 0 50px;
  flex-direction: column;
}

.info3__img {
  flex: 1;
  position: relative;
  top: 30px;
  z-index: -1;
  min-width: 0;
  object-fit: cover;
  border-radius: 30px;
}

.info3__data {
  background-color: var(--color-background-light);
  display: flex;
  flex: 1;
  gap: 20px;
  flex-direction: column;
  margin: 0 10px;
  padding: 40px 30px;
  border-radius: 30px;
}

.info3__title {
  color: var(--color-primary);
  font-size: 1.7rem;
  flex: 1;
}

.info3__text {
  color: var(--color-secondary);
  font-size: 1rem;
}

.info3__list {
  display: flex;
  padding: 0 25px;
  flex-direction: column;
  gap: 30px;
}

.info3__list-item::marker {
  color: var(--color-dark-teal);
  font-size: 1.5em;
}

.info3__list-item {
  color: var(--color-secondary);
  font-size: 1rem;
}

.info3__list-item span {
  color: var(--color-dark-teal);
  font-weight: 700;
}

/* ------- INFO3 QUERiES ------- */

@container info3 (min-width: 600px) {
  .info3__wrapper {
    flex-direction: row;
    padding: 50px;
  }

  .info3__data {
    background-color: transparent;
    margin: 0;
    padding: 0 30px;
  }

  .info3__title {
    font-size: 3rem;
  }

  .info3__text {
    font-size: 1.5rem;
  }

  .info3__list-item {
    color: var(--color-secondary);
    font-size: 1.5rem;
  }

  .info3__img {
    position: static;
    border-radius: 30px 0 0 30px;
  }
}

/* ------- PRODUCTS AND PRICES SECTION ------- */
.products-prices {
  background: linear-gradient(transparent, var(--color-primary));
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 10%;
  flex-direction: column;

  container-type: inline-size;
  container-name: products-prices;
}

.products-prices__title {
  font-size: 2rem;
  text-align: center;
  color: var(--color-primary);
}

.products-prices__cards-containter {
  display: grid;
  place-items: center;
  width: 100%;
  gap: 50px;
  padding: 0 0px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: space-evenly;
}

.products-prices__card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-card-data);
  border-radius: 20px;
  max-width: 300px;
  padding: 40px 20px;
  box-shadow: 0 8px 10px var(--color-black-10);
}

.ejecutivo--card {
  background-color: var(--color-card-ejecutivo);
}

.dinamico--card {
  background-color: var(--color-card-dinamico);
}

.comanda--card {
  background-color: var(--color-card-comanda);
}

.products-prices__card img {
  border-bottom: 3px solid var(--color-border);
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.data-card-containter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 10px;
}

.products-prices__card h2 {
  color: var(--color-text-white);
  font-size: 2rem;
}

.products-prices__card h3 {
  color: var(--color-text-white-95);
  font-weight: 300;
  font-size: 1rem;
}

.products-prices__card h2:last-child {
  color: var(--color-text-white);
  font-size: 2rem;
}

.products-prices__card h2 span {
  font-size: 1rem;
}

.products-prices__card button {
  margin-top: 30px;
  color: var(--color-text-white);
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
}

.ejecutivo--card button {
  background-color: var(--color-btn-ejecutivo);
}

.dinamico--card button {
  background-color: var(--color-btn-dinamico);
}

.comanda--card button {
  background-color: var(--color-btn-comanda);
}

.products-prices__extra-data {
  text-align: center;
  color: var(--color-black-60);
  text-wrap: pretty;
  font-size: 1rem;
}

/* ------- PRODUCTS AND PRICES QUERiES ------- */

@container products-prices (min-width: 600px) {
  .products-prices__title {
    font-size: 4rem;
  }
} 

/* ------- PRODUCTS SECTION ------- */

.products {
  padding: 50px 0;
  background-color: var(--color-primary);
  container-type: inline-size;
  container-name: products;
}

.product1__wrapper {
  display: flex;
  flex-direction: row;
  padding: 0 10px;
  margin-bottom: 50px;
}

.product1__sidebar {
  position: sticky;
  display: flex;
  top: 0px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 5px;
  background-color: var(--color-secondary);
  width: 100px;
  height: 100vh;

  box-shadow: 0 8px 10px var(--color-black-10);
}

.ejecutivo--sidebar {
  background-color: var(--color-sidebar-ejecutivo);
}

.dinamico--sidebar {
  background-color: var(--color-sidebar-dinamico);
}

.comanda--sidebar {
  background-color: var(--color-sidebar-comanda);
}

.product1__sidebar h2 {
  word-break: break-all;
  text-align: center;
  line-height: 50px;
  color: var(--color-text-white-90);
  width: 1ch;
  font-size: 2rem;
}

.product1__data {
  display: flex;
  position: relative;
  border-radius: 0 20px 20px 0;
  flex-direction: column;
  background-color: var(--color-card-data);
  padding: 30px 10px;
  margin: 20px 0;
  width: 100%;

  box-shadow: 0 8px 10px var(--color-black-10);
}

.ejecutivo {
  background-color: var(--color-card-ejecutivo);
}

.dinamico {
  background-color: var(--color-card-dinamico);
}

.comanda {
  background-color: var(--color-card-comanda);
}

.product1__title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--color-text-white);
}

.product1__list {
  padding-left: 20px;
}

.product1__list li {
  color: var(--color-list-text);
  font-size: 1rem;
  margin: 10px;
}

.hidden-title {
  display: none;
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: var(--color-black-10);
  text-align: center;
  font-size: 5rem;
  z-index: 30;
}

/* ------- PRODUCTS QUERiES ------- */

@container products (min-width: 600px) {
  .product1__wrapper {
    padding: 0 10%;
  }

  .hidden-title {
    display: block;
  }

  .product1__data {
    padding: 50px;
    margin: 20px 0;
  }

  .product1__list li {
    font-size: 1.5rem;
  }
}

/* ------- FOOTER SECTION ------- */

.footer {
  container-type: inline-size;
  container-name: footer;
  background-color: var(--color-footer-bg);
  /* background: linear-gradient(145deg, #2b1709 0%, #cccccc 40%, #6e3b16 100%); */
  color: var(--color-text-white);
  position: relative;
  border-top: 3px solid var(--color-primary);
}

/* Pre-footer CTA Card */
.footer__cta {
  max-width: 1150px;
  margin: 0 auto;
  transform: translateY(-35px);
  background-color: var(--color-footer-cta);
  /* background: linear-gradient(135deg, var(--color-primary) 0%, #c85a11 100%); */
  border-radius: 16px;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 25px var(--color-shadow-cta);
}

.footer__cta-content h3 {
  font-size: 1.4rem;
  color: var(--color-text-white);
  margin-bottom: 6px;
  font-weight: 700;
}

.footer__cta-content p {
  color: var(--color-footer-cta-subtext);
  font-size: 0.95rem;
  margin: 0;
}

.footer__cta-button {
  background-color: var(--color-text-white);
  color: var(--color-footer-cta);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px var(--color-shadow-btn);
}

.footer__cta-button:hover {
  background-color: var(--color-footer-cta-hover-bg);
  color: var(--color-footer-hover);
}

/* Main Grid Container */
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
  gap: 40px;
  padding: 10px 40px 50px 40px;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

/* Brand Column */
.footer__brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer__brand-header h3 {
  font-size: 1.6rem;
  color: var(--color-footer-title);
  font-weight: 700;
  margin: 0;
}

.footer__brand-desc {
  color: var(--color-footer-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer__badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-badge-bg);
  border: 1px solid var(--color-badge-border);
  color: var(--color-accent);
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Titles with Accent Indicator */
.footer__title {
  font-size: 1.15rem;
  color: var(--color-footer-title);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background-color: var(--color-footer-accent);
  border-radius: 2px;
}

/* Link Lists */
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list li a {
  color: var(--color-footer-muted);
  text-decoration: none;
  font-size: 0.92rem;
  display: inline-block;
}

.footer__list li a:hover {
  color: var(--color-primary);
}

/* Contact List */
.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-footer-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.footer__contact-list li a {
  color: var(--color-footer-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__contact-list li a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer__icon {
  width: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Footer Bottom Bar */
.footer__bottom {
  border-top: 1px solid var(--color-border-transparent);
  padding: 22px 40px;
  background: var(--color-footer-bottom-bg);
}

.footer__bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer__bottom p {
  color: var(--color-text-white-90);
  font-size: 0.88rem;
  margin: 0;
}

.footer__subtext {
  color: var(--color-text-white-70);
  font-size: 0.82rem;
}

/* Responsive Queries */
@container footer (max-width: 900px) {
  .footer__cta {
    margin: 0 20px;
    transform: translateY(-25px);
    flex-direction: column;
    text-align: center;
  }

  .footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
    padding: 10px 30px 40px 30px;
  }
}

@container footer (max-width: 550px) {
  .footer__cta {
    padding: 20px;
  }

  .footer__cta-content h3 {
    font-size: 1.2rem;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 10px 20px 30px 20px;
  }

  .footer__bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}