@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&display=swap');

:root {
    --red-color: #EA0029;
    --dark-white-color: #F4F4F4;
    --font-family: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    font-family: var(--font-family);
}




html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: black;
}

.main-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

header {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.2),
        4px 0 10px rgba(0, 0, 0, 0.1),
        -4px 0 10px rgba(0, 0, 0, 0.1); */
    background-image: url(../img/BG01.png);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0px 0px 10px 10px;
    margin: 0;
    /* Asegura que no haya márgenes */
    padding: 0;
    /* Asegura que no haya padding interno */
}

.logo {
    margin: 10px;
    margin-right: 30px;
}

.nav-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-left: 25px;
    z-index: 9999; /*Sino la foto del bucket tapa el link del nav y no se puede clickear, es para ponerlo en primer plano*/
}

nav {
    display: flex;
    align-items: center;
    padding-right: 15px;
}


nav ul {
    display: flex;
    justify-content: left;
    padding: 0;
    margin: 0;
    width: auto;
    list-style-type: none;
}

nav ul a {
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
    padding-right: 15px;
    padding-left: 15px;
    border-right: 1px solid var(--red-color);
}

nav ul a:hover {
    text-underline-offset: 10px;
    text-decoration: underline var(--red-color);
    color: var(--red-color);
}


.banner {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 50vh;
    min-height: 500px;
    /* max-height: 500px; */
    margin: 0;
    position: relative;
}

.banner-right {
    background-color: transparent;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    /*height: 60vh;*/
    min-height: 430px;
    overflow: hidden;
}

.bucket-pollo {
    position: relative;
    left: -30px;
}

.banner-left {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-left: 50px;
    left: 50px;
    margin-top: 0px;
}

.banner .banner-left h1 {
    /*font-size: 5vh;*/
    text-align: center;
    width: 100%;
    font-size: 2.5rem;
    font-weight: 800 !important;
	margin-top: 0;
    margin-bottom: 0;
}

.banner .banner-left .kfc {
    font-size: 3.2rem;
    font-weight: 900 !important;
}

.sos-vos {
    margin-bottom: 30px;
	width: 80%;
}

.appl_button {
    border-radius: 20px;
    background-color: #E21E2D;
    color: white;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: bolder;
    text-decoration: none;
    display: block;
}

/*
.person-cards {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    margin-top: 80px;
}

.cards-title h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 900 !important;
}


.card-container {
    display: flex;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    height: 500px;
}

.card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s ease;
    flex: 1;
}

.card.active {
    flex: 3;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.card.active img {
    object-fit: contain;
    object-position: center center;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: opacity 0.3s ease;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card.active .card-content {
    opacity: 1;
    transition-delay: 0.2s;
}

.card-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.card-container .appl_button {}*/

/* CONTENEDOR GENERAL */
.person-cards {
    padding: 40px 0;
    /*max-width: 1200px;*/
    margin: 0 auto;
    overflow: hidden;
    margin-top: 40px;
    width: 100%;
    height: 90vh;
}

.person-cards .cards-title h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 900 !important;
}

 .person-cards .card-container {
    display: flex;
    gap: 15px;
    height: 84%;
}

/* TARJETA */
.person-cards .card {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    transition: flex 0.35s ease;
    cursor: pointer;
}

/* CRECIMIENTO DE TARJETA */
.person-cards .card.active {
    flex: 3;
}

/* WRAPPER DE IMAGEN (soluciona tu problema visual) */
.person-cards .card-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.person-cards .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

/* OPCIONAL: zoom leve cuando está activa */
.person-cards .card.active .card-img-wrapper img {
    transform: scale(1.05);
}

/* OVERLAY */
.person-cards .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 0, 0, 0.85), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 30px;
}

/* Overlay visible solo si activa */
.person-cards .card.active .card-overlay {
    opacity: 1;
}

/* CONTENIDO DEL TEXTO */
.person-cards .card-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.person-cards .card.active .card-content {
    opacity: 1;
    transform: translateY(0);
}

.person-cards .card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.person-cards .appl_button {
    border-radius: 20px;
    background-color: black;
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: bolder;
    align-self: center;
}

