@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");


:root {
  --header-height: 3.5rem;
  --first-color: #ff8c00;
  --first-color-alt: #ff6600;
  --title-color: #393939;
  --text-color: #505050;
  --text-color-light: #808080;
  --body-color: #ffffff;
  --container-color: #ffffff;

  --body-font: "Outfit", sans-serif;
  --biggest-font-size: 3.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --font-medium: 500;
  --font-semi-bold: 600;

  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 768px){
  :root{
    --biggest-font-size: 3rem;
    --semibiggest-font-size: 5rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

*,::before,::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.dark-theme{
  --title-color: #FFF5F6;
  --text-color: #FFF5F6;
  --body-color: #050505;
  --container-color: #27302C;
  background-color: #181818;
}

/* Modo oscuro del patrón de puntos en home */
body.dark-theme .home {
  background-image: radial-gradient(#ff8c00 1px, #181818 1px);
}

/* From Uiverse.io by Galahhad */
.theme-switch {
  position: fixed;
  bottom: 10px;
  right: 15px;
  z-index: 1000;
  --toggle-size: 18px;
  --container-width: 3.5em;
  --container-height: 1.6em;
  --container-radius: 4.5em;
  --container-light-bg: #3D7EAE;
  --container-night-bg: #1D1F2C;
  --circle-container-diameter: 2em;
  --sun-moon-diameter: 1.3em;
  --sun-bg: #ECCA2F;
  --moon-bg: #C4C9D1;
  --spot-color: #959DB1;
  --circle-container-offset: calc((var(--circle-container-diameter) - var(--container-height)) / 2 * -1);
  --stars-color: #fff;
  --clouds-color: #F3FDFF;
  --back-clouds-color: #AACADF;
  --transition: .5s cubic-bezier(0, -0.02, 0.4, 1.25);
  --circle-transition: .3s cubic-bezier(0, -0.02, 0.35, 1.17);
}

.theme-switch, .theme-switch *, .theme-switch *::before, .theme-switch *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: var(--toggle-size);
}

.theme-switch__container {
  width: var(--container-width);
  height: var(--container-height);
  background-color: var(--container-light-bg);
  border-radius: var(--container-radius);
  overflow: hidden;
  cursor: pointer;
  -webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25), 0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__container::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  -webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset, 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  border-radius: var(--container-radius);
}

.theme-switch__checkbox {
  display: none;
}

.theme-switch__circle-container {
  width: var(--circle-container-diameter);
  height: var(--circle-container-diameter);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: var(--circle-container-offset);
  top: var(--circle-container-offset);
  border-radius: var(--container-radius);
  -webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), inset 0 0 0 3.375em rgba(255, 255, 255, 0.1), 0 0 0 0.625em rgba(255, 255, 255, 0.1), 0 0 0 1.25em rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: var(--circle-transition);
  -o-transition: var(--circle-transition);
  transition: var(--circle-transition);
  pointer-events: none;
}

.theme-switch__sun-moon-container {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  width: var(--sun-moon-diameter);
  height: var(--sun-moon-diameter);
  margin: auto;
  border-radius: var(--container-radius);
  background-color: var(--sun-bg);
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #a1872a inset;
  -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25)) drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  overflow: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.theme-switch__moon {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  background-color: var(--moon-bg);
  border-radius: inherit;
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset, 0em -0.062em 0.062em 0em #969696 inset;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__spot {
  position: absolute;
  top: 0.75em;
  left: 0.312em;
  width: 0.75em;
  height: 0.75em;
  border-radius: var(--container-radius);
  background-color: var(--spot-color);
  -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}

.theme-switch__spot:nth-of-type(2) {
  width: 0.375em;
  height: 0.375em;
  top: 0.937em;
  left: 1.375em;
}

.theme-switch__spot:nth-last-of-type(3) {
  width: 0.25em;
  height: 0.25em;
  top: 0.312em;
  left: 0.812em;
}

.theme-switch__clouds {
  width: 1.25em;
  height: 1.25em;
  background-color: var(--clouds-color);
  border-radius: var(--container-radius);
  position: absolute;
  bottom: -0.625em;
  left: 0.312em;
  -webkit-box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
  box-shadow: 0.937em 0.312em var(--clouds-color), -0.312em -0.312em var(--back-clouds-color), 1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color), 2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color), 2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color), 3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color), 4.5em -0.312em var(--clouds-color), 3.375em -0.437em var(--back-clouds-color), 4.625em -1.75em 0 0.437em var(--clouds-color), 4em -0.625em var(--back-clouds-color), 4.125em -2.125em 0 0.437em var(--back-clouds-color);
  -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
  position: absolute;
  color: var(--stars-color);
  top: -100%;
  left: 0.312em;
  width: 2.75em;
  height: auto;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

/* actions */

.theme-switch__checkbox:checked + .theme-switch__container {
  background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter));
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__circle-container:hover {
  left: calc(100% - var(--circle-container-offset) - var(--circle-container-diameter) - 0.187em);
}

