* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    line-height: 1.6;
    padding-top: 80px;
    background-color: white;
}

/* Encabezado */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero {
    padding: 4rem 5%;
    background: linear-gradient(45deg, #2628DD 30%, #C419BE 100%);
    color: white;
    text-align: center;
    animation: fadeIn 1.5s;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #C419BE;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: white;
    color: #2628DD;
    transform: translateY(-3px);
}

.section-header h1 {
    padding: 3rem 4%;
    font-size: 1.7rem;
    text-align: center;
    color: #2628DD;
}

.section-header p {
    text-align: center;
    font-size: 1.1rem;
}

.logo {
    color: #FFFF;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    width: 200px;
    height: 60px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #C419BE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-weight: bold;
}

.nav-menu a:hover {
    color: #2628DD;
}

/* Nuevos estilos para visión y misión */
.philosophy-section {
    padding: 4rem 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f8f9fa;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.philosophy-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.philosophy-card:hover {
    transform: translateY(-10px);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.philosophy-card:hover .philosophy-icon {
    transform: rotate(15deg) scale(1.1);
}

.vision-card {
    border-top: 4px solid #2628DD;
}

.mision-card {
    border-top: 4px solid #C419BE;
}

.philosophy-card h3 {
    color: #2628DD;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.mision-card h3 {
    color: #C419BE;
}

.philosophy-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Footer */
footer {
    background: #000000;
    color: #FFFF;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: #FFFF;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #C419BE;
}

/* Footer */
footer {
    background: #000000;
    color: #FFFF;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.Footer-About {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Footer-Services {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.Footer-Blog {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}