/* Footer Styles - Versión Mejorada Responsive */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.ibao-footer {
    background: linear-gradient(90deg, 
                #2689d4 0%, 
                #6454b2 50%, 
                #8e2a92 100%);
    padding: 40px 0 20px;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.ibao-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 40px;
}

.ibao-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0px;
    gap: 40px;
}

/* Logo Section */
.ibao-logo {
    margin-bottom: 50px;
}

.ibao-logo-image {
    max-width: 400px;
    max-height: 80px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ibao-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.ibao-logo-link:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.ibao-logo-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Left Column Styles */
.ibao-footer-left {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.ibao-contact-item {
    margin-bottom: 12px;
}

.ibao-contact-item strong {
    display: block;
    margin-bottom: 8px; 
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 4vw, 20px); 
    line-height: 1.3em;
    font-weight: 600;
    color: white;
}

.ibao-contact-line {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 3.5vw, 18px); 
    line-height: 1.5em;
    font-weight: 400;
    gap: 8px; 
}

.ibao-contact-line i {
    width: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0; 
}

.ibao-contact-line span {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    word-break: break-word;
    hyphens: auto; 
}

/* Social Links */
.ibao-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap; 
}

.ibao-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; 
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px; 
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ibao-social-link:hover,
.ibao-social-link:focus {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    outline: none;
}

.ibao-social-link i {
    font-size: 16px; 
}

/* Right Column Styles */
.ibao-footer-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.ibao-footer-nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
    width: 100%;
}

.ibao-footer-nav-section {
    flex: 0 1 auto;
    min-width: 100px;
}

.ibao-footer-nav-section h4 {
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.3em;
    font-weight: 600;
    color: white;
}

.ibao-nav-link {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 3.5vw, 18px); 
    line-height: 1.5em;
    font-weight: 400;
    transition: all 0.3s ease;
    transform: translateX(0);
    word-break: break-word;
    hyphens: auto;
    padding: 4px 0; 
}

.ibao-nav-link:hover,
.ibao-nav-link:focus {
    color: #b8b8b8;
    transform: translateX(5px);
    outline: none;
}

/* CTA Button */
.ibao-footer-cta {
    text-align: center;
    margin-top: 10px;
}

.ibao-demo-button {
    display: inline-block;
    padding: 12px 24px; 
    background-color: #2689D4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 3.5vw, 18px); 
    line-height: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px; 
    box-sizing: border-box;
}

.ibao-demo-button:hover,
.ibao-demo-button:focus {
    background-color: #1e6ba8;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    outline: none;
}

/* Copyright Styles */
.ibao-footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(12px, 3vw, 16px); 
    line-height: 1.5em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Breakpoints Mejorados */







/* Footer Styles - Versión Mejorada Responsive */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.ibao-footer {
    background: linear-gradient(90deg, 
                #2689d4 0%, 
                #6454b2 50%, 
                #8e2a92 100%);
    padding: 40px 0 20px;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.ibao-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 40px;
}

.ibao-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0px;
    gap: 40px;
}

/* Logo Section */
.ibao-logo {
    margin-bottom: 50px;
}

.ibao-logo-image {
    max-width: 400px;
    max-height: 80px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ibao-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.ibao-logo-link:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.ibao-logo-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Left Column Styles */
.ibao-footer-left {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.ibao-contact-item {
    margin-bottom: 12px;
}

.ibao-contact-item strong {
    display: block;
    margin-bottom: 8px; 
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 4vw, 20px); 
    line-height: 1.3em;
    font-weight: 600;
    color: white;
}

.ibao-contact-line {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 3.5vw, 18px); 
    line-height: 1.5em;
    font-weight: 400;
    gap: 8px; 
}

.ibao-contact-line i {
    width: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0; 
}

.ibao-contact-line span {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    word-break: break-word;
    hyphens: auto; 
}

/* Social Links */
.ibao-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap; 
}