/* POR QUE SOMOS EL MEJOR LUGAR PAR TI*/
.always-original {
    margin-top: 200px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 70vh;
    background-color: #DEDEDE;
    border-radius: 10px;
}

.always-original-sello {
    position: absolute;
    top: -100px;
    right: -13px;
    width: 20%;
}

.always-contenedor {
    width: 20%;
    margin-right: 200px;
    height: 50%;
    display: flex;
    align-items: center;

}

.always-contenedor p {
    margin-bottom: 0;
    font-size: 2.2rem;
    text-align: end;
    margin-right: 30px ;
    margin-left: 50px;
}

.video-contenedor{
    margin-left: 20px;
	height: 90%;
}

.main-iframe {
	width : 100%;
	height : 100%;
	border-radius : 15px;
	aspect-ratio: 16 / 9;
}

.always-contenedor p span {
    color: #EA0029;
    font-weight: 900 !important;
}

.beneficios-section {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.beneficios-title {
    margin-bottom: 30px;
}

.beneficios-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--red-color);
    font-weight: 800 !important;
}

.beneficios-title h2 span {
    color: var(--red-color);
    font-weight: 800;
}

.beneficios-title p {
    font-size: 1.8rem;
    margin: 0 auto;
    line-height: 1.6;
    width: 70%;
    margin-bottom: 50px;
}

.beneficios-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
}

.beneficio-item {
    height: 350px;
    width: 170px;
}

.beneficio-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70%;
    background-color: #E21E2D;
    margin-bottom: 20px;
}

.beneficio-text {
    align-items: center;
    width: 175px;
    height: 80px;
}

.beneficio-text-red {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #E21E2D;
}

.beneficio-text-black {
  font-size: 20px;
  color: #333;
}

.conocenos{
    width: 100%;
}

