:root {
    --primary-color: #004C6D;
    --secondary-color: #00968F;
    --accent-color: #007BFF;
    --light-bg: #f0fdfc;
    --text-dark: #1a1a1a;
    --text-secondary: #555;
    --border-color: #e8e8e8;
    --shadow-sm: 0 2px 8px rgba(0, 76, 109, 0.1);
    --shadow-md: 0 8px 16px rgba(0, 76, 109, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 76, 109, 0.2);
    --spacing-lg: 4rem;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.hero-coworking {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 950;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #004C6D 0%, #00968F 100%);
    color: white;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 76, 109, 0.3);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

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

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

.prob-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HERO SECTION ===== */
.prob-hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.prob-hero-video-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prob-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.prob-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideInUp 0.8s ease-out;
}

.prob-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: slideInDown 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.prob-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out 0.1s backwards;
}

.prob-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.prob-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2rem;
}

.prob-btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 76, 109, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.prob-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 76, 109, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.prob-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 76, 109, 0.4);
    color: var(--primary-color);
}

.prob-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.prob-btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
}

.prob-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

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

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

/* ===== SECCIONES PERSONALIZADAS PROB- ===== */
section {
    padding: 80px 20px;
}

.prob-incluye,
.prob-beneficios,
.prob-casos,
.prob-faq {
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-color);
}

.prob-modulos {
    background: #f9fafb;
    border-bottom: 1px solid var(--border-color);
}

.prob-caracteristicas {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f8f7 100%);
    border-bottom: 1px solid var(--border-color);
}

.prob-testimonios {
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.prob-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d57 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.prob-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 150, 143, 0.1), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 76, 109, 0.1), transparent 50%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

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

/* ===== TÍTULOS ===== */
.prob-section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    padding-bottom: 1.5rem;
}

.prob-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.prob-cta h2 {
    color: white;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.prob-cta h2::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5));
}

.prob-section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

/* ===== FEATURES GRID (QUÉ INCLUYE) ===== */
.prob-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 30px;
}

.prob-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.prob-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 150, 143, 0.1), transparent);
    transition: left 0.4s ease;
    pointer-events: none;
}

.prob-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 76, 109, 0.25);
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
    border-left-color: var(--primary-color);
}

.prob-feature-card:hover::before {
    left: 100%;
}

.prob-feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
    transition: transform 0.35s ease;
}

.prob-feature-card:hover .prob-feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.prob-feature-card h4 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.prob-feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== BENEFICIOS SECTION ===== */
.prob-beneficios-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out;
}

.prob-beneficios-row:nth-child(even) {
    direction: rtl;
}

.prob-beneficios-row:nth-child(even) > * {
    direction: ltr;
}

.prob-beneficio-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.3px;
}

.prob-beneficio-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    transition: all 0.35s ease;
}

.prob-beneficio-item:hover {
    transform: translateX(8px);
}

.prob-beneficio-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
    font-weight: 900;
}

.prob-beneficio-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.prob-beneficio-image {
    text-align: center;
}

.prob-beneficio-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.35s ease;
}

.prob-beneficio-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .prob-beneficios-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .prob-beneficios-row:nth-child(even) {
        direction: ltr;
    }
}

/* ===== MÓDULOS GRID ===== */
.prob-modulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.prob-modulo-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 5px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.prob-modulo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 150, 143, 0.05), rgba(0, 76, 109, 0.05));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.prob-modulo-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 76, 109, 0.3);
    border-top-color: var(--primary-color);
}

.prob-modulo-card:hover::before {
    opacity: 1;
}

.prob-modulo-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #005f5d 100%);
    color: white;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.35s ease;
}

.prob-modulo-card:hover .prob-modulo-number {
    transform: scale(1.15);
}

.prob-modulo-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.prob-modulo-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CASOS GRID ===== */
.prob-casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.prob-caso-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
}

.prob-caso-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 76, 109, 0.25);
    border-left-color: var(--primary-color);
}

.prob-caso-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: transform 0.35s ease;
}

.prob-caso-card:hover .prob-caso-icon {
    transform: scale(1.2);
}

.prob-caso-card h5 {
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 10px;
}

.prob-caso-card p {
    color: var(--text-secondary);
    margin: 0;
}

/* ===== CARACTERÍSTICAS LIST ===== */
.prob-caracteristicas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 40px;
}

.prob-caracteristica-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.35s ease;
    padding: 1rem;
    border-radius: 8px;
}

.prob-caracteristica-item:hover {
    background: rgba(0, 150, 143, 0.05);
    transform: translateX(8px);
}

.prob-caracteristica-check {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 3px;
}

.prob-caracteristica-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ===== TESTIMONIOS GRID ===== */
.prob-testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 40px;
}

.prob-testimonio-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--secondary-color);
    position: relative;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
}

.prob-testimonio-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 76, 109, 0.25);
    border-left-color: var(--primary-color);
}

.prob-testimonio-quote {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.3;
}

.prob-testimonio-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.prob-testimonio-autor {
    color: var(--primary-color);
    font-weight: 900;
}

.prob-testimonio-rol {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ===== FAQ ACCORDION ===== */
.prob-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.prob-faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    animation: fadeInUp 0.6s ease-out;
}

.prob-faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 76, 109, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.prob-faq-question {
    padding: 1.8rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color);
    border-left: 5px solid var(--secondary-color);
    transition: all 0.35s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.prob-faq-question:hover {
    color: var(--secondary-color);
    background: rgba(0, 150, 143, 0.05);
}

.prob-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.8rem;
    background: #fafafa;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
}

.prob-faq-item.prob-active .prob-faq-answer {
    max-height: 500px;
    padding: 1.8rem;
}

.prob-faq-icon {
    color: var(--secondary-color);
    font-size: 1.3rem;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.prob-faq-item.prob-active .prob-faq-icon {
    transform: rotate(45deg) scale(1.1);
}

/* ===== CTA SECTION ===== */
.prob-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.prob-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.prob-cta a {
    position: relative;
    z-index: 3;
}

/* ===== ANIMACIONES GLOBALES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .prob-section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .prob-section-title::after {
        width: 50px;
    }

    .prob-hero-title {
        font-size: 2rem;
    }

    .prob-hero-subtitle {
        font-size: 1rem;
    }

    .prob-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .prob-btn-primary,
    .prob-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .prob-features-grid,
    .prob-modulos-grid,
    .prob-casos-grid,
    .prob-testimonios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prob-caracteristicas-list {
        grid-template-columns: 1fr;
    }

    .prob-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .prob-hero-title {
        font-size: 1.75rem;
    }

    .prob-hero-subtitle {
        font-size: 0.95rem;
    }

    .prob-hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .prob-section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .prob-feature-card,
    .prob-caso-card,
    .prob-modulo-card {
        padding: 1.5rem;
    }
}
