/* CSS para la página "Nosotros" de CPSCOM */
        :root {
            --primary: #182F5C;
            --secondary: #182F5C;
            --accent: #89c2d928;
            --light: #f8f9fa;
            --dark: #012a4a;
            --text: #333;
            --white: #ffffff;
            --neon: #90e0ef;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: var(--text);
            background-color: var(--light);
            line-height: 1.8;
            overflow-x: hidden;
            position: relative;
        }
        
        /* Animación de fondo geométrico */

        
        /* Header flotante */
        header {
            background: rgba(255, 255, 255, 0.92);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(42, 111, 151, 0.1);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            position: relative;
        }
        
        .logo h1::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }
        
        .logo h1:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 35px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            font-size: 17px;
            transition: all 0.4s;
            position: relative;
            padding: 5px 0;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            transition: width 0.4s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* Hero Section con efecto de partículas */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(163, 163, 163, 0.9), rgba(168, 168, 168, 0.8)), 
                        url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1953&q=80') no-repeat center center/cover;
            z-index: -1;
        }
        
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.3;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            background: var(--neon);
            opacity: 0.7;
            animation: float 15s infinite linear;
            box-shadow: 0 0 10px var(--neon);
        }
        
        .hero-content {
            max-width: 900px;
            padding: 0 20px;
            z-index: 2;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeUp 1.2s forwards 0.5s;
        }
        
        .hero h2 {
            font-family: 'Playfair Display', serif;
            font-size: 4.2rem;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.15;
            color: var(--white);
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            color: var(--white);
        }
        
        .btn {
            display: inline-block;
            background: transparent;
            color: var(--white);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.4s;
            border: 2px solid var(--white);
            position: relative;
            overflow: hidden;
            z-index: 1;
            letter-spacing: 1px;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: -1;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            color: var(--primary);
        }
        
        .btn:hover::before {
            opacity: 1;
        }
        
        /* Secciones con diseño de ondas */
        .section {
            padding: 120px 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .wave-top {
            position: absolute;
            top: -1px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        
        .wave-top svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 100px;
        }
        
        .wave-top .shape-fill {
            fill: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }
        
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 100px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            transform: rotate(-3deg);
            transition: transform 0.4s;
        }
        
        .about-image:hover {
            transform: rotate(0deg);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-content h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
        }
        
        .about-content p {
            color: #555;
            font-size: 1.15rem;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        /* Tarjetas de Misión y Visión con efecto flip */
        .mission-vision {
            display: flex;
            gap: 40px;
            margin-bottom: 100px;
        }
        
        .flip-card {
            flex: 1;
            height: 400px;
            perspective: 1000px;
        }
        
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }
        
        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }
        
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .flip-card-front {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
        }
        
        .flip-card-back {
            background-color: var(--white);
            color: var(--text);
            transform: rotateY(180deg);
        }
        
        .flip-card-front i {
            font-size: 60px;
            margin-bottom: 30px;
            color: var(--white);
        }
        
        .flip-card-front h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }
        
        .flip-card-back h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
        }
        
        .flip-card-back p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        /* Fortalezas con diseño de burbujas */
        .strengths {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 80px;
        }
        
        .strength-bubble {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px;
            text-align: center;
            background: var(--white);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        
        .strength-bubble::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent), var(--secondary));
            opacity: 0;
            transition: opacity 0.4s;
            z-index: -1;
        }
        
        .strength-bubble:hover {
            transform: translateY(-15px) scale(1.05);
            color: var(--white);
        }
        
        .strength-bubble:hover::before {
            opacity: 1;
        }
        
        .strength-bubble i {
            font-size: 50px;
            margin-bottom: 20px;
            transition: all 0.4s;
        }
        
        .strength-bubble:hover i {
            transform: scale(1.2);
            color: var(--white);
        }
        
        .strength-bubble h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        /* Sección inspiradora */
        .inspiration {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 150px 0;
            text-align: center;
            color: var(--white);
            position: relative;
            margin-top: 100px;
        }
        
        .inspiration-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .inspiration h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }
        
        .inspiration h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: var(--white);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .inspiration p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            font-style: italic;
            line-height: 1.8;
        }
        
        .signature {
            font-size: 1.8rem;
            font-weight: 600;
            font-family: 'Playfair Display', serif;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .signature::before, .signature::after {
            content: '';
            flex: 1;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 20px;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 100px 0 40px;
            position: relative;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            position: relative;
            z-index: 2;
        }
        
        .footer-column h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            color: var(--neon);
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--neon);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .footer-column p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            opacity: 0.9;
        }
        
        .contact-info {
            margin-top: 25px;
        }
        
        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .contact-info i {
            margin-right: 15px;
            color: var(--neon);
            font-size: 1.3rem;
            min-width: 25px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            background: rgba(144, 224, 239, 0.1);
            border-radius: 50%;
            color: var(--white);
            font-size: 1.3rem;
            transition: all 0.4s;
            border: 1px solid rgba(144, 224, 239, 0.3);
        }
        
        .social-links a:hover {
            background: var(--neon);
            transform: translateY(-5px);
            color: var(--dark);
        }
        
        .copyright {
            text-align: center;
            padding-top: 60px;
            margin-top: 60px;
            border-top: 1px solid rgba(144, 224, 239, 0.1);
            font-size: 1.1rem;
            opacity: 0.7;
        }
        
        /* Animaciones */
        @keyframes fadeUp {
            from {
                transform: translateY(40px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(20px, 30px) rotate(90deg);
            }
            50% {
                transform: translate(0, 60px) rotate(180deg);
            }
            75% {
                transform: translate(-20px, 30px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .about-image {
                max-width: 500px;
            }
            
            .mission-vision {
                flex-direction: column;
            }
            
            .flip-card {
                height: 350px;
            }
            
            .hero h2 {
                font-size: 3.5rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .hero h2 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .section {
                padding: 90px 20px;
            }
            
            .section-title h2 {
                font-size: 2.4rem;
            }
            
            .inspiration h2 {
                font-size: 2.5rem;
            }
            
            .inspiration p {
                font-size: 1.2rem;
            }
        }
   /* Fortalezas con mejor legibilidad y efecto glow */
.strengths {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 80px;
}

.strength-bubble {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 28px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        inset 0 0 0 2px rgba(24, 47, 92, 0.05);
    transition: all 0.45s ease;
    position: relative;
    overflow: hidden;
}

/* Efecto brillo */
.strength-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top,
        rgba(144, 224, 239, 0.35),
        transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.strength-bubble:hover::before {
    opacity: 1;
}

.strength-bubble:hover {
    transform: translateY(-15px) scale(1.06);
    box-shadow:
        0 30px 60px rgba(24, 47, 92, 0.25),
        0 0 25px rgba(144, 224, 239, 0.6);
}

/* ÍCONO */
.strength-bubble i {
    font-size: 46px;
    margin-bottom: 14px;
    color: var(--primary);
    z-index: 1;
    transition: all 0.4s ease;
}

.strength-bubble:hover i {
    color: var(--secondary);
    transform: scale(1.25) rotate(-4deg);
    text-shadow: 0 0 15px rgba(144, 224, 239, 0.9);
}

/* TÍTULO */
.strength-bubble h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
    line-height: 1.25;
    z-index: 1;
}

/* TEXTO */
.strength-bubble p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    z-index: 1;
}

/* Hover mejora contraste */
.strength-bubble:hover h4,
.strength-bubble:hover p {
    color: #012a4a;
}