.ibao-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; 
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px; 
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ibao-social-link:hover,
.ibao-social-link:focus {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    outline: none;
}

.ibao-social-link i {
    font-size: 16px; 
}

/* Right Column Styles */
.ibao-footer-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.ibao-footer-nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
    width: 100%;
}

.ibao-footer-nav-section {
    flex: 0 1 auto;
    min-width: 100px;
}

.ibao-footer-nav-section h4 {
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.3em;
    font-weight: 600;
    color: white;
}

.ibao-nav-link {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 3.5vw, 18px); 
    line-height: 1.5em;
    font-weight: 400;
    transition: all 0.3s ease;
    transform: translateX(0);
    word-break: break-word;
    hyphens: auto;
    padding: 4px 0; 
}

.ibao-nav-link:hover,
.ibao-nav-link:focus {
    color: #b8b8b8;
    transform: translateX(5px);
    outline: none;
}

/* CTA Button */
.ibao-footer-cta {
    text-align: center;
    margin-top: 10px;
}

.ibao-demo-button {
    display: inline-block;
    padding: 12px 24px; 
    background-color: #2689D4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 3.5vw, 18px); 
    line-height: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px; 
    box-sizing: border-box;
}

.ibao-demo-button:hover,
.ibao-demo-button:focus {
    background-color: #1e6ba8;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    outline: none;
}

/* Copyright Styles */
.ibao-footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(12px, 3vw, 16px); 
    line-height: 1.5em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

/* Tablet Grande */
@media (max-width: 1024px) {
    .ibao-footer-container {
        padding: 0 30px;
    }
    
    .ibao-footer-content {
        gap: 30px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .ibao-footer {
        padding: 30px 0 20px;
    }
    
    .ibao-logo {
        margin-bottom: 30px;
        text-align: center; 
    }
    
    .ibao-logo-image {
        max-width: min(300px, 80vw);
        max-height: 60px;
    }

    .ibao-footer-container {
        padding: 0 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .ibao-footer-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .ibao-footer-left,
    .ibao-footer-right {
        width: 100%;
        max-width: none;
    }
    
    .ibao-footer-nav-container {
        justify-content: flex-start; 
        gap: 25px;
    }
    
    .ibao-footer-nav-section {
        min-width: 120px;
    }
    
    .ibao-social-links {
        justify-content: flex-start; 
    }
}

@media (max-width: 480px) {
    .ibao-footer {
        padding: 25px 0 30px;
    }
    
    .ibao-footer-container {
        padding: 0 15px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .ibao-logo {
        margin-bottom: 25px;
        text-align: center; 
    }
    
    .ibao-logo-image {
        max-width: min(250px, 75vw);
        max-height: 50px;
    }
    
    .ibao-footer-content {
        gap: 20px;
    }
    
    .ibao-footer-nav-container {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start; 
    
    .ibao-footer-nav-section {
        margin-bottom: 10px;
        width: 100%;
        max-width: none; 
    }
    
    
    .ibao-footer-cta {
        margin-top: 15px;
        text-align: left; 
    }
    
    .ibao-demo-button {
        width: auto;
        max-width: none; 
    }
}

@media (max-width: 360px) {
    .ibao-footer-container {
        padding: 0 10px;
    }
    
    .ibao-logo-image {
        max-width: min(200px, 70vw);
        max-height: 40px;
    }
    
    .ibao-footer-nav-container {
        gap: 12px;
    }
    
    .ibao-social-links {
        gap: 8px;
    }
    
    .ibao-social-link {
        width: 36px;
        height: 36px;
    }
    
    .ibao-demo-button {
        padding: 10px 16px;
        min-height: 40px;
    }
}

@media (hover: none) {
    .ibao-nav-link:hover {
        transform: none;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .ibao-social-link:hover {
        transform: none;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .ibao-demo-button:hover {
        transform: none;
        box-shadow: none;
        background-color: #2689D4;
    }
}