.theme-switch__circle-container:hover {
  left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__moon {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__clouds {
  bottom: -4.062em;
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__stars-container {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

body{
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  /* Ensure footer sits normally at bottom of content */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1,h2,h3,p,ul{
  margin: 0;
}

ul{
  padding: 0;
  list-style: none;
}

a{
  text-decoration: none;
}

img{
  max-width: 100%;
  height: auto;
}

.section{
  padding: 4rem 0 2rem;
}

.section-title, .section-subtitle{
  text-align: center;
}

.section-title{
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}

.section-subtitle{
  display: block;
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

.menu-description {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media screen and (max-width: 576px) {
    .menu-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
}

.bd-container{
  max-width: 960px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.bd-grid{
  display: grid;
  gap: 1.8rem;
}

.l-header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background: linear-gradient(180deg, #77DD55 0%, #77DD55 50%, #77DD55 100%);
  border-bottom: 3px solid #ff8c00; /* Línea naranja en la parte inferior */
}

.nav{
  max-width: 1024px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px){
    .l-header{
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: var(--z-fixed);
        background: linear-gradient(180deg, #77DD55 0%, #77DD55 50%, #77DD55 100%);
        border-bottom: 3px solid #ff8c00; /* Línea naranja en la parte inferior */
    }

  .nav__menu{
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem 0 1rem;
    text-align: center;
    background-color: var(--body-color);
    transition: .4s;
    box-shadow: 0 4px 4px rgba(0,0,0,.1);
    border-radius: 0 0 1rem 1rem;
    z-index: var(--z-fixed);
  }
}

.nav__item{
  margin-bottom: var(--mb-2);
}

/* Alumni Sans Pinstripe Font */
.alumni-sans-pinstripe-regular {
  font-family: "Alumni Sans Pinstripe", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.nav__link,.nav__logo,.nav__toggle{
  color: var(--title-color);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  margin-right: 12px;
  -webkit-text-stroke: 0.03px black;
}

.nav__logo:hover{
  color: var(--first-color);
}

.logo-img {
    height: 55px;
    width: auto;
    vertical-align: middle;
}

/* Logo text in header */
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--first-color);
    margin-left: 10px;
    white-space: nowrap;
    font-family: 'Limelight', cursive;
}

/* Responsive for logo text on tablets */
@media screen and (max-width: 992px) {
    .l-header{
        background: linear-gradient(180deg, #77DD55 0%, #77DD55 50%, #77DD55 100%);
        border-bottom: 3px solid #ff8c00; /* Línea naranja en la parte inferior */
    }

    .nav__link:hover{
        color: var(--first-color-alt);
      }

    .logo-text {
        font-size: 1.3rem;
        margin-left: 8px;
    }
    .logo-img {
        height: 50px;
    }
}

/* Responsive for logo text on mobile */
@media screen and (max-width: 576px) {
    .logo-text {
        font-size: 1.2rem;
        margin-left: 8px;
    }
    .logo-img {
        height: 45px;
    }
}

@media screen and (max-width: 400px) {
    .logo-text {
        font-size: 1rem;
        margin-left: 6px;
    }
    .logo-img {
        height: 40px;
    }
}

.nav__link{
  transition: .3s;
}

.nav__link:hover{
  color: var(--first-color);
}

.nav__toggle{
  font-size: 1.3rem;
  cursor: pointer;
}

.show-menu{
  top: var(--header-height);
}

.active-link{
  color: var(--first-color);
}

.scroll-header{
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.scrolltop{
  position: fixed;
  left: 1rem;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .3rem;
  background: rgba(255,140,0,.5);
  border-radius: .4rem;
  z-index: 1001;
  transition: .4s;
  visibility: hidden;
}

.scrolltop:hover{
  background-color: var(--first-color-alt);
}

.scrolltop__icon{
  font-size: 1.8rem;
  color: var(--body-color);
}

.show-scroll{
  visibility: visible;
  left: 1rem;
  bottom: 10px;
}

/*========== SCROLL EXPANSION HERO ==========*/
.scroll-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding-bottom: 20px;
    background-color: var(--body-color);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.scroll-hero__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#ff8c00 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

.scroll-hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    z-index: 1;
    gap: 2rem;
}

.scroll-hero__text {
    flex: 1;
    text-align: left;
    max-width: 500px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-hero__title {
    font-size: 4.5rem;
    color: var(--first-color);
    font-family: 'Limelight', cursive;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(255, 140, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-hero__subtitle {
    font-size: 1.5rem;
    color: var(--title-color);
    margin-bottom: 2rem;
    line-height: 1.6;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-hero__visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-hero__carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-hero__background-img {
    position: absolute;
    width: 120%;
    height: 120%;
    object-fit: contain;
    opacity: 9;
    transition: all 0.5s ease;
    z-index: 1;
}

.scroll-hero__pizza-stack {
    position: absolute;
    width: 92%;
    height: 92%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 9 pizzas × 9 segundos = 81 segundos por ciclo completo */
    animation: rotatePizzas 81s linear infinite;
    z-index: 2;
}

.scroll-hero__pizza {
    position: absolute;
    width: 63%;
    height: 63%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    visibility: hidden;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.scroll-hero__pizza.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

@keyframes rotatePizzas {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scroll-hero.expanded {
    min-height: 70vh;
}

.scroll-hero.expanded .scroll-hero__title {
    font-size: 3rem;
}

.scroll-hero.expanded .scroll-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.scroll-hero.expanded .scroll-hero__buttons {
    gap: 0.75rem;
    flex-direction: row;
    justify-content: center;
}

.scroll-hero.expanded .scroll-hero__buttons .button {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.scroll-hero.expanded .scroll-hero__visual {
    transform: scale(0.85);
    opacity: 0.9;
}

.scroll-hero.expanded .scroll-hero__text {
    max-width: 450px;
}

.scroll-hero.expanded .scroll-hero__indicator {
    opacity: 0;
    pointer-events: none;
}

.scroll-hero.expanded .scroll-hero__glow {
    width: 400px;
    height: 400px;
}

/* Dark mode support for scroll hero */
body.dark-theme .scroll-hero {
    background-color: #181818;
}

body.dark-theme .scroll-hero__pattern {
    background-image: radial-gradient(#ff8c00 1px, #181818 1px);
    opacity: 0.3;
}

body.dark-theme .scroll-hero__glow {
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
}

body.dark-theme .scroll-hero__title {
    color: #ff9500;
    text-shadow: 3px 3px 6px rgba(255, 149, 0, 0.4);
}

body.dark-theme .scroll-hero__subtitle {
    color: #f0f0f0;
}

body.dark-theme .scroll-hero__indicator {
    color: #b0b0b0;
}
/* Desktop: Keep buttons centered even when expanded */
@media screen and (min-width: 993px) {
    .scroll-hero.expanded .scroll-hero__buttons {
        justify-content: center;
    }
}

/* Responsive styles for scroll hero */
@media screen and (max-width: 992px) {
    .scroll-hero__content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 1rem;
    }
    
    .scroll-hero__text {
        text-align: center;
        max-width: 100%;
        order: 2;
    }
    
    .scroll-hero__visual {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .scroll-hero__carousel {
        max-width: 450px;
        width: 90%;
    }
    
    .scroll-hero__pizza {
        width: 62%;
        height: 62%;
    }
    
    .scroll-hero__title {
        font-size: 3.5rem;
    }
    
    .scroll-hero__subtitle {
        font-size: 1.2rem;
    }
    
    .scroll-hero__buttons {
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .scroll-hero.expanded .scroll-hero__subtitle {
        font-size: 1rem;
    }
    
    .scroll-hero.expanded .scroll-hero__buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .scroll-hero.expanded .scroll-hero__content {
        gap: 1rem;
    }
    
    .scroll-hero.expanded .scroll-hero__title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 576px) {
    .scroll-hero__title {
        font-size: 2.8rem;
    }
    
    .scroll-hero__subtitle {
        font-size: 0.9rem;
    }
    
    .scroll-hero__carousel {
        max-width: 350px;
        width: 95%;
    }
    
    .scroll-hero__pizza {
        width: 60%;
        height: 60%;
    }
    
    .scroll-hero__indicator span {
        display: none;
    }
    
    .scroll-hero.expanded .scroll-hero__title {
        font-size: 1.8rem;
    }
    
    .scroll-hero.expanded .scroll-hero__subtitle {
        font-size: 0.8rem;
    }
    
    .scroll-hero.expanded .scroll-hero__visual {
        transform: scale(0.75);
    }
    
    .scroll-hero__buttons {
        justify-content: center;
    }
    
    .scroll-hero__buttons .button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 1rem;
        margin-right: 0.5rem;
    }
    
    .scroll-hero.expanded .scroll-hero__buttons {
        justify-content: center;
    }
    
    .scroll-hero.expanded .scroll-hero__buttons .button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/*========== HOME ==========*/
/* Original home section - now hidden when scroll hero is active */
.home {
  position: relative;
  z-index: 1;
  background-color: transparent;
  background-image: radial-gradient(#ff8c00 1px, transparent 1px);
  background-size: 30px 30px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 2rem;
}

.home__container{
  height: calc(100vh - var(--header-height));
  align-content: center;
  min-height: calc(100vh - var(--header-height));
}

/* El patrón de puntos solo en el área de texto */
.home__data {
  padding: 0.6rem;
  border-radius: 1rem;
}

.home__title{
  font-size: 65px;
  color: var(--first-color);
  margin-bottom: var(--mb-1);
  font-family: 'Limelight', cursive;
  margin-bottom: 30px;
}

/* Animated SVG Logo Styles */
.home__logo-animation {
  width: 100%;
  max-width: 600px;
  margin-bottom: 0.5rem;
}

.home__logo-animation svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.4));
  margin-top: -30px;
}

.home__logo-animation .letter-path {
  fill: rgba(255, 140, 0, 0); 
  stroke: #ff8c00;
  stroke-width: 15;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: fill 0.5s ease;
}

.home__subtitle{
  font-size: 1.5rem;
  color: var(--title-color);
  margin-bottom: var(--mb-2);
  margin-top: 0.5rem;
}

/* Responsive for tablets */
@media screen and (max-width: 992px) {
  .home__title {
    font-size: 3.5rem;
    margin-top: 1rem;
  }
  
  .home__subtitle {
    margin-top: 1rem;
    font-size: 1.3rem;
  }
  
  .home__container {
    height: auto;
    min-height: calc(100vh - var(--header-height));
    padding: 2rem 0;
  }
  
  .home__data {
    padding: 2rem 1.5rem;
  }
}

/* Responsive for móviles */
@media screen and (max-width: 576px) {
  .home__title {
    margin-top: 1.5rem;
    font-size: 2.8rem;
  }
  
  .home__subtitle {
    margin-top: 1.5rem;
    font-size: 1.2rem;
  }
  
  .home__data {
    padding: 1.5rem 1rem;
  }
}

.home__img{
  width: 300px;
  justify-self: center;
}

/* Carrusel de imágenes en Home */
.home__carousel {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 450px;
  margin: 0 auto;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  background-image: none;
  z-index: 100;
}

/* Imagen de fondo (paleta de pizzas) detrás del carrusel */
.carousel-background {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

.carousel-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Evitar problemas de renderizado */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  /* 9 pizzas × 9 segundos = 81 segundos por ciclo completo */
  animation: slowRotate 81s linear infinite;
  z-index: 5;
}

/* Imágenes del carrusel */
.carousel-img {
  position: absolute;
  width: 65%;
  height: 65%;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

/* Imagen activa - visible */
.carousel-img.active {
  opacity: 1;
  visibility: visible;
}

/* Animación de rotación lenta */
@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 992px) {
  .carousel-background {
    max-width: 450px;
  }
  .home__carousel {
    max-width: 450px;
    height: 400px;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .home__carousel {
    max-width: 400px;
    height: 360px;
    margin-bottom: 4rem;
  }

  .carousel-background {
    max-width: 400px;
  }
  
  .carousel-img {
    max-width: 200px;
    max-height: 200px;
  }
}

@media screen and (max-width: 576px) {
  .home__carousel {
    max-width: 350px;
    height: 320px;
    margin-bottom: 5rem;
  }

  .carousel-background {
    max-width: 350px;
  }
  
  .carousel-img {
    max-width: 180px;
    max-height: 180px;
  }
}

.button{
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 3rem;
  background-color: var(--first-color);
  color: #ffffff;
  font-weight: 600;
  transition: .3s;
  margin-right: 1rem;
  margin-top: 1.5rem;
  border: 2px solid var(--first-color);
  font-size: 1rem;
}

.button--outline {
  background-color: var(--first-color);
  border: 2px solid var(--first-color);
  color: #ffffff;
}

.button--outline:hover {
  background-color: var(--first-color);
  color: #ffffff;
}

.button:hover{
  background-color: var(--first-color-alt);
}

/*========== ABOUT ==========*/
.about {
  padding-top: 4rem !important;
  position: relative;
  background: #f7d9ba;
  min-height: 100px;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #f7d9ba;
  z-index: -1;
}

/* Líneas divisorias de canto a canto del viewport */
.about__line {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: #ff8c00;
  z-index: 10;
}

.about__line--top {
  top: 0;
}

.about__line--bottom {
  bottom: 0;
}

.about__data{
  text-align: center;
  margin-bottom: 3rem;
}

/* Texto en About para modo oscuro - Mismos colores que modo claro */
body.dark-theme .about__data {
  color: #393939;
}

body.dark-theme .about__data .section-subtitle,
body.dark-theme .about__initial {
  color: #ff8c00 !important;
}

body.dark-theme .about__data .section-title {
  color: #393939 !important;
}

body.dark-theme .about__description {
  color: #505050 !important;
}

/* Modo oscuro para el tagline - Específico para override de description */
body.dark-theme .about__description.about__tagline {
  color: #ff8c00 !important;
}

@media screen and (max-width: 768px) {
  .about__data {
    margin-bottom: 4rem;
  }
}

.about__description{
  margin-bottom: var(--mb-3);
}

/* Carrusel de imágenes en About */
.about__carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 580px;
  margin: 0px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}

.about__carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
}

/* Imágenes del carrusel about - Estilo con inclinación alternada y efecto de superposición */
.about__carousel-img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  object-fit: contain;
  transform-origin: center bottom;
  /* Estado base - todas las imágenes ocultas */
  opacity: 0;
  visibility: hidden;
}

/* Imagen principal activa - cae desde arriba con inclinación alternada */
.about__carousel-img.active {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 100 !important;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: forwards;
  animation-name: dropFromTopLeft;
}

/* Imágenes impares - caen con inclinación a la izquierda */
.about__carousel-img.active:nth-child(odd) {
  animation-name: dropFromTopLeft;
}

/* Imágenes pares - caen con inclinación a la derecha */
.about__carousel-img.active:nth-child(even) {
  animation-name: dropFromTopRight;
}

/* Caída con inclinación a la izquierda - desde más arriba */
@keyframes dropFromTopLeft {
  0% {
    transform: translateY(-200px) rotate(-20deg) scale(0.6);
    opacity: 0;
    z-index: 200;
  }
  50% {
    transform: translateY(-50px) rotate(-8deg) scale(1.05);
    opacity: 1;
    z-index: 200;
  }
  100% {
    transform: translateY(0) rotate(-3deg) scale(1);
    opacity: 1;
    z-index: 100;
  }
}

/* Caída con inclinación a la derecha - desde más arriba */
@keyframes dropFromTopRight {
  0% {
    transform: translateY(-200px) rotate(20deg) scale(0.6);
    opacity: 0;
    z-index: 200;
  }
  50% {
    transform: translateY(-50px) rotate(8deg) scale(1.05);
    opacity: 1;
    z-index: 200;
  }
  100% {
    transform: translateY(0) rotate(3deg) scale(1);
    opacity: 1;
    z-index: 100;
  }
}

/* Segunda imagen - detrás de la principal */
.about__carousel-img.visible-2 {
  opacity: 0.7 !important;
  visibility: visible !important;
  z-index: 99 !important;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__carousel-img.visible-2:nth-child(odd) {
  transform: translateY(25px) scale(0.9) rotate(-6deg) !important;
}

.about__carousel-img.visible-2:nth-child(even) {
  transform: translateY(25px) scale(0.9) rotate(6deg) !important;
}

/* Tercera imagen - más atrás */
.about__carousel-img.visible-3 {
  opacity: 0.4 !important;
  visibility: visible !important;
  z-index: 98 !important;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__carousel-img.visible-3:nth-child(odd) {
  transform: translateY(50px) scale(0.8) rotate(-6deg) !important;
  filter: blur(2px);
}

.about__carousel-img.visible-3:nth-child(even) {
  transform: translateY(50px) scale(0.8) rotate(6deg) !important;
  filter: blur(2px);
}

/* Animación de salida - cuando pierde active cae hacia atrás */
@keyframes fallBackwards {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(60px) scale(0.75) rotate(3deg);
    opacity: 0;
  }
}

/* La imagen que deja de ser active cae hacia atrás */
.about__carousel-img.was-active {
  animation: fallBackwards 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive del carrusel about */
@media screen and (max-width: 992px) {
  .about__carousel {
    max-width: 95%;
    height: 450px;
    margin: 20px auto 0;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .about__carousel {
    max-width: 95%;
    height: 380px;
    margin: 25px auto 0;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 576px) {
  .about__carousel {
    max-width: 90%;
    height: 320px;
    margin: 30px auto 0;
    padding-bottom: 50px;
  }
}

/* Estilos para el tagline */
.about__tagline {
  display: block;
  margin-top: 2.4rem;
  color: #ff8c00 !important;
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  line-height: 1.3;
  font-family: "Outfit", sans-serif;
}

/* Modo oscuro para el tagline */
body.dark-theme .about__tagline {
  color: #ff8c00 !important;
}

/* Responsive para móviles */
@media screen and (max-width: 576px) {
  .about__tagline {
    font-size: 1.8rem !important;
    margin-top: 1rem;
    padding: 0 0.5rem;
  }
}

/* Legacy text styles */
.about__legacy {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.legacy-tagline {
    display: block !important;
    margin-top: 1rem !important;
    color: #ff8c00 !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    text-shadow: 0 2px 8px rgba(255, 140, 0, 0.4) !important;
    padding: 0.5rem !important;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 102, 0, 0.15) 100%) !important;
    border-radius: 10px !important;
    border: 2px solid rgba(255, 140, 0, 0.3) !important;
}

.about-social {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--contact-card-bg) 0%, rgba(255, 140, 0, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid var(--first-color);
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Logo */
.about-social-logo {
    width: 320px;
    height: auto;
    margin-bottom: 1rem;
}

/* Title */
.about-social-text {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.about-social-text:first-child {
    color: var(--first-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Buttons - side by side horizontally */
.about-social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

/* Same size buttons */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    width: 180px;
}

.social-link i, .social-link svg {
    font-size: 1.1rem;
}

/* Username */
.about-social-username {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--first-color);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    width: 180px;
}

.social-link i, .social-link svg {
    font-size: 1.1rem;
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #c13584 50%, #e1306c 100%);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d65c4 100%);
}

.social-link:hover {
    transform: scale(1.05);
    color: white;
}

@media screen and (max-width: 576px) {
    .about-social {
        padding: 1.5rem;
    }
    .about-social-text {
        font-size: 1rem;
    }
    .about-social-text:first-child {
        font-size: 1.15rem;
    }
    .about-social-links {
        gap: 1rem;
    }
    .social-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    .social-link i {
        font-size: 1.2rem;
    }
    .about-social-username {
        font-size: 1.1rem;
    }
}

.about__img{
  width: 280px;
  border-radius: .5rem;
  justify-self: center;
}

/*========== SERVICES ==========*/
.services__container{
  row-gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services__content{
  text-align: center;
}

.services__img{
  width: 64px;
  height: 64px;
  fill: var(--first-color);
  margin-bottom: var(--mb-2);
}

.services__title{
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.services__description{
  padding: 0 1.5rem;
}

/*========== MENU ==========*/
.menu__container{
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

.menu__content{
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--container-color);
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(3,74,40,.15);
  padding: .75rem;
}

.menu__img{
  width: 100px;
  align-self: center;
  margin-bottom: var(--mb-2);
}

.menu__name, .menu__preci{
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.menu__name{
  font-size: var(--normal-font-size);
}

.menu__detail, .menu__preci{
  font-size: var(--small-font-size);
}

.menu__detail{
  margin-bottom: var(--mb-1);
}

.menu__button{
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  padding: .625rem .813rem;
  border-radius: .5rem 0 .5rem 0;
}

/*========== CONTACT ==========*/
.contact {
  position: relative;
  overflow: visible;
}

/* Override bd-container para que contacto sea full-width */
.contact.section.bd-container {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  /* Líneas divisorias superior e inferior */
  border-top: 3px solid var(--first-color);
  border-bottom: 3px solid var(--first-color);
}

.contact .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: transparent;;
}


.contact__container{
  text-align: center;
}

.contact__description{
  margin-bottom: var(--mb-3);
}

/*========== FOOTER ==========*/
.footer__container{
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer {
    padding: 1rem 1rem 2rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media screen and (min-width: 576px) {
    .footer__container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
    }
}

@media screen and (min-width: 768px) {
    .footer__container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 2rem;
    }
}

.footer__content {
    text-align: center;
}

@media screen and (min-width: 576px) {
    .footer__content {
        text-align: left;
    }
    
    .footer__content.footer-contact {
        text-align: left;
    }
    
    .footer__content.footer-brand {
        text-align: left;
    }
}

.footer__logo{
  font-size: var(--h3-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media screen and (min-width: 576px) {
    .footer__logo {
        justify-content: flex-start;
    }
}

.footer__description{
  display: block;
  font-size: var(--small-font-size);
  margin: .25rem 0 var(--mb-3);
}

.footer__social{
  font-size: 1.5rem;
  color: var(--title-color);
  margin-right: var(--mb-2);
}

.footer__title{
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-2);
}

.footer__link{
  display: inline-block;
  color: var(--text-color);
  margin-bottom: var(--mb-1);
}

.footer__link:hover{
  color: var(--first-color);
}

.footer__copy{
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-top: 1rem;
  padding: 0.5rem;
}

/* Footer brand special styling */
.footer-brand {
    order: -1;
}

/*========== FLICKERING FOOTER ==========*/
.flickering-footer {
    position: relative;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding: 4rem 2rem 2rem;
    overflow: hidden;
    border-top: 3px solid #ff8c00;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media screen and (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .footer-section {
        text-align: left;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media screen and (min-width: 768px) {
    .footer-brand {
        align-items: flex-start;
    }
}

.footer-logo {
    font-family: 'Limelight', cursive;
    font-size: 2rem;
    color: #ff8c00;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text-flicker {
    animation: textFlicker 3s ease-in-out infinite;
}

@keyframes textFlicker {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }
    92% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }
    93% {
        opacity: 0.8;
        text-shadow: 0 0 5px rgba(255, 140, 0, 0.3);
    }
    94% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }
    96% {
        opacity: 0.9;
        text-shadow: 0 0 8px rgba(255, 140, 0, 0.4);
    }
    97% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }
}

.footer-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

/* Candle Styles */
.footer-candle {
    position: relative;
    width: 30px;
    height: 50px;
    margin: 1rem 0;
}

.candle-flame {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 24px;
    animation: flameFlicker 0.5s ease-in-out infinite;
    filter: blur(1px);
}

.candle-flame::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 20px;
    background: linear-gradient(to top, #ff6600 0%, #ff8c00 40%, #ffcc00 70%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flameShape 0.5s ease-in-out infinite alternate;
}

.candle-flame::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 12px;
    background: linear-gradient(to top, #fff9e6 0%, #ffcc00 50%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.8;
}

.flame-inner {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: #fff;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.9;
}

@keyframes flameFlicker {
    0%, 100% {
        transform: translateX(-50%) scaleY(1) scaleX(1);
        opacity: 1;
    }
    25% {
        transform: translateX(-50%) scaleY(1.1) scaleX(0.9);
        opacity: 0.9;
    }
    50% {
        transform: translateX(-50%) scaleY(0.95) scaleX(1.05);
        opacity: 1;
    }
    75% {
        transform: translateX(-50%) scaleY(1.05) scaleX(0.95);
        opacity: 0.95;
    }
}

@keyframes flameShape {
    0% {
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        height: 20px;
    }
    100% {
        border-radius: 45% 45% 55% 55% / 55% 55% 45% 45%;
        height: 22px;
    }
}

.candle-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 26px;
    background: linear-gradient(90deg, #e8d5b7 0%, #f5e6d3 50%, #e8d5b7 100%);
    border-radius: 3px;
    box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.candle-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 4px;
    background: #d4c4a8;
    border-radius: 2px;
}

/* Footer Links */
.footer-title {
    color: #ff8c00;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

@media screen and (min-width: 768px) {
    .footer-contact-info li {
        justify-content: flex-start;
    }
}

.footer-contact-info i {
    color: #ff8c00;
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media screen and (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #666;
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-footer:hover {
    background: #ff8c00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

/* Dark theme support for flickering footer */
body.dark-theme .flickering-footer {
    background: linear-gradient(180deg, #0d0d1a 0%, #12121f 50%, #0a0a15 100%);
}

body.dark-theme .footer-description {
    color: #888;
}

body.dark-theme .footer-contact-info {
    color: #888;
}

body.dark-theme .footer-copyright {
    color: #555;
}

@media screen and (max-width: 576px) {
    .flickering-footer {
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-candle {
        transform: scale(0.8);
    }
}

@media screen and (min-width: 576px) {
    .footer-brand {
        order: 0;
        grid-column: span 2;
    }
}

@media screen and (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

/*========== SHADCN FLICKERING FOOTER ==========*/
/* Main shadcn footer container */
.shadcn-footer {
    position: relative;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding: 4rem 2rem 2rem;
    overflow: hidden;
    border-top: 3px solid #ff8c00;
}

/* Main layout container */
.shadcn-footer .footer-main {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Left side */
.shadcn-footer .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .footer-left {
        align-items: flex-start;
        text-align: left;
    }
}

/* Brand link */
.shadcn-footer .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .footer-brand {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Footer logo image */
.shadcn-footer .footer-logo-img {
    width: 80px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

/* Brand text with flickering animation */
.shadcn-footer .footer-brand-text {
    font-family: 'Limelight', cursive;
    font-size: 2rem;
    color: #ff8c00;
    animation: textFlicker 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

@keyframes textFlicker {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }
    92% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }
    93% {
        opacity: 0.8;
        text-shadow: 0 0 5px rgba(255, 140, 0, 0.3);
    }
    94% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }
    96% {
        opacity: 0.9;
        text-shadow: 0 0 8px rgba(255, 140, 0, 0.4);
    }
    97% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }
}

/* Description */
.shadcn-footer .footer-description {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .footer-description {
        text-align: left;
    }
}

/* Badges container */
.shadcn-footer .footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .footer-badges {
        justify-content: flex-start;
    }
}

/* Individual badge */
.shadcn-footer .badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 140, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

@media screen and (min-width: 768px) {
    .shadcn-footer .badge-item {
        justify-content: flex-start;
    }
}

.shadcn-footer .badge-item i {
    color: #ff8c00;
    font-size: 1rem;
}

.shadcn-footer .badge-item span {
    color: #a0a0a0;
    font-size: 0.85rem;
}

/* Right side */
.shadcn-footer .footer-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .footer-right {
        align-items: flex-start;
        text-align: left;
    }
}

/* Links grid */
.shadcn-footer .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
}

@media screen and (max-width: 576px) {
    .shadcn-footer .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Footer column */
.shadcn-footer .footer-column {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .footer-column {
        text-align: left;
    }
}

/* Column title */
.shadcn-footer .footer-column-title {
    color: #ff8c00;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .footer-column-title {
        text-align: left;
    }
}

/* Link item */
.shadcn-footer .footer-link-item {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.shadcn-footer .footer-link-item:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

.shadcn-footer .footer-link-item i {
    margin-right: 0.5rem;
}

/* Glow effect */
.shadcn-footer .footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Dark theme support for shadcn footer */
body.dark-theme .shadcn-footer {
    background: linear-gradient(180deg, #0d0d1a 0%, #12121f 50%, #0a0a15 100%);
}

body.dark-theme .shadcn-footer .footer-description {
    color: #888;
}

body.dark-theme .shadcn-footer .badge-item span {
    color: #888;
}

body.dark-theme .shadcn-footer .footer-link-item {
    color: #888;
}

/* Responsive for mobile */
@media screen and (max-width: 576px) {
    .shadcn-footer {
        padding: 3rem 1rem 1.5rem;
    }
    
    .shadcn-footer .footer-brand-text {
        font-size: 1.5rem;
    }
    
    .shadcn-footer .footer-logo-img {
        width: 60px;
    }
    
    .shadcn-footer .footer-column-title {
        font-size: 1rem;
    }
    
    .shadcn-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .shadcn-footer .footer-bottom-left,
    .shadcn-footer .footer-bottom-right {
        width: 100%;
        justify-content: center;
    }
}

/* Make shadcn-footer alias for flickering-footer */
.shadcn-footer {
    composes: flickering-footer;
}

/*========== FOOTER BOTTOM SECTION ==========*/
.shadcn-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.shadcn-footer .footer-bottom-left {
    flex: 1;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .footer-bottom-left {
        text-align: left;
    }
}

.shadcn-footer .footer-copyright {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin: 0;
}

.shadcn-footer .footer-bottom-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .footer-bottom-right {
        justify-content: flex-end;
    }
}

.shadcn-footer .footer-social-links {
    display: flex;
    gap: 1rem;
}

.shadcn-footer .social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shadcn-footer .social-link-footer:hover {
    background: #ff8c00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

/* Center entire footer content */
.shadcn-footer .footer-main {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .footer-main {
        text-align: left;
    }
    
    .shadcn-footer .footer-left {
        align-items: flex-start;
    }
    
    .shadcn-footer .footer-brand {
        align-items: flex-start;
    }
    
    .shadcn-footer .footer-description {
        text-align: left;
    }
    
    .shadcn-footer .footer-badges {
        justify-content: flex-start;
    }
}

/* Center badge items */
.shadcn-footer .badge-item {
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .badge-item {
        justify-content: flex-start;
    }
}

/* Footer right section centered on mobile */
.shadcn-footer .footer-right {
    align-items: center;
}

@media screen and (min-width: 768px) {
    .shadcn-footer .footer-right {
        align-items: flex-start;
    }
}

/*========== MEDIA QUERIES ==========*/
@media screen and (min-width: 576px){
  .home__container,
  .about__container,
  .app__container{
    grid-template-columns: repeat(2,1fr);
    align-items: center;
  }

  .about__data, .about__initial,
  .app__data, .app__initial,
  .contact__container, .contact__initial{
    text-align: initial;
  }

  .about__img, .app__img{
    width: 380px;
    order: -1;
  }

  .contact__container{
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
  }
  .contact__button{
    justify-self: center;
  }
}

@media screen and (min-width: 768px){
  body{
    margin: 0;
  }

  .section{
    padding-top: 8rem;
  }

  .nav{
    height: calc(var(--header-height) + 0.75rem);
  }
  .nav__list{
    display: flex;
  }
  .nav__item{
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }
  .nav__toggle{
    display: none;
  }

  .change-theme{
    position: initial;
    margin-left: var(--mb-2);
  }

  .home__container{
    height: 100vh;
    justify-items: center;
  }

  .services__container,
  .menu__container{
    margin-top: var(--mb-6);
  }

  .menu__container{
    grid-template-columns: repeat(3, 210px);
    column-gap: 4rem;
  }
  .menu__content{
    padding: 1.5rem;
  }
  .menu__img{
    width: 130px;
  }

  .app__store{
    margin: 0 var(--mb-1) 0 0;
  }
}

@media screen and (min-width: 960px){
  .bd-container{
    margin-left: auto;
    margin-right: auto;
  }

  .home__img{
    width: 500px;
  }

  .about__container,
  .app__container{
    column-gap: 7rem;
  }
}

@media screen and (min-height: 721px) {
    .home__container {
        height: 640px;
    }
}

/*========== MENU TABS ==========*/
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--first-color);
    background-color: var(--container-color);
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    min-width: 150px;
}

.tab-btn:hover {
    background-color: var(--first-color);
    color: #FFF;
}

.tab-btn.active {
    background-color: var(--first-color);
    color: #FFF;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

/* Ocultar contenido de tabs inactivos */
.tab-content {
    display: none !important;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
}

.tab-content.active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Asegurar que los botones de tabs siempre sean clickeables */
.tab-btn {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/*==========================================
   ESTILOS DE BOTONES DE PRECIO PARA PIZZAS
   ==========================================*/

/* Price buttons container */
.price-buttons {
    display: flex;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

/* Make sure price buttons are ALWAYS clickable */
.price-btn {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    border: 2px solid #ff8c00;
    border-radius: 10px;
    cursor: pointer !important;
    transition: all 0.3s ease;
    min-width: 65px;
    flex: 1;
    max-width: 100px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
    pointer-events: auto !important;
    position: relative;
    z-index: 99999 !important;
}

/* Ensure ALL child elements are clickable */
.price-btn,
.price-btn span,
.price-btn .size-label,
.price-btn .price-value {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 10000 !important;
    position: relative !important;
}

/* Ensure price buttons are always clickable */
.price-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    border: 2px solid #ff8c00;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 65px;
    flex: 1;
    max-width: 100px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
    pointer-events: auto;
    position: relative;
    z-index: 10000 !important;
}

.price-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.5);
    background: linear-gradient(135deg, #ff9500 0%, #ff7700 100%);
}

.price-btn:active {
    transform: translateY(-1px);
}

/* Size label (Chica, Mediana, Familiar) */
.price-btn .size-label {
    font-family: "Poiret One", sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

/* Price value */
.price-btn .price-value {
    font-family: "Poiret One", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for price buttons */
@media screen and (max-width: 1400px) {
    .price-btn {
        padding: 7px 8px;
        min-width: 60px;
    }
    .price-btn .size-label {
        font-family: "Poiret One", sans-serif;
        font-size: 0.6rem;
    }
    .price-btn .price-value {
        font-family: "Poiret One", sans-serif;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 1200px) {
    .price-btn {
        padding: 6px 7px;
        min-width: 55px;
    }
    .price-btn .size-label {
        font-family: "Poiret One", sans-serif;
        font-size: 0.55rem;
    }
    .price-btn .price-value {
        font-family: "Poiret One", sans-serif;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 992px) {
    .price-btn {
        padding: 6px 6px;
        min-width: 50px;
    }
    .price-btn .size-label {
        font-family: "Poiret One", sans-serif;
        font-size: 0.5rem;
    }
    .price-btn .price-value {
        font-family: "Poiret One", sans-serif;
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 768px) {
    .price-buttons {
        gap: 8px;
    }
    .price-btn {
        padding: 10px 12px;
        min-width: 75px;
        max-width: 120px;
    }
    .price-btn .size-label {
        font-family: "Poiret One", sans-serif;
        font-size: 0.75rem;
    }
    .price-btn .price-value {
        font-family: "Poiret One", sans-serif;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .price-buttons {
        gap: 6px;
    }
    .price-btn {
        padding: 8px 10px;
        min-width: 65px;
        max-width: 100px;
    }
    .price-btn .size-label {
        font-family: "Poiret One", sans-serif;
        font-size: 0.65rem;
    }
    .price-btn .price-value {
        font-family: "Poiret One", sans-serif;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 400px) {
    .price-buttons {
        gap: 4px;
    }
    .price-btn {
        padding: 6px 8px;
        min-width: 55px;
        max-width: 85px;
    }
    .price-btn .size-label {
        font-family: "Poiret One", sans-serif;
        font-size: 0.55rem;
    }
    .price-btn .price-value {
        font-family: "Poiret One", sans-serif;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 360px) {
    .price-buttons {
        gap: 3px;
    }
    .price-btn {
        padding: 5px 6px;
        min-width: 50px;
        max-width: 75px;
    }
    .price-btn .size-label {
        font-family: "Poiret One", sans-serif;
        font-size: 0.5rem;
    }
    .price-btn .price-value {
        font-family: "Poiret One", sans-serif;
        font-size: 0.75rem;
    }
}

/* Legacy card-footer - hide in favor of price-buttons */
.card .card-footer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Make sure price buttons are always visible */
.price-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Legacy card-footer - hide in favor of price-buttons */
.card .card-footer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Ocultar la sección de agregar al carrito duplicada - usamos los botones de precio originales */
.add-to-cart-section {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/*==========================================
   ESTILOS DE TARJETAS DE PIZZA (FLIP 3D)
   ==========================================*/

/* Grid layout para las pizzas */
.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.menu.section {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

/* Fila con 1 pizza - centering */
.row.single-card {
    flex-wrap: nowrap;
}

.row.single-card .card {
    margin: 0 auto;
}

/* Estilos de la tarjeta flip */
.card {
    overflow: visible;
    width: 340px;
    height: 520px;
    perspective: 1000px;
    flex-shrink: 0;
}

.card .content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 500ms;
    box-shadow: var(--contact-shadow-hover);
    border-radius: 10px;
}

.card .front, 
.card .back {
    background-color: var(--contact-card-bg);
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--contact-card-border);
    box-shadow: var(--contact-shadow);
}

.card .front {
    transform: rotateY(0deg);
}

.card .back {
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card .back::before {
    position: absolute;
    content: ' ';
    display: block;
    width: 160px;
    height: 160%;
    background: linear-gradient(90deg, transparent, #ff9966, #ff9966, #ff9966, #ff9966, transparent);
    animation: rotation_481 5000ms infinite linear;
}

.card .back-content {
    position: absolute;
    width: 99%;
    height: 99%;
    background-color: var(--contact-card-bg);
    border-radius: 10px;
    color: var(--contact-text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-align: center;
    overflow-y: auto;
}

.card .back-content h3 {
    color: var(--contact-title-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.card .back-content ul {
    list-style-type: none;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
}

.card .back-content li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
    color: var(--contact-text-color);
}

.card .back-content li:before {
    content: "•";
    color: var(--contact-title-color);
    position: absolute;
    left: 0;
}

/* EFECTO FLIP - Se activa al hacer hover sobre la tarjeta */
.card:hover .content {
    transform: rotateY(180deg);
}

/* PREVENIR FLIP cuando la tarjeta tiene la clase no-flip (añadida por JS al hover sobre botones de precio) */
.card.no-flip .content,
.card.no-flip:hover .content {
    transform: rotateY(0deg) !important;
}

.card:hover .front,
.card:hover .back {
    border-color: var(--contact-border-hover);
    box-shadow: var(--contact-shadow-hover);
}

@keyframes rotation_481 {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

.card .front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    overflow: hidden;
}

.card .front-content .badge {
    background: linear-gradient(135deg, #ff6600 0%, #ff4500 100%);
    padding: 6px 16px;
    border-radius: 15px;
    width: fit-content;
    font-size: 0.85rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 10px;
    align-self: flex-start;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.5);
    border: 1px solid #ff6600;
}

.card .description {
    box-shadow: var(--contact-shadow);
    width: 100%;
    padding: 15px;
    background-color: var(--contact-card-border);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.card .title-section {
    font-size: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    margin-top: 10px;
}

.card .title-section p {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--contact-text-color);
    font-size: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card .card-footer {
    color: var(--contact-text-light);
    margin-top: 6px;
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.4;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px;
    padding: 0 5px;
}

.card .price {
    color: var(--contact-title-color);
    font-weight: bold;
    font-size: 1rem;
    margin-top: 5px;
}

.card .pizza-image {
    width: 85%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    border: 2px solid var(--contact-title-color);
    display: block;
    margin: 10px auto;
    padding: 6px;
    background-color: var(--contact-card-bg);
    box-sizing: border-box;
}

/* Fix for price buttons - remove any blocking elements */
.card .front .img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1 !important;
    pointer-events: none !important;
}

/* Also ensure description doesn't block */
.card .description {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.card .circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--contact-title-color);
    position: relative;
    filter: blur(15px);
    animation: floating 2600ms infinite linear;
}

.card #bottom {
    background-color: var(--contact-border-hover);
    left: 50px;
    top: 0px;
    width: 150px;
    height: 150px;
    animation-delay: -800ms;
}

.card #right {
    background-color: var(--contact-title-color);
    left: 160px;
    top: -80px;
    width: 30px;
    height: 30px;
    animation-delay: -1800ms;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive para las tarjetas */
@media screen and (max-width: 1400px) {
    .card {
        width: 320px;
        height: 480px;
    }
    .card .pizza-image {
        max-width: 200px;
    }
    .card .title-section p, .card .title-section {
        font-size: 1.4rem;
    }
    .card .card-footer {
        font-size: 0.75rem;
    }
    .card .back-content h3 {
        font-size: 1.3rem;
    }
    .card .back-content ul {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 1200px) {
    .card {
        width: 300px;
        height: 450px;
    }
    .card .pizza-image {
        max-width: 180px;
    }
    .card .title-section p, .card .title-section {
        font-size: 1.3rem;
    }
    .card .card-footer {
        font-size: 0.65rem;
    }
    .card .front-content {
        padding: 15px;
    }
    .card .back-content h3 {
        font-size: 1.2rem;
    }
    .card .back-content ul {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 992px) {
    .menu-grid {
        gap: 25px;
    }
    .row {
        gap: 12px;
    }
    .card {
        width: 280px;
        height: 420px;
    }
    .card .pizza-image {
        max-width: 160px;
        margin: 8px auto;
        padding: 4px;
    }
    .card .title-section p, .card .title-section {
        font-size: 1.2rem;
    }
    .card .card-footer {
        font-size: 0.65rem;
        gap: 2px;
    }
    .card .back-content h3 {
        font-size: 1.1rem;
    }
    .card .back-content li {
        font-size: 0.75rem;
    }
    .card .front-content {
        padding: 12px;
    }
    .card .back-content {
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .menu-grid {
        gap: 25px;
    }
    .row {
        gap: 15px;
    }
    .card {
        width: 420px;
        height: 600px;
    }
    .card .pizza-image {
        max-width: 280px;
        margin: 15px auto;
        padding: 8px;
    }
    .card .title-section p, .card .title-section {
        font-size: 1.5rem;
    }
    .card .card-footer {
        font-size: 0.9rem;
    }
    .card .badge {
        font-size: 0.9rem;
        padding: 7px 16px;
    }
    .card .back-content h3 {
        font-size: 1.5rem;
    }
    .card .back-content li {
        font-size: 1.1rem;
    }
    .card .back-content {
        padding: 20px;
    }
    .card .front-content {
        padding: 20px;
    }
    .card .description {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .menu-tabs {
        gap: 0.5rem;
        padding: 0 10px;
    }
    .tab-btn {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        min-width: 140px;
    }
    .menu-grid {
        gap: 20px;
    }
    .row {
        gap: 15px;
    }
    .card {
        width: 400px;
        height: 580px;
    }
    .card .pizza-image {
        max-width: 260px;
        margin: 15px auto;
        padding: 8px;
        border-width: 3px;
    }
    .card .title-section p, .card .title-section {
        font-size: 1.45rem;
    }
    .card .card-footer {
        font-size: 0.75rem;
    }
    .card .badge {
        padding: 7px 16px;
        font-size: 0.95rem;
    }
    .card .description {
        padding: 18px;
    }
    .card .back-content h3 {
        font-size: 1.45rem;
    }
    .card .back-content li {
        font-size: 1.05rem;
        padding-left: 16px;
    }
    .card .back-content {
        padding: 18px;
        gap: 12px;
    }
    .card .front-content {
        padding: 20px;
    }
}

@media screen and (max-width: 400px) {
    .menu-tabs {
        gap: 0.4rem;
    }
    .tab-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        min-width: 120px;
    }
    .card {
        width: 360px;
        height: 530px;
    }
    .card .pizza-image {
        max-width: 230px;
        margin: 12px auto;
        padding: 6px;
    }
    .card .title-section p, .card .title-section {
        font-size: 1.3rem;
    }
    .card .card-footer {
        font-size: 0.7rem;
    }
    .card .badge {
        padding: 5px 14px;
        font-size: 0.85rem;
    }
    .card .back-content h3 {
        font-size: 1.2rem;
    }
    .card .back-content li {
        font-size: 0.95rem;
    }
    .card .front-content {
        padding: 16px;
    }
    .card .description {
        padding: 14px;
    }
}

@media screen and (max-width: 360px) {
    .menu-grid {
        gap: 15px;
        padding: 0 8px;
    }
    .row {
        gap: 10px;
    }
    .card {
        width: 320px;
        height: 480px;
    }
    .card .pizza-image {
        max-width: 200px;
    }
    .card .title-section p, .card .title-section {
        font-size: 1.15rem;
    }
    .card .card-footer {
        font-size: 0.6rem;
    }
    .card .badge {
        padding: 4px 12px;
        font-size: 0.8rem;
    }
    .tab-btn {
        padding: 0.6rem 0.7rem;
        font-size: 0.8rem;
        min-width: 110px;
    }
}

/*========== ESTILOS PARA TARJETA DE INFORMACIÓN ADICIONAL ==========*/
.ingredients-separator {
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    padding: 20px 30px;
    text-align: center;
    box-sizing: border-box;
}

.ingredients-separator p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: var(--font-medium);
    margin: 0;
}

/* Responsive for separator */
@media screen and (max-width: 768px) {
    .ingredients-separator {
        padding: 15px 20px;
        margin: 15px auto;
    }
    .ingredients-separator p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .ingredients-separator {
        padding: 12px 15px;
        margin: 12px 10px;
    }
    .ingredients-separator p {
        font-size: 0.95rem;
    }
}

.additional-info-card {
    border-radius: 16px;
    padding: 25px 30px;
    width: 100%;
    max-width: 600px;
    box-shadow: var(--contact-shadow-hover);
    border: 2px solid var(--contact-card-border);
    box-sizing: border-box;
}

.additional-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--contact-card-border);
    flex-wrap: wrap;
    justify-content: center;
}

.additional-info-header i {
    font-size: 2rem;
    color: var(--contact-title-color);
}

/* Icono de pizza SVG para Ingredientes Adicionales */
.pizza-icon {
  display: inline-block !important;
  vertical-align: middle !important;
  margin: 0 8px !important;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  flex-shrink: 0 !important;
}

/* Override inline SVG attributes */
.pizza-icon[height], .pizza-icon[width] {
  width: 64px !important;
  height: 64px !important;
}

/* Responsive para tablets */
@media screen and (max-width: 992px) {
  .pizza-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
  }
}

/* Responsive para móviles grandes */
@media screen and (max-width: 768px) {
  .pizza-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    margin: 0 5px !important;
  }
}

/* Responsive para móviles medianos */
@media screen and (max-width: 576px) {
  .pizza-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    margin: 0 4px !important;
  }
}

/* Responsive para móviles pequeños */
@media screen and (max-width: 400px) {
  .pizza-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    margin: 0 3px !important;
  }
}

/* Extra small devices */
@media screen and (max-width: 350px) {
  .pizza-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    margin: 0 2px !important;
  }
}

/* Mejora responsive para el header de información adicional */
.additional-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--contact-card-border);
    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .additional-info-header {
        gap: 10px;
        padding-bottom: 12px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 576px) {
    .additional-info-header {
        gap: 8px;
        padding-bottom: 10px;
        margin-bottom: 12px;
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media screen and (max-width: 400px) {
    .additional-info-header {
        gap: 6px;
        padding-bottom: 8px;
        margin-bottom: 10px;
        padding-left: 4px;
        padding-right: 4px;
    }
}

.additional-info-header h3 {
    font-size: 1.5rem;
    color: var(--contact-title-color);
    font-weight: var(--font-semi-bold);
    margin: 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .additional-info-header h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .additional-info-header h3 {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 400px) {
    .additional-info-header h3 {
        font-size: 0.75rem;
    }
}

.additional-info-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ingredients-list {
    color: var(--contact-text-color);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    padding: 15px;
    background-color: var(--contact-card-border);
    border-radius: 10px;
    word-wrap: break-word;
}

.additional-prices {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: var(--contact-card-border);
    border-radius: 10px;
    border: 1px solid var(--contact-title-color);
    min-width: 80px;
    flex: 1;
    max-width: 150px;
}

.price-item .size {
    color: var(--contact-text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-align: center;
}

.price-item .price {
    color: var(--contact-title-color);
    font-size: 1.3rem;
    font-weight: var(--font-semi-bold);
    text-align: center;
}

/* Responsive para la tarjeta de información adicional */
@media screen and (max-width: 768px) {
    .additional-info-card {
        padding: 20px 15px;
        margin: 0 10px;
    }
    .additional-info-header h3 {
        font-size: 1.3rem;
    }
    .additional-info-header i {
        font-size: 1.5rem;
    }
    .ingredients-list {
        font-size: 0.9rem;
        padding: 12px;
    }
    .price-item {
        padding: 10px 12px;
        min-width: 70px;
    }
    .price-item .size {
        font-size: 0.8rem;
    }
    .price-item .price {
        font-size: 1.1rem;
    }
    .additional-prices {
        gap: 10px;
    }
}

@media screen and (max-width: 576px) {
    .additional-info-card {
        padding: 15px 12px;
        margin: 0 8px;
        border-radius: 12px;
    }
    .additional-info-header {
        gap: 8px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    .additional-info-header h3 {
        font-size: 1.1rem;
    }
    .additional-info-header i {
        font-size: 1.3rem;
    }
    .ingredients-list {
        font-size: 0.85rem;
        padding: 10px;
    }
    .additional-info-content {
        gap: 15px;
    }
    .price-item {
        padding: 8px 10px;
        min-width: 60px;
        flex: 1 1 80px;
    }
    .price-item .size {
        font-size: 0.75rem;
    }
    .price-item .price {
        font-size: 1rem;
    }
    .additional-prices {
        gap: 8px;
    }
}

@media screen and (max-width: 400px) {
    .additional-info-card {
        padding: 12px 10px;
        margin: 0 5px;
    }
    .additional-info-header h3 {
        font-size: 1rem;
    }
    .additional-info-header i {
        font-size: 1.2rem;
    }
    .ingredients-list {
        font-size: 0.8rem;
        padding: 8px;
    }
    .price-item {
        padding: 6px 8px;
        flex: 1 1 70px;
    }
    .price-item .size {
        font-size: 0.7rem;
    }
    .price-item .price {
        font-size: 0.9rem;
    }
}

/*========== PROMOS SECTION ==========*/
.promos {
    padding-top: 4rem !important;
    position: relative;
    background-color: #f7d9ba;
    min-height: 100px;
}

.promos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #f7d9ba;
    z-index: -1;
}

/* Forzar colores claros en modo oscuro para promos */
body.dark-theme .promos .section-subtitle {
    color: #ff8c00 !important;
}

body.dark-theme .promos .section-title {
    color: #393939 !important;
}

body.dark-theme .promos-description {
    color: #505050 !important;
}

.promos-description {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media screen and (max-width: 576px) {
    .promos-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
}

.promos__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0 1rem;
}

.promo-card {
    background: var(--contact-card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--contact-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--contact-card-border);
    flex: 0 1 calc(50% - 1rem);
    max-width: 550px;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--contact-shadow-hover);
    border-color: var(--contact-border-hover);
}

.promo-media {
    position: relative;
    width: 100%;
    /* Video format - menos alargado 3:4 */
    aspect-ratio: 3 / 4;
    max-width: 380px;
    margin: 0 auto;
    background: #00000000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-top: 20px;
    padding: 0;
    box-sizing: border-box;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

.promo-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    clip-path: inset(0% round 15px);
    -webkit-clip-path: inset(0% round 15px);
}

.promo-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    box-sizing: border-box;
}

.promo-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--contact-icon-bg);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-semi-bold);
    width: fit-content;
}

.promo-title {
    font-size: 1.25rem;
    color: var(--contact-text-color);
    font-weight: var(--font-semi-bold);
    margin: 0;
}

.promo-text {
    color: var(--contact-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.promo-price {
    font-size: 1.5rem;
    color: var(--contact-title-color);
    font-weight: var(--font-bold);
    margin-top: 0.5rem;
    font-family: 'Special Gothic Expanded One', sans-serif;
}

/* Responsive for Promos */
@media screen and (max-width: 768px) {
    .promos__container {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .promo-card {
        flex: 0 1 calc(50% - 1rem);
        max-width: 450px;
    }
    
    .promo-media {
        max-width: 780px;
    }
    
    .promo-content {
        padding: 1rem;
    }
    
    .promo-title {
        font-size: 1.1rem;
    }
    
    .promo-text {
        font-size: 0.85rem;
    }
    
    .promo-price {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 576px) {
    .promos__container {
        gap: 1rem;
    }
    
    .promo-card {
        flex: 0 1 100%;
        max-width: 100%;
    }
    
    .promo-media {
        max-width: 280px;
        aspect-ratio: 3 / 4;
        margin-top: 12px;
        padding: 0;
    }
    
    .promo-content {
        padding: 0.75rem;
    }
    
    .promo-title {
        font-size: 1rem;
    }
    
    .promo-text {
        font-size: 0.8rem;
    }
    
    .promo-price {
        font-size: 1.1rem;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/*========== SOCIAL MEDIA SECTION ==========*/
.social-section {
    margin-top: 4rem;
    padding: 3.5rem 2.5rem;
    background: var(--contact-card-bg);
    border-radius: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--contact-card-border);
}

.social-header {
    margin-bottom: 2.8rem;
}

.social-title {
    font-size: 4rem;
    color: var(--contact-text-color);
    margin-bottom: 2.5rem;
    font-weight: var(--font-semi-bold);
}

.social-subtitle {
    font-size: 1.25rem;
    color: var(--contact-title-color);
    margin-bottom: 1rem;
    font-weight: var(--font-medium);
}

.social-description {
    color: var(--contact-text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.social-platforms {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/*==========================================
   NUEVOS ESTILOS - SECCIÓN DE CONTACTO MEJORADA
   ==========================================*/

/* Variables CSS para sección de contacto */
:root {
    /* Modo claro: Improved colors for better visibility */
    --contact-bg: #fff5e6;
    --contact-card-bg: #ffffff;
    --contact-card-border: rgba(255, 140, 0, 0.4);
    --contact-icon-bg: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    --contact-icon-color: #ffffff;
    --contact-title-color: #ff6600;
    --contact-text-color: #2d2d2d;
    --contact-text-light: #555555;
    --contact-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
    --contact-shadow-hover: 0 8px 25px rgba(255, 140, 0, 0.35);
    --contact-border-hover: #ff8c00;
    --contact-map-border: #ff8c00;
    --contact-map-shadow: 0 4px 20px rgba(255, 140, 0, 0.25);
}

/* Modo oscuro: tarjetas claras para que destaquen */
body.dark-theme {
    --contact-bg: #1a1a1a;
    --contact-card-bg: #2d2d2d;
    --contact-card-border: rgba(255, 140, 0, 0.3);
    --contact-icon-bg: linear-gradient(135deg, #ff9500 0%, #ff6600 100%);
    --contact-icon-color: #ffffff;
    --contact-title-color: #ff9500;
    --contact-text-color: #ffffff;
    --contact-text-light: #b0b0b0;
    --contact-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --contact-shadow-hover: 0 8px 30px rgba(255, 140, 0, 0.4);
    --contact-border-hover: #ff8c00;
    --contact-map-border: #ff8c00;
    --contact-map-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Header de contacto */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header .section-subtitle {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.contact-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    /* Mejor color para modo claro - tono naranja pizza más vibrante */
    color: #000000;
}

/* Modo oscuro - ajustar color del título */
body.dark-theme .contact-header .section-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 149, 0, 0.3);
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto;
    /* Color para modo claro - más oscuro para mejor legibilidad */
    color: #1a1a1a;
    /* Fondo blanco para que resalte en modo claro */
    background-color: #fbefce;
    font-size: 1.1rem;
    line-height: 1.6;
    /* Peso de fuente semibold para mejor visibilidad */
    font-weight: 500;
    padding: 15px 20px;
    /* Borde sutil para destacar en ambos modos */
    border-left: 4px solid #ff6600;
    border-radius: 0 10px 10px 0;
    /* Sombra sutil para dar profundidad */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Modo oscuro - ajustar colores específicos */
body.dark-theme .contact-intro {
    color: #f0f0f0;
    /* Fondo sutil para mejor contraste en modo oscuro */
    background-color: rgb(85, 83, 83);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Contenedor principal de contacto */
.contact .contact__container {
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Información de contacto */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Tarjetas de contacto mejoradas */
.contact-info-full {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--contact-card-bg);
    border-radius: 16px;
    border: 2px solid var(--contact-card-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--contact-shadow);
}

.contact-info-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--contact-border-hover);
    box-shadow: var(--contact-shadow-hover);
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--contact-icon-bg);
    border-radius: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.contact-icon i {
    font-size: 1.6rem;
    color: var(--contact-icon-color);
}

.contact-details {
    flex: 1;
    text-align: left;
}

.contact-details h3 {
    color: var(--contact-title-color);
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.contact-details p {
    color: var(--contact-text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    white-space: nowrap;
}

/* Botón de WhatsApp mejorado */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #25D366 0%, #20bd5a 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20bd5a 0%, #1da851 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.1rem;
}

/* Icono de WhatsApp especial */
.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #20bd5a 100%) !important;
}

.whatsapp-icon i {
    color: white !important;
}

/* Mapa de contacto mejorado */
.contact-map {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--contact-map-shadow);
    border: 4px solid var(--contact-map-border);
    transition: all 0.3s ease;
}

.contact-map:hover {
    border-color: var(--contact-title-color);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25);
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
    transition: all 0.3s ease;
}

/* Animaciones de scroll reveal para contacto */
.contact-header {
    opacity: 0;
    transform: translateY(30px);
    animation: contactReveal 0.8s ease forwards;
    animation-delay: 0.1s;
}

.contact-info-card {
    opacity: 0;
    transform: translateX(-30px);
    animation: contactRevealLeft 0.6s ease forwards;
}

.contact-info-card:nth-child(1) { animation-delay: 0.2s; }
.contact-info-card:nth-child(2) { animation-delay: 0.3s; }
.contact-info-card:nth-child(3) { animation-delay: 0.4s; }

.contact-map {
    opacity: 0;
    transform: translateX(30px);
    animation: contactRevealRight 0.8s ease forwards;
    animation-delay: 0.3s;
}

@keyframes contactReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactRevealLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes contactRevealRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Social section mejorada */
.contact .social-section {
    opacity: 0;
    transform: translateY(30px);
    animation: contactReveal 0.8s ease forwards;
    animation-delay: 0.6s;
}

/* Responsive para tablets */
@media screen and (max-width: 992px) {
    .contact-header .section-title {
        font-size: 2rem;
        /* Mantener el color naranja en responsive */
        color: #000000;
    }
    
    body.dark-theme .contact-header .section-title {
        color: #ffffff;
    }
    
    .contact-intro {
        font-size: 1rem;
        color: #1a1a1a;
        background-color: #fbefce;
        border-left-color: #ff6600;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    body.dark-theme .contact-intro {
        color: #f0f0f0;
        background-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .contact-map iframe {
        height: 280px;
    }
}

/* Responsive para móviles */
@media screen and (max-width: 768px) {
    .contact-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .contact-header .section-title {
        font-size: 1.75rem;
        /* Mantener el color naranja en móvil */
        color: #000000;
    }
    
    body.dark-theme .contact-header .section-title {
        color: #ffffff;
    }
    
    .contact .contact__container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-info-full {
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 12px;
    }
    
    .contact-icon i {
        font-size: 1.4rem;
    }
    
    .contact-details h3 {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .whatsapp-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .contact-map {
        border-radius: 16px;
        border-width: 3px;
    }
    
    .contact-map iframe {
        height: 250px;
    }
}

/* Responsive para móviles pequeños */
@media screen and (max-width: 480px) {
    .contact-header .section-title {
        font-size: 1.5rem;
        /* Mantener el color naranja en móvil pequeño */
        color: #000000;
    }
    
    body.dark-theme .contact-header .section-title {
        color: #ffffff;
    }
    
    .contact-info-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .contact-icon i {
        font-size: 1.3rem;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details h3 {
        font-size: 0.85rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    .whatsapp-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .contact-map {
        border-radius: 12px;
        margin: 0 -0.5rem;
        width: calc(100% + 1rem);
    }
    
    .contact-map iframe {
        height: 200px;
    }
}

/* Animaciones adicionales para efectos visuales */
@keyframes pulse-icon {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

.contact-icon {
    animation: pulse-icon 2s infinite;
}

.contact-icon:hover {
    animation: none;
}

/* Estilos para el formulario de contacto (si se usa) */
.contact-form-wrapper {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

/*========== SOCIAL MEDIA SECTION (CONTACTO) ==========*/
.social-media-section {
    margin-top: 2rem;
    margin-bottom: 4rem;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    max-width: none;
    text-align: center;
}

.social-media-section .card-stack {
    position: relative;
    width: 380px;
    max-width: 100%;
    height: 400px;
    margin: 0 auto;

}

.social-media-section .card-stack .stack-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

.social-media-section .card-stack .stack-card--one {
    background: #FF4301;
    transform: rotate(-8deg);
    border: 1px solid #000000;
}

.social-media-section .card-stack .stack-card--two {
    background: #F2CE54;
    transform: rotate(8deg);
    border: 1px solid #000000;
}

.social-media-section .card-stack .stack-card--main {
    background: #77DD55;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    z-index: 5;
    padding: 0;
    overflow: hidden;
    border: 1px solid #000000;
}

body.dark-theme .social-media-section .card-stack .stack-card--main {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.social-media-section .social-card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 1.25rem 1rem 1.1rem;
    box-sizing: border-box;
}

.social-media-section .social-logo {
    margin-bottom: 0.35rem;
    flex-shrink: 0;
}

.social-media-section .footer-logo-img {
    width: 140px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

.social-media-section .social-title {
    font-size: 1.35rem;
    color: #ff6600;
    margin: 0 0 0.35rem;
    font-weight: var(--font-semi-bold);
    line-height: 1.25;
}

.social-media-section .social-description {
    color: #000000;
    font-size: 0.82rem;
    margin: 0 0 0.75rem;
    line-height: 1.45;
    max-width: 260px;
    flex-shrink: 0;
}

.social-media-section .card-stack:hover .stack-card--one {
    transform: translateX(-40px) rotate(-15deg);
}

.social-media-section .card-stack:hover .stack-card--two {
    transform: translateX(40px) rotate(15deg);
}

.social-media-section .card-stack:hover .stack-card--main {
    transform: translateY(-10px);
}

.social-media-section .social-buttons-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 10px 8px;
    margin-top: auto;
    flex-shrink: 0;
}

.social-media-section .socialContainer {
    width: 52px;
    height: 52px;
    background-color: #FF4301;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: 0.3s;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
}

.social-media-section .containerTikTok:hover {
    background-color: #FF4301;
    transition-duration: 0.3s;
    transform: scale(1.1);
    border-radius: 16px;
    box-shadow: 0 0 12px #F2CE54;
}

.social-media-section .containerInstagram:hover {
    background: #FF4301;
    transition-duration: 0.3s;
    transform: scale(1.1);
    border-radius: 16px;
    box-shadow: 0 0 12px #F2CE54;
}

.social-media-section .containerThreads:hover {
    background-color: #FF4301;
    transition-duration: 0.3s;
    transform: scale(1.1);
    border-radius: 16px;
    box-shadow: 0 0 12px #F2CE54;
}

.social-media-section .containerThreads:hover .threadsSvg path {
    fill: rgb(255, 255, 255);
}

.social-media-section .socialContainer:active {
    transform: scale(0.95);
    transition-duration: 0.3s;
}

.social-media-section .socialSvg {
    width: 20px;
}

.social-media-section .socialSvg path {
    fill: rgb(255, 255, 255);
}

.social-media-section .socialContainer:hover .socialSvg {
    animation: social-slide-in-top 0.3s both;
}

@keyframes social-slide-in-top {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive for Social Media Section in Contact */
@media screen and (max-width: 768px) {
    .social-media-section {
        margin-top: 2rem;
    }

    .social-media-section .card-stack {
        width: 300px;
        height: 360px;
    }

    .social-media-section .social-title {
        font-size: 1.1rem;
    }

    .social-media-section .social-description {
        font-size: 0.8rem;
    }

    .social-media-section .footer-logo-img {
        width: 130px;
    }

    .social-media-section .social-buttons-container {
        gap: 11px;
        padding: 10px 8px 6px;
    }

    .social-media-section .socialContainer {
        width: 48px;
        height: 48px;
    }

    .social-media-section .socialSvg {
        width: 18px;
    }

    .social-media-section .card-stack:hover .stack-card--one {
        transform: translateX(-32px) rotate(-15deg);
    }

    .social-media-section .card-stack:hover .stack-card--two {
        transform: translateX(32px) rotate(15deg);
    }
}

@media screen and (max-width: 576px) {
    .social-media-section {
        margin-top: 1.75rem;
    }

    .social-media-section .card-stack {
        width: min(100%, 280px);
        height: 340px;
    }

    .social-media-section .social-card-front {
        padding: 1rem 0.75rem 0.85rem;
    }

    .social-media-section .social-title {
        font-size: 1.05rem;
    }

    .social-media-section .social-description {
        font-size: 0.76rem;
        margin-bottom: 0.5rem;
    }

    .social-media-section .footer-logo-img {
        width: 120px;
    }

    .social-media-section .social-logo {
        margin-bottom: 0.25rem;
    }

    .social-media-section .card-stack:hover .stack-card--one {
        transform: translateX(-22px) rotate(-15deg);
    }

    .social-media-section .card-stack:hover .stack-card--two {
        transform: translateX(22px) rotate(15deg);
    }

    .social-media-section .social-buttons-container {
        gap: 10px;
        padding: 8px 6px 4px;
    }

    .social-media-section .socialContainer {
        width: 44px;
        height: 44px;
    }

    .social-media-section .socialSvg {
        width: 16px;
    }
}

/*==========================================
   CLEAN FOOTER STYLES (Shadcn-style)
   ==========================================*/
.site-footer {
    background: linear-gradient(180deg, #77DD55 0%, #77DD55 50%, #77DD55 100%);
    padding: 3rem 1.5rem 1.5rem;
    border-top: 1px solid #ff8c00;
    margin-top: auto;
}

.site-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Section - 3 columns on desktop */
.site-footer .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    align-items: center;
    align-content: center;
}

/* Tablet: 2 columns */
@media (min-width: 576px) {
    .site-footer .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Desktop: 3 columns */
@media (min-width: 768px) {
    .site-footer .footer-top {
        grid-template-columns: 1.2fr 1fr 1.3fr;
        gap: 2.5rem;
        text-align: left;
    }
}

/* Brand Section */
.site-footer .footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    width: 100%;
}

@media (min-width: 768px) {
    .site-footer .footer-brand-section {
        align-items: center;
    }
}

.site-footer .footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .site-footer .footer-logo-link {
        justify-content: center;
    }
}

.site-footer .footer-logo-img {
    width: 60px;
    height: auto;
    border-radius: 8px;
}


.site-footer .footer-tagline {
    color: #000000;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 300px;
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .site-footer .footer-tagline {
        text-align: center;
    }
}

.site-footer .footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .site-footer .footer-badges {
        justify-content: center;
    }
}

.site-footer .footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 140, 0, 0.442);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.25);
    color: #000000;
    font-size: 0.75rem;
}

.site-footer .footer-badge i {
    color: #ff8c00;
    font-size: 0.8rem;
}

/* Links Section - Single column, centered text on mobile */
.site-footer .footer-links-section {
    width: 100%;
}

.site-footer .footer-column {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer .footer-column {
        text-align: left;
    }
}

.site-footer .footer-heading {
    color: #ff8c00;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links-list li {
    margin-bottom: 0.5rem;
}

.site-footer .footer-links-list a {
    color: #000000;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.site-footer .footer-links-list a:hover {
    color: #ff8c00;
}

/* Contact Section */
.site-footer .footer-contact-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer .footer-contact-section {
        text-align: left;
    }
}

/* Centrar los iconos del footer en móvil */
.site-footer .footer-contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
}

.site-footer .footer-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 0.5rem;
}

.site-footer .footer-contact-item i {
    color: #ff8c00;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* En desktop alinear a la izquierda */
@media (min-width: 768px) {
    .site-footer .footer-contact-section {
        align-items: flex-start;
        text-align: left;
    }
    .site-footer .footer-contact-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    .site-footer .footer-contact-item .footer-contact-text {
        text-align: left;
        align-items: flex-start;
    }
}

.site-footer .footer-contact-item .footer-contact-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .site-footer .footer-contact-item {
        justify-content: flex-start;
        text-align: left;
    }
    
    .site-footer .footer-contact-item .footer-contact-text {
        text-align: left;
        align-items: flex-start;
    }
}

.site-footer .footer-contact-text h4 {
    color: #ff8c00;
    font-size: 0.875rem;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer .footer-contact-text p {
    color: #000000;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* Divider */
.site-footer .footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.3), transparent);
    margin: 2rem 0 1.5rem;
}

/* Bottom Bar */
.site-footer .footer-bottom-bar {
    text-align: center;
}

.site-footer .footer-copyright {
    color: #000000;
    font-size: 0.8rem;
    margin: 0;
}

/* Dark mode support */
body.dark-theme .site-footer {
    background: linear-gradient(180deg, #77DD55 0%, #77DD55 50%, #77DD55 100%);
}

body.dark-theme .site-footer .footer-tagline,
body.dark-theme .site-footer .footer-links-list a,
body.dark-theme .site-footer .footer-badge,
body.dark-theme .site-footer .footer-contact-text p {
    color: #000000;
}

body.dark-theme .site-footer .footer-copyright {
    color: #000000;
}

/*========== FOOTER GRID FIX - FORCE OVERRIDE ==========*/
.site-footer .footer-top {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
}

@media (min-width: 576px) {
    .site-footer .footer-top {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (min-width: 768px) {
    .site-footer .footer-top {
        grid-template-columns: 1.2fr 1fr 1.3fr !important;
        gap: 2.5rem !important;
        text-align: center !important;
    }
}

.site-footer .footer-brand-section,
.site-footer .footer-links-section,
.site-footer .footer-contact-section {
    width: 100% !important;
}

/*========== SOCIAL MEDIA ICONS - HERO SECTION ==========*/
.social-login-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  -webkit-box-reflect: below 20px linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

/* Ocultar iconos en dispositivos móviles y tablets - solo mostrar en computadoras */
@media screen and (max-width: 991px) {
  .social-login-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    -webkit-box-reflect: below 20px linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    }
}

/* Centrar el contenido del texto en desktop para alinear iconos */
@media screen and (min-width: 992px) {
  .scroll-hero__text {
    text-align: center !important;
  }
  
  .scroll-hero__buttons {
    justify-content: center;
  }
  
  .scroll-hero__buttons .button:last-child {
    margin-right: 0;
  }
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.social-icon svg {
  width: 26px;
  height: 26px;
}

.social-icon:hover {
  transform: scale(1.15);
}

/* Instagram */
.social-icon-instagram {
  background: linear-gradient(72.44deg, #ff7a00 11.92%, #ff0169 51.56%, #d300c5 85.69%);
}

.social-icon-instagram:hover {
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.5);
}

/* Threads */
.social-icon-threads {
  background: #FFFFFF;
  border: 2px solid #000000;
  box-sizing: border-box;
}

.social-icon-threads:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* TikTok */
.social-icon-tiktok {
  background-color: #000000;
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
}

.social-icon-tiktok:hover {
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
}

/* Responsive para móviles - más espacio y centrados */
@media screen and (max-width: 992px) {
  .social-login-icons {
    justify-content: center;
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .social-login-icons {
    justify-content: center;
    gap: 15px;
    margin-top: 45px;
  }
}

@media screen and (max-width: 576px) {
  .social-login-icons {
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
  }
  
  .social-icon {
    width: 44px;
    height: 44px;
  }
  
  .social-icon svg {
    width: 22px;
    height: 22px;
  }
}

@media screen and (max-width: 400px) {
  .social-login-icons {
    justify-content: center;
    gap: 12px;
    margin-top: 55px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
  }
  
  .social-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Asegurar que los price-buttons estén siempre por encima de todo */
.price-buttons {
    z-index: 999999 !important;
    position: relative !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Los botones de precio deben ser siempre clicables */
.price-btn {
    z-index: 9999999 !important;
    position: relative !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

/* Todos los hijos también deben ser clicables */
.price-btn *,
.price-btn *:hover,
.price-btn *:active {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Asegurar que la descripción no bloquee los clics */
.card .description {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 100 !important;
}

/* Prevenir que el hover en la tarjeta interfiera con los botones */
.card:hover .price-btn,
.card:hover .price-buttons {
    pointer-events: auto !important;
    z-index: 9999999 !important;
}

/* El front debe mantener pointer-events para que funcione el hover flip */
.card .front {
    pointer-events: auto !important;
}

.card .front-content {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 50 !important;
}

/* Los botones siempre deben estar activos */
.price-btn:hover,
.price-btn:active,
.price-btn:focus {
    pointer-events: auto !important;
    z-index: 10000000 !important;
}
