.special-date a {
    background-color: #ff0;
    color: #000;
}

.persona {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.card-select-tren-table.full {
    grid-column: span 3;
}

.bg-orange {
    background-color: #E98208 !important;
}

@media(max-width:767px){
    .persona {
        grid-template-columns: 1fr;
    }
}

.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: #FF5D5D;
}

.section h1{
    font-size: 45px;
    font-family: Barcelony;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.section > p{
    font-size: 20px;
    margin-bottom: 30px;
    color: #fff;
}

.section > p b{
    font-family: "Muller bold";
}

.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    gap: 30px;
}

.benefits>div:nth-child(1){
    border-left: 12px solid #4CAF50;    
}
.benefits>div:nth-child(1) h2{
    color: #4CAF50;    
}

.benefits>div:nth-child(2){
    border-left: 12px solid #BD2C2F;    
}
.benefits>div:nth-child(2) h2{
    color: #BD2C2F;    
}

.benefits>div:nth-child(3){
    border-left: 12px solid #0367C2;    
}
.benefits>div:nth-child(3) h2{
    color: #0367C2;    
}

.benefits>div:nth-child(4){
    border-left: 12px solid #E98208;    
}
.benefits>div:nth-child(4) h2{
    color: #E98208;    
}

.benefits>div:nth-child(5){
    border-left: 12px solid #00A091;    
}
.benefits>div:nth-child(5) h2{
    color: #00A091;    
}

.benefit {
    width: 100%;
    background: white;
    border-left: 12px solid #4CAF50;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.benefit h3 {
    margin: 0 0 10px;
    color: #1976D2;
}

.cta {
    background: #F44336;
    color: white;
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.cta h2 {
margin-bottom: 20px;
}

.cta a {
background: #1976D2;
color: white;
padding: 15px 25px;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
transition: background 0.3s ease;
}

.cta a:hover {
background: #1356a0;
}

.t-left {
    width: 100%;
    text-align: start;
}

#content-footer-plan {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

#content-footer-plan a {    
    animation: breathing 2.0s ease-in-out infinite;
}

#content-footer-plan a,
#content-footer-plan p {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    color: #000;
	font-family: "Muller medium";
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.titulo_pagina {
    color: #fff !important;
    margin-bottom: 30px;
}

.titulo_pagina small {
    color: #fff !important;
}

#persona-prin {
    display: block;
}

@keyframes breathing {
    0% {
      transform: scale(1.01);
      opacity: 1;
    }
    50% {
      transform: scale(1.02);
      opacity: 0.95;
    }
    100% {
      transform: scale(1.01);
      opacity: 1;
    }
  }

@media (max-width: 600px) {
    header h1 {
        font-size: 1.8rem;
    }
}

#s-gal-planes>h3 {
    font-family: "Muller bold";
    font-size: 30px;
    color: #8d0d02;
    margin-bottom: 30px;
}

.car-planes-gal {
    position: relative;
} 

.car-planes-gal::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px; /* igual que la imagen */
}

/* Mostrar capa al hacer hover */
.car-planes-gal:hover::after {
    opacity: 1;
}

/* Texto "Ver Más" */
.car-planes-gal span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #8d0d02;
    font-size: 18px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: #fff;
    border-radius: 20px;
    padding: 4px 20px;
    font-family: "Muller bold";
}

.car-planes-gal:hover span {
    opacity: 1;
}
#s-gal-planes {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0px;
    gap: 30px;
}

#content-carousel-planes-gal {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#carousel-planes-gal {
    width: 100%;
}

#carousel-planes-gal img{
    border-radius: 10px;
}

@media screen and (max-width: 1024px) {
    .section {
        padding: 20px;
    }

    .section h2 {
        font-size: 30px;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }

    .benefits {
    display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    h1.titulo_pagina {
        font-size: 30px;
    }

    h1.titulo_pagina {
        line-height: 20px;
    }

    .section > p {
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center;
    }

    .t-left {
        text-align: start !important;
    }

    #content-footer-plan {
        grid-template-columns: 1fr;
    }

    #s-gal-planes>h3 {
        margin-bottom: 0px;
    }

    #s-gal-planes {
        padding: 40px 0px;
    }
}