/* Estilos para la sección de Información */
.info-container {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: var(--font-body);
}

.info-title {
    text-align: center;
    color: #4f2987;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.info-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #4f2987, #bd8222);
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.info-text {
    order: 1;
}

.info-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    position: relative;
    padding: 15px 20px 15px 60px;
    margin-bottom: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.info-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-list li:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #4f2987;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.info-list li:nth-child(1):before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2L1 21h22L12 2zm0 4l7.5 13h-15L12 6z"/></svg>');
}

.info-list li:nth-child(2):before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
}

.info-list li:nth-child(3):before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 18c1.1 0 1.99-.9 1.99-2L22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z"/></svg>');
}

.info-list li:nth-child(4):before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

.info-list li:nth-child(5):before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z"/></svg>');
}

.info-list li:nth-child(6):before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z"/></svg>');
}

.info-image {
    order: 2;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 100%;
    max-height: 500px;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.info-image:hover img {
    transform: scale(1.05);
}

.info-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #4f2987, #bd8222);
    color: white;
    padding: 8px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .info-content {
        grid-template-columns: 1fr;
    }
    
    .info-text {
        order: 2;
    }
    
    .info-image {
        order: 1;
        margin-bottom: 30px;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .info-title {
        font-size: 28px;
    }
    
    .info-intro {
        font-size: 16px;
    }
    
    .info-list li {
        padding: 12px 15px 12px 50px;
    }
    
    .info-list li:before {
        left: 15px;
        width: 25px;
        height: 25px;
        background-size: 14px;
    }
}

/* Estilos para el botón de solicitud de información */
.info-cta-container {
    margin-top: 30px;
    text-align: center;
}

.info-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #4f2987, #bd8222);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(189, 130, 34, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.info-cta-button .icon {
    margin-right: 10px;
    font-size: 18px;
}

.info-cta-button .hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #bd8222, #4f2987);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.info-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(189, 130, 34, 0.4);
}

.info-cta-button:hover .hover-effect {
    opacity: 1;
}

.info-cta-note {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Animación de pulso para llamar la atención */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(189, 130, 34, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(189, 130, 34, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(189, 130, 34, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .info-cta-button {
        width: 100%;
        padding: 12px 20px;
    }
}