.site-content{

position:relative;

background:linear-gradient(
180deg,
rgba(25,22,40,0.85),
rgba(30,26,50,0.95)
);

backdrop-filter:blur(20px);

border-top-left-radius:40px;
border-top-right-radius:40px;

margin-top:-120px;

padding-top:160px;

z-index:2;

}

.servicios,
#nosotros,
#contacto{

max-width:1400px;

margin:auto;

padding:120px 60px;

}

/* NOSOTROS */

.nosotros{

padding:160px 80px;
display:flex;
justify-content:center;

}

/* ============================= */
/* NOSOTROS -  */
/* ============================= */

.nosotros {
    padding: 120px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.about-container {
    max-width: 1000px;
    width: 100%;
    padding: 60px;
    border-radius: 30px;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.about-container:hover {
    border-color: rgba(166, 107, 211, 0.4);
    box-shadow: 0 25px 50px rgba(166, 107, 211, 0.2);
    transform: translateY(-5px);
}

.about-container h2 {
    font-size: 42px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff, #a66bd3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.about-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #a66bd3, #5267D9);
    border-radius: 3px;
}

.about-container p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* ============================= */
/* TARJETAS DE INFORMACIÓN */
/* ============================= */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 20px 0;
}

.about-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #a66bd3, #5267D9, #3a2097);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(166, 107, 211, 0.3);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.about-card:hover::before {
    transform: translateX(0);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #a66bd3;
}

.about-card-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    filter: drop-shadow(0 0 15px rgba(166, 107, 211, 0.5));
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.about-card li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.about-card li::before {
    content: '→';
    color: #a66bd3;
    font-weight: bold;
}

/* ============================= */
/* BOTÓN CORTINA PARA MISIÓN/VISIÓN */
/* ============================= */

.mv-container {
    width: 100%;
    max-width: 800px;
    margin: 30px 0;
}

.mv-button {
    width: 100%;
    background: linear-gradient(135deg, rgba(166, 107, 211, 0.2), rgba(82, 103, 217, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(166, 107, 211, 0.4);
    border-radius: 50px;
    padding: 18px 30px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.mv-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(166, 107, 211, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    border-radius: 50%;
}

.mv-button:hover {
    background: linear-gradient(135deg, rgba(166, 107, 211, 0.4), rgba(82, 103, 217, 0.4));
    border-color: rgba(166, 107, 211, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(166, 107, 211, 0.4);
}

.mv-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.mv-button.active {
    border-radius: 50px 50px 0 0;
    border-bottom: none;
}

.mv-arrow {
    width: 30px;
    height: 30px;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mv-button.active .mv-arrow {
    transform: rotate(180deg);
}

/* Contenido desplegable tipo cortina */
.mv-content {
    background: rgba(25, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(166, 107, 211, 0.3);
    border-top: none;
    border-radius: 0 0 30px 30px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-20px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.mv-content.active {
    padding: 40px;
    max-height: 800px;
    opacity: 1;
    transform: translateY(0);
    border-bottom-width: 1px;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-item {
    text-align: left;
}

.mv-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #a66bd3;
    position: relative;
    display: inline-block;
}

.mv-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #a66bd3, #5267D9);
    border-radius: 3px;
}

.mv-item p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
}

/* ============================= */
/* VALORES DE LA EMPRESA */
/* ============================= */

.valores-container {
    width: 100%;
    max-width: 1200px;
    margin-top: 40px;
}

.valores-container h3 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.valores-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #a66bd3, #5267D9, transparent);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.valor-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.valor-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #a66bd3, #5267D9, #3a2097);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.valor-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(166, 107, 211, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.valor-card:hover::after {
    transform: scaleX(1);
}

.valor-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: #a66bd3;
}

.valor-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.valor-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.valor-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================= */
/* ANIMACIONES */
/* ============================= */

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

.about-card, .valor-card {
    animation: floatIn 0.8s ease forwards;
    opacity: 0;
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.3s; }
.about-card:nth-child(3) { animation-delay: 0.5s; }

.valor-card:nth-child(1) { animation-delay: 0.2s; }
.valor-card:nth-child(2) { animation-delay: 0.4s; }
.valor-card:nth-child(3) { animation-delay: 0.6s; }
.valor-card:nth-child(4) { animation-delay: 0.8s; }

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-container {
        padding: 30px;
    }
}



/* CONTACTO FINAL */

.contacto{

padding:180px 40px;

display:flex;
justify-content:center;

}


.contact-panel{

text-align:center;

max-width:600px;

padding:60px;

border-radius:22px;

background:rgba(255,255,255,0.08);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,0.15);

}


.contact-panel h2{

font-size:34px;
margin-bottom:20px;

}

.contact-panel p{

margin-bottom:40px;
opacity:0.9;

}


/* BOTON CONTACTO */

.contact-button{

display:inline-block;

padding:16px 40px;

font-size:18px;

border-radius:40px;

background:linear-gradient(
135deg,
#a66bd3,
#5267D9,
#3a2097
);

color:white;

text-decoration:none;

transition:all .3s ease;

box-shadow:0 10px 30px rgba(80,60,200,.4);

}


.contact-button:hover{

transform:translateY(-4px) scale(1.05);

box-shadow:0 15px 40px rgba(80,60,200,.6);

}

