/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    min-height: 100vh;
}

/* Navegación lateral */
.sidebar {
    width: 280px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-img {
    max-width: 180px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sidebar-menu {
    list-style: none;
    padding: 1rem 0;
}

.menu-item {
    margin: 0.25rem 0;
}

.menu-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0 25px 25px 0;
    margin-right: 1rem;
}

.menu-item a:hover {
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    color: white;
    transform: translateX(5px);
}

.menu-item.active a {
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    color: white;
}

.menu-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Contenido principal */
.main-content {
    margin-left: 280px;
    padding: 0;
    width: calc(100% - 280px);
}

/* Header */
.header {
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #f7fafc;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    width: 300px;
}

.search-container i {
    color: #a0aec0;
    margin-right: 0.5rem;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    color: #2d3748;
    font-size: 1rem;
}

.search-input::placeholder {
    color: #a0aec0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.notification-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #4a5568;
    cursor: pointer;
    transition: color 0.3s ease;
}

.notification-btn:hover {
    color: #004aad;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffc441;
    color: #004aad;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    font-weight: bold;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #2d3748;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #004aad;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #004aad;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 74, 173, 0.2);
}

/* Sección hero */
.hero-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.highlight {
    color: #ffc441;
    text-shadow: 0 0 30px rgba(255, 196, 65, 0.7);
}

.hero-subtitle {
    font-size: 3rem;
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffc441 0%, #ffb300 100%);
    color: #004aad;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 196, 65, 0.4);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 196, 65, 0.6);
    text-decoration: none;
}

.hero-right {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.software-badges {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 1rem;
}

.badge-item {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
}

.badge-item small {
    color: #718096;
    font-size: 0.875rem;
}

.badge-item.revit {
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
}

.badge-item.revit span,
.badge-item.revit small {
    color: white;
}

.badge-item.archicad {
    background: linear-gradient(135deg, #ffc441 0%, #ffb300 100%);
}

.badge-item.archicad span,
.badge-item.archicad small {
    color: #004aad;
}

.floating-elements {
    position: absolute;
    top: 30px;
    right: 30px;
}

.floating-card {
    background: white;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: #ffc441;
    font-size: 1.25rem;
}

.floating-card span {
    color: #2d3748;
    font-weight: 500;
}

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

/* Sección de cursos destacados */
.featured-courses {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-courses h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.course-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.course-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    height: fit-content;
}

.course-card:hover,
.course-card-link:hover .course-card {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.course-icon i {
    font-size: 1.5rem;
    color: white;
}

.course-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.course-card p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.duration {
    color: #4a5568;
    font-size: 0.875rem;
    background: #edf2f7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.price {
    color: #ffc441;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Sección de éxito y respaldo institucional */
.success-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.success-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.success-title {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
    font-weight: 700;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #004aad;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

.institutions-section {
    margin-top: 4rem;
}

.institutions-title {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.institutions-subtitle {
    color: #d63384;
    font-weight: 600;
}

.institutions-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.institutions-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.institution-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.institution-logo:hover {
    border-color: #004aad;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.2);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #004aad;
    text-align: center;
    margin-bottom: 0.25rem;
}

.institution-logo small {
    font-size: 0.75rem;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.institution-logo.ministerio {
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    color: white;
}

.institution-logo.ministerio .logo-text {
    color: white;
}

.institution-logo.ministerio small {
    color: #ffc441;
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    color: white;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 1rem;
    width: 100%;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-left: 10rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-right: 2rem;
    padding-left: 2rem;
}

.footer-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 320px;
}

.social-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.youtube:hover {
    background: #ff0000;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.tiktok:hover {
    background: #ff0050;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6rem;
    padding-left: 6rem;
}

.footer-column h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffc441;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-column a:hover {
    color: #ffc441;
}

.support-section,
.connect-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    padding: 1.5rem;
}

.support-section p,
.connect-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 180px;
    margin: 0;
}

.support-icon {
    background: rgba(255, 196, 65, 0.25);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffc441;
    border: 2px solid rgba(255, 196, 65, 0.3);
}

.connect-icon {
    position: relative;
    width: 90px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots-pattern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-items: center;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.dot.main-dot {
    background: #ffc441;
    width: 18px;
    height: 18px;
    box-shadow: 0 0 25px rgba(255, 196, 65, 0.6);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
    margin-left: 10rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-left: 10rem;
    font-size: 0.9rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffc441;
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .sidebar {
        width: 70px;
    }
    
    .sidebar-menu span {
        display: none;
    }
    
    .logo-img {
        max-width: 40px;
        max-height: 40px;
    }
    
    .main-content {
        margin-left: 70px;
        width: calc(100% - 70px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .search-container {
        width: 200px;
    }
    
    .header-actions span {
        display: none;
    }
    
    /* Footer responsive */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        gap: 1rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .success-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .institutions-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    /* Footer para tablets */
    .footer-content {
        padding: 2.5rem 2rem 1rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.mobile-open .logo-img {
        max-width: 160px;
        max-height: 50px;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .featured-courses {
        padding: 2rem 1rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .success-section {
        padding: 2rem 1rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .institutions-title {
        font-size: 1.8rem;
    }
    
    .institutions-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .institution-logo {
        padding: 1rem;
        min-height: 80px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    /* Footer móvil */
    .footer-content {
        padding: 2rem 1.5rem 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Estilos para la página de términos y condiciones */
.terms-section {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
}

.terms-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.terms-title {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-subtitle {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.terms-content {
    line-height: 1.8;
}

.term-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.term-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.term-item h2 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
    border-left: 4px solid #004aad;
    padding-left: 1rem;
}

.term-item p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.term-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.term-item li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.term-item li:last-child {
    margin-bottom: 0;
}

/* Responsive para términos y condiciones */
@media (max-width: 768px) {
    .terms-section {
        padding: 1rem;
    }
    
    .terms-container {
        padding: 2rem;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .term-item h2 {
        font-size: 1.3rem;
    }
    
    .term-item p,
    .term-item li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .terms-container {
        padding: 1.5rem;
    }
    
    .terms-title {
        font-size: 1.75rem;
    }
    
    .term-item h2 {
        font-size: 1.2rem;
    }
}

/* Estilos para la página de sugerencias */
.suggestions-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
}

.suggestions-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.suggestions-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.suggestions-title {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.suggestions-subtitle {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.suggestions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Formulario de sugerencias */
.suggestions-form-section h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 600;
}

.suggestions-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #004aad;
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Sistema de calificación con estrellas */
.rating-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars i {
    font-size: 1.5rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.rating-stars i:hover,
.rating-stars i.hover {
    color: #ffc441;
}

.rating-stars i.active {
    color: #ffc441;
}

/* Checkbox personalizado */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    transform: scale(1.2);
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #4a5568;
}

/* Botón de envío */
.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.4);
}

/* Información adicional */
.suggestions-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-card p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Sección de testimonios */
.testimonials-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #004aad;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #ffc441;
    font-size: 1rem;
}

.testimonial-card p {
    color: #4a5568;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: #2d3748;
    font-weight: 600;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

/* Estilos para enlace de support-section */
.support-section {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.support-section:hover {
    transform: translateY(-2px);
    color: #004aad;
}

.support-section:hover .support-icon {
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
}

/* Responsive para sugerencias */
@media (max-width: 768px) {
    .suggestions-section {
        padding: 1rem;
    }
    
    .suggestions-container {
        padding: 2rem;
    }
    
    .suggestions-title {
        font-size: 2rem;
    }
    
    .suggestions-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .rating-stars i {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .suggestions-container {
        padding: 1.5rem;
    }
    
    .suggestions-title {
        font-size: 1.75rem;
    }
    
    .suggestions-form-section h2 {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Estilos para página de políticas de privacidad */
.page-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-header h1 i {
    color: #004aad;
    font-size: 2rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #718096;
    margin-bottom: 0;
    font-weight: 400;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.policy-section h2 {
    font-size: 1.5rem;
    color: #004aad;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffc441;
}

.policy-section p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.policy-section li:last-child {
    margin-bottom: 0;
}

.policy-section strong {
    color: #2d3748;
    font-weight: 600;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-size: 1rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.policy-footer {
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.policy-footer p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.policy-footer p:last-child {
    margin-bottom: 0;
}

.policy-footer strong {
    color: #ffc441;
    font-weight: 600;
}

/* Responsividad para políticas de privacidad */
@media (max-width: 768px) {
    .page-content {
        padding: 2rem 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.125rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.25rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .policy-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-header h1 i {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .policy-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.125rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 0.875rem;
    }
    
    .contact-info p {
        font-size: 0.875rem;
    }
    
    .policy-footer {
        padding: 1rem;
    }
    
    .policy-footer p {
        font-size: 0.875rem;
    }
}

/* Estilos para página "Sobre nosotros" */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    background-image: url('static/imagen1.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.8) 0%, rgba(0, 102, 230, 0.8) 100%);
    z-index: 1;
}

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

.about-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: #004aad;
    margin-bottom: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-description:last-child {
    margin-bottom: 0;
}

.values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.values-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

.stats-section {
    padding: 3rem 0;
    text-align: center;
}

.stats-title {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #004aad;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #4a5568;
    font-weight: 500;
}

.inspiration-section {
    background: linear-gradient(135deg, #004aad 0%, #0066e6 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.inspiration-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

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

.inspiration-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    color: #ffc441;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.inspiration-quote {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.inspiration-author {
    font-size: 1.25rem;
    color: #ffc441;
    font-weight: 600;
    font-style: italic;
}

/* Responsividad para "Sobre nosotros" */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding: 2rem 1rem;
    }
    
    .about-container {
        gap: 2rem;
    }
    
    .about-intro h2 {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .values-section {
        padding: 2rem 1rem;
    }
    
    .values-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .value-card h3 {
        font-size: 1.25rem;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .inspiration-section {
        padding: 2rem 1rem;
    }
    
    .inspiration-quote {
        font-size: 2rem;
    }
    
    .inspiration-author {
        font-size: 1.125rem;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 40vh;
        min-height: 250px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-intro h2 {
        font-size: 1.75rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
    
    .values-title {
        font-size: 1.75rem;
    }
    
    .value-card {
        padding: 1rem;
    }
    
    .value-card h3 {
        font-size: 1.125rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
    
    .stats-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .inspiration-section {
        padding: 1.5rem 1rem;
    }
    
    .inspiration-quote {
        font-size: 1.5rem;
    }
    
    .inspiration-author {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 1.5rem;
    }
} 