.no-experiencia {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.no-experiencia h2 {
  color: var(--red-color);
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.no-experiencia div {
  color: black;
  font-size: 2.8rem;
  max-width: 700px;
}


.container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.left-column {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding-right: 70px;
}


.mision-y-valores h2 {
  color: #000;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: left;
}

.nuestra-mission-item {
  margin-bottom: 15px;
  width: 70%;
}

.nuestra-mission-header {
  background-color: var(--red-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  color: white;
}

.nuestra-mission-header h2 {
  margin: 0;
  font-size: 24px;
  color: white;
}

.nuestra-mission-header .icon-container {
  background-color: black;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nuestra-mission-content {
  display: none;
  padding: 10px 0;
  line-height: 1.4;
  font-size: 20px;
  text-align: left;
}

.nuestra-mission-item.active .nuestra-mission-content {
  display: block;
}


.right-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.main-image{
    width: 100%;
}


.preguntas-frecuentes {
    display: flex;
    padding: 50px 20px;
    margin: 0 auto;
    justify-content: space-between;
}

.preguntas-frecuentes h2 {
    width: 30%;
    color: black;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: start;
}

.accordion-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #000000;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.4rem;
    text-align: left;
    font-weight: 500;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 15px 0;
    margin: 0;
    text-align: left;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

.fa-chevron-down {
    transition: transform 0.3s ease;
}

footer {
    background-color: black;
    color: white;
    padding: 40px 20px;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-footer img {
    width: 100px;
}

.footer-links ul {
    display: flex;
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    padding-right: 15px;
    padding-left: 15px;
    border-right: 1px solid white;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-media a {
    color: white;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 0;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom p {
    max-width: 750px;
    text-wrap: stable;
    font-size: 0.9rem;
}


/*CARDS SWIPPER*/

.cards{
    width: 100%;
    padding: 40px 0;
    max-width: 1050px;
    margin: 0 auto;
    padding-top: 0;
}

.titles:first-child {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titles .first{
    max-width: 800px;
    margin: 0;
    color: var(--red-color);
    font-weight: 700 !important;
    font-size: 2.2rem;
}

.titles .second{
    max-width: 800px;
    margin: 0;
    color: #EA0029;
    font-size: 2.2rem;
    font-weight: 700 !important;
    text-align: center;
}

.swiper.mySwiper2.container{
    padding: 0;
    overflow: hidden;
}

.swiper-slide.card_s{
    border-radius: 10px;
    height: 400px;
    width: 240px;
    margin: 0 auto;
    transition: transform 0.3s;
}

.video-container{
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
}

.thumbnail-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    display: flex;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-player iframe,
.youtube-player div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-button-next{
    margin-left: 80px !important;
}

.swiper-button-next, .swiper-button-prev{
    opacity: 1;
    color: #F4F4F4;
    background-color:#D32127;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    padding: 5px;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 0.8;
    color: black;
}

.beneficios-swiper .swiper-slide {
  width: 100% !important;
  display: flex;
  justify-content: center; /* centra el contenido */
}

.beneficio-item {
  margin: 0 auto;   /* centra la tarjeta */
}


.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--red-color);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
/* ============================================
   MEDIA QUERIES PARA RESPONSIVE DESIGN
   ============================================ */

/* Tablets y pantallas medianas (1024px o menos) */

iframe img{

}

@media(max-width:1280px){
    .bucket-pollo{
        width: 50%;
        left: -10px;
    }

    .banner-left{
        margin-right: 20px;
        margin-left: 0;
    }
    .video-contenedor{
        display: flex;

    }
    .video-contenedor img{
        width: 90%;
    }

    .always-contenedor{
        width: 33%;
    }

}
@media (max-width: 1024px) {
    header{
        background-image: none;
    }

    .banner{
        flex-direction: column-reverse;
    }
    .nav-container {
        margin-left: 15px;
        justify-content: space-between;
    }

    .banner {
        height: auto;
        min-height: 400px;
    }

    .banner-left {
        width: 55%;
        left: 20px;
        margin-left: 20px;
    }

    .banner .banner-left h1 {
        font-size: 2.5rem;
    }

    .banner .banner-left .kfc {
        font-size: 2.7rem;
    }

    .bucket-pollo {
        left: 0px;
        max-width: 450px;
    }

    .always-original {
        margin-top: 150px;
        height: auto;
        padding: 40px 20px;
    }

    .always-original-sello {
        right: -10px;
        width: 200px;
    }

    .always-contenedor {
        width: 30%;
        margin-right: 100px;
    }

    .always-contenedor p {
        font-size: 2.2rem;
    }

    .beneficios-title p {
        width: 85%;
        font-size: 1.5rem;
    }

    .main-image-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .main-image{
        width: 80%;
    }

    .beneficio-item {
        height: 300px;
        width: 150px;
    }

    .beneficio-text {
        width: 150px;
    }

    .beneficio-text-red,
    .beneficio-text-black {
        font-size: 16px;
    }

    .container {
        flex-direction: column;
        max-width: 780px !important;
    }

    .left-column {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .nuestra-mission-item {
        width: 100%;
    }

    .preguntas-frecuentes {
        flex-direction: column;
    }

    .preguntas-frecuentes h2 {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .accordion {
        width: 100%;
    }
}

@media (max-width: 860px) {
    .container1{
        flex-direction: column-reverse;
        padding: 0;
    }

    .bandera-burger{
        display: flex;
        align-items: center;
        margin-right: 10px !important;
    }

    .hamburger-menu{
        display: flex;
        order: 3;
    }

    .bar {
    height: 3px;
    width: 100%;
    background-color: var(--red-color);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    .bandera {
        order: 2;
        margin-right: 15px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 20px;
    }

    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    nav ul a {
        padding: 10px;
        border-right: none;
        border-bottom: 1px solid #D32127;
        display: block;
        width: 100%;
    }


    .main-image{
        width: 50%;
    }

    .right-column{
        margin: 40px;
    }

}

/* Tablets pequeñas y móviles (768px o menos) */
@media (max-width: 768px) {
    /* NAVEGACIÓN MÓVIL */

    header{
        background-image: none;
    }
    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 15px 20px;
        margin: 0;
    }

    .logo {
        margin: 0;
        z-index: 10001;
    }

    .logo img {
        width: 70px;
        height: auto;
    }

    .bandera {
        order: 2;
        z-index: 10001;
    }

    .bandera img {
        width: 35px;
    }

    /* Menú hamburguesa */
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 10001;
        order: 3;
    }

    .hamburger-menu span {
        width: 28px;
        height: 3px;
        background-color: var(--red-color);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Navegación desplegable */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        transition: left 0.3s ease;
        padding: 80px 0 20px;
        z-index: 10000;
        overflow-y: auto;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    nav ul a {
        display: block;
        padding: 18px 25px;
        border-right: none;
        font-size: 1.1rem;
        text-align: left;
        transition: all 0.3s ease;
    }

    nav ul a:hover,
    nav ul a.active {
        background-color: var(--red-color);
        color: white;
        padding-left: 35px;
    }

    /* BANNER MÓVIL */
    .banner {
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding: 30px 20px;
        background-position: center;
    }

    .bucket-pollo {
        position: relative;
        left: 0;
        max-width: 90%;
        width: 280px;
        order: 1;
        margin: 0 auto 20px;
    }

    .banner-left {
        width: 100%;
        left: 0;
        margin: 0;
        order: 2;
        padding: 0 15px;
    }

    .banner .banner-left h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .banner .banner-left .kfc {
        font-size: 2rem;
    }

    .sos-vos {
        width: 180px;
        margin: 15px 0 25px;
    }

    .appl_button {
        font-size: 1.2rem;
        padding: 14px 35px;
        margin-bottom: 20px;
        box-shadow: 0 4px 15px rgba(226, 30, 45, 0.3);
        transition: all 0.3s ease;
    }

    .appl_button:active {
        transform: scale(0.95);
    }

    /* CARDS DE POSICIONES */
    .person-cards {
        margin-top: 0px;
        height: auto;
        padding: 30px 15px;
    }

    .person-cards .cards-title h2 {
        font-size: 1.6rem;
        padding: 0 20px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .person-cards .card-container {
        flex-direction: column;
        gap: 15px;
        height: auto;
    }

    .person-cards .card {
        width: 100%;
        height: 400px;
        border-radius: 15px;
        flex: 1 !important;
    }

    .person-cards .card.active {
        flex: 1 !important;
    }

    .person-cards .card-img-wrapper img {
        object-fit: cover;
        object-position: center;
    }

    .person-cards .card-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(255, 0, 0, 0.85), transparent 60%);
    }

    .person-cards .card-content {
        opacity: 1;
        transform: translateY(0);
        display: flex;
        flex-direction: column;
    }

    .person-cards .card-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .person-cards .appl_button {
        font-size: 1.1rem;
        padding: 12px 30px;
    }

    /* SECCIÓN ALWAYS ORIGINAL */
    .always-original {
        flex-direction: column;
        margin-top: 60px;
        padding: 70px 20px 40px;
        border-radius: 15px;
    }

    .always-original-sello {
        top: -40px;
        right: 15px;
        width: 90px;
    }

    .video-contenedor {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
        border-radius: 10px;
        overflow: hidden;
        margin-left: 0;
    }

    .video-contenedor img {
        width: 100%;
        height: auto;
        display: block;
    }

    .always-contenedor {
        width: 100%;
        margin: 0;
        text-align: center;
        padding: 0 15px;
    }

    .always-contenedor p {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.3;
    }

    /* BENEFICIOS */
    .beneficios-section {
        padding: 40px 15px;
        padding-bottom: 0;
    }

    .beneficios-title {
        margin-bottom: 40px;
    }

    .beneficios-title h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .beneficios-title p {
        width: 100%;
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .beneficios-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .beneficio-item {
        width: 100%;
        max-width: 250px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .beneficio-icon {
        width: 100%;
        height: 200px;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .beneficio-icon img {
        max-width: 70%;
        height: auto;
    }

    .beneficio-text {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .beneficio-text-red,
    .beneficio-text-black {
        font-size: 1rem;
        display: block;
    }

    /* CONOCENOS */
    .conocenos {
        padding: 0;
    }

    .no-experiencia {
        margin: 40px 0;
        padding: 0 15px;
    }

    .no-experiencia h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .no-experiencia div {
        font-size: 1.6rem;
        padding: 0;
        line-height: 1.3;
    }

    .container {
        padding: 20px 15px;
        max-width: 700px !important;
    }

    .left-column {
        padding: 0;
    }

    .mision-y-valores h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .nuestra-mission-item {
        width: 100%;
        margin-bottom: 15px;
    }

    .nuestra-mission-header {
        padding: 15px;
        border-radius: 8px;
        margin: 20px;
    }

    .nuestra-mission-header h2 {
        font-size: 1.1rem;
    }

    .nuestra-mission-header i {
        font-size: 1rem;
    }

    .nuestra-mission-content {
        font-size: 0.95rem;
        padding: 15px;
        line-height: 1.6;
        margin: 20px;
    }

    .right-column {
        margin-top: 30px;
    }

    .main-image-container {
        width: 100%;
    }

    .main-image {
        width: 75%;
        height: auto;
        border-radius: 10px;
    }

    

    /* PREGUNTAS FRECUENTES */
    .preguntas-frecuentes {
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
    }

    .preguntas-frecuentes h2 {
        width: 100%;
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 10px;
    }

    .accordion {
        width: 100%;
    }

    .accordion-item {
        margin-bottom: 12px;
        border-bottom: 2px solid #e0e0e0;
    }

    .accordion-header {
        padding: 18px 0;
    }

    .accordion-header h3 {
        font-size: 1rem;
        line-height: 1.4;
        padding-right: 15px;
    }

    .accordion-header i {
        font-size: 1.1rem;
        color: var(--red-color);
    }

    .accordion-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 10px 0 20px;
    }

    /* FOOTER */
    footer {
        padding: 30px 15px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
    }

    .logo-footer {
        text-align: center;
    }

    .logo-footer img {
        width: 80px;
    }

    .footer-links ul {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .footer-links ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-links ul li:last-child {
        border-bottom: none;
    }

    .footer-links ul li a {
        border-right: none;
        padding: 12px;
        display: block;
    }

    .footer-contact {
        text-align: center;
    }

    .social-media {
        justify-content: center;
        margin-top: 15px;
    }

    .social-media a img {
        width: 35px;
        height: 35px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.5;
        padding: 0 10px;
    }
}

/* Móviles pequeños (480px o menos) */
@media (max-width: 480px) {
    .logo img {
        width: 60px;
    }

    .bandera img {
        width: 28px;
    }

    .banner {
        padding: 20px 15px;
    }

    .banner .banner-left h1 {
        font-size: 1.5rem;
    }

    .banner .banner-left .kfc {
        font-size: 1.7rem;
    }

    .sos-vos {
        width: 150px;
    }

    .appl_button {
        font-size: 1.1rem;
        padding: 12px 28px;
    }

    .bucket-pollo {
        width: 240px;
    }

    .person-cards .cards-title h2 {
        font-size: 1.4rem;
    }

    .person-cards .card {
        height: 350px;
    }

    .always-contenedor p {
        font-size: 1.3rem;
    }

    .beneficios-title h2 {
        font-size: 1.5rem;
    }

    .beneficios-title p {
        font-size: 0.9rem;
    }

    .beneficio-icon {
        height: 180px;
    }

    .no-experiencia h2 {
        font-size: 1.4rem;
    }

    .no-experiencia div {
        font-size: 1.4rem;
    }

    .mision-y-valores h2 {
        font-size: 1.3rem;
    }

    .preguntas-frecuentes h2 {
        font-size: 1.5rem;
    }

    .accordion-header h3 {
        font-size: 0.95rem;
    }

    .titles h1 {
        font-size: 1.2rem !important;
    }

    .swiper-slide.card_s {
        height: 320px;
    }

    .right-column{
        min-width: 200px;
    }
}
/* Overlay oscuro cuando el menú está abierto */
@media (max-width: 768px) {
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999;
    }

    body.menu-open::before {
        opacity: 1;
        visibility: visible;
    }

    body.menu-open {
        overflow: hidden;
    }
}

.cards-swiper {
  display: none;
  width: 100%;
  padding: 20px 0;
}

.cards-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.person-grid {
  display: flex;
  gap: 20px;
}

.bandera-burger {
    display: flex;
    margin-right: 40px;
}


