/* ==================== */
/* ESTILOS DEL SLIDER PROFESIONAL */
/* ==================== */

.main-slider {
    position: relative;
    height: 75vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    margin-top: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.8);
    max-width: 90%;
    background: rgba(0,0,0,0.3);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 1s ease;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 1.2rem 1.8rem;
    cursor: pointer;
    font-size: 1.8rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.slider-btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.5);
}

.prev {
    left: 2rem;
}

.next {
    right: 2rem;
}

/* ==================== */
/* ESTILOS INTRO PROFESIONAL */
/* ==================== */

.intro {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    overflow: hidden;
    text-align: center;
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.1);
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255,215,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(44,62,80,0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

.intro-decoration {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-50%);
    z-index: 0;
}

.deco-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2c3e50, transparent);
    position: relative;
}

.deco-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 1px;
    background: #ffd700;
    box-shadow: 0 0 10px #ffd700;
}

.deco-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2c3e50, #34495e);
    box-shadow: 0 0 20px rgba(44,62,80,0.3), inset 0 2px 4px rgba(255,255,255,0.2);
    position: relative;
}

.deco-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffd700;
    box-shadow: 0 0 8px #ffd700;
}

.intro-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.animated-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.animated-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.3);
}

.animated-subtitle {
    font-size: 1.4rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.3s forwards;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 1px;
}

.signature {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.signature span {
    font-style: italic;
    color: #4a5568;
}

.signature img {
    max-width: 150px;
    height: auto;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .main-slider {
        height: 65vh;
        margin-top: 60px;
    }
    
    .slide-content {
        padding: 2rem;
    }
    
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-content p {
        font-size: 1.3rem;
    }
    
    .slider-btn {
        padding: 1rem 1.4rem;
        font-size: 1.4rem;
    }
    
    .intro {
        padding: 6rem 1rem;
    }
    
    .animated-title {
        font-size: 3rem;
    }
    
    .deco-line {
        width: 70px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slider-btn {
        display: none;
    }
    
    .intro-decoration {
        display: none;
    }
    
    .animated-title {
        font-size: 2.5rem;
    }
}

/* ==================== */
/* ELEMENTOS ADICIONALES PROFESIONALES */
/* ==================== */

/* Indicadores del slider */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.indicator.active,
.indicator:hover {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

/* Efecto parallax para el slider */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    z-index: 0;
}

.slide-content {
    z-index: 1;
}

/* Animación de carga */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Efectos de scroll suave */
html {
    scroll-behavior: smooth;
}

/* Mejoras en la tipografía */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ==================== */
/* BOTONES CTA PROFESIONALES */
/* ==================== */

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c3e50;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
    border-color: white;
}

/* ==================== */
/* ESTADÍSTICAS PROFESIONALES AVANZADAS */
/* ==================== */

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    perspective: 1000px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
    background: rgba(255,255,255,0.9);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffc107);
    border-radius: 20px 20px 0 0;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.stat-item:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.95);
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(44,62,80,0.3);
    position: relative;
    z-index: 1;
    animation: countUp 2s ease-out 1.5s forwards;
    counter-reset: number;
}

.stat-number.counting {
    animation: pulse 0.1s ease-in-out;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.stat-description {
    font-size: 0.8rem;
    color: #7a8a9a;
    line-height: 1.4;
    font-style: italic;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

/* Iconos para cada estadística */
.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(255,215,0,0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-icon i {
    font-size: 1.2rem;
    color: #2c3e50;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(255,215,0,0.5);
}

.stat-item:hover .stat-icon i {
    transform: scale(1.1);
}

/* Animaciones específicas */
@keyframes countUp {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Efecto de ondas en hover */
.stat-item:hover {
    animation: wave 0.6s ease-in-out;
}

@keyframes wave {
    0%, 100% { transform: translateY(-15px) rotateX(5deg); }
    25% { transform: translateY(-18px) rotateX(7deg); }
    75% { transform: translateY(-12px) rotateX(3deg); }
}

/* Responsive mejorado */
@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .stat-item {
        padding: 2.5rem 1.5rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
}

.signature span {
    font-style: italic;
    color: #4a5568;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #2c3e50, #34495e, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.signature span::before,
.signature span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    transform: translateY(-50%);
}

.signature span::before {
    left: -60px;
}

.signature span::after {
    right: -60px;
}

/* ==================== */
/* SECCIÓN DE SERVICIOS DESTACADOS */
/* ==================== */

.featured-services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.featured-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 3rem;
    color: white;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.15);
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: #2c3e50;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: white;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* ==================== */
/* RESPONSIVE DESIGN COMPLETO */
/* ==================== */

@media (max-width: 768px) {
    .main-slider {
        height: 60vh;
        min-height: 400px;
        margin-top: 60px;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .intro {
        padding: 4rem 1rem;
    }
    
    .animated-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .animated-subtitle {
        font-size: 1.2rem;
    }
    
    .signature span {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .signature span::before,
    .signature span::after {
        width: 25px;
        left: -40px;
        right: -40px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .featured-services {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-slider {
        height: 50vh;
        min-height: 350px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 180px;
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .slider-btn {
        display: none;
    }
    
    .intro {
        padding: 3rem 1rem;
    }
    
    .intro-decoration {
        display: none;
    }
    
    .animated-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .animated-subtitle {
        font-size: 1.1rem;
    }
    
    .signature span::before,
    .signature span::after {
        display: none;
    }
    
    .stats-row {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
}

/* ==================== */
/* SECCIÓN QUIÉNES SOMOS */
/* ==================== */
.about-us-section {
    padding: 8rem 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(93,173,226,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(125,206,160,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Introducción */
.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-intro .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.about-intro .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.about-intro .section-subtitle {
    font-size: 1.2rem;
    color: #5d6d7e;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.section-badge i {
    font-size: 1.1rem;
}

/* Contenido Principal */
.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: start;
}

.about-text-side {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.company-story h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.story-text strong {
    color: #2980b9;
    font-weight: 700;
}

/* Áreas de Especialización */
.expertise-areas h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-left: 4px solid #3498db;
    border: 1px solid #e8ecef;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-left-color: #2980b9;
}

.expertise-item i {
    color: #3498db;
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.expertise-item span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

/* Lado Visual */
.about-visual-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra-intensa);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(93,173,226,0.8), rgba(125,206,160,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-image-container:hover .image-overlay {
    opacity: 1;
}

.team-image-container:hover .team-image {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Métricas de la Empresa */
.company-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid #e8ecef;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.metric-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
}

.metric-label {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* Valores de la Empresa */
.company-values {
    margin-bottom: 4rem;
}

.company-values h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e8ecef;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.value-card h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #5d6d7e;
    line-height: 1.7;
    font-size: 1rem;
}

/* Call to Action */
.about-cta {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cta-buttons .btn-primary {
    background: #3498db;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.cta-buttons .btn-primary:hover {
    background: #2ecc71;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* ==================== */
/* RESPONSIVE - QUIÉNES SOMOS */
/* ==================== */
@media (max-width: 1024px) {
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 6rem 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .company-story h3 {
        font-size: 1.8rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-intro {
        margin-bottom: 3rem;
    }
    
    .section-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .about-cta {
        padding: 3rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .company-metrics {
        gap: 1rem;
    }
    
    .metric-card {
        padding: 1rem;
    }
}