/* ========================================
   KOPERNICO - Identidad Corporativa
   ======================================== */

/* --- Custom Fonts --- */
@font-face {
    font-family: 'Warzone';
    src: url('../fonts/warzone/Warzone.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GarnetCapitals';
    src: url('../fonts/garnet/GarnetCapitals-Regular.woff2') format('woff2'),
         url('../fonts/garnet/GarnetCapitals-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GarnetCapitals';
    src: url('../fonts/garnet/GarnetCapitals-Bold.woff2') format('woff2'),
         url('../fonts/garnet/GarnetCapitals-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GarnetCapitals';
    src: url('../fonts/garnet/GarnetCapitals-Light.woff2') format('woff2'),
         url('../fonts/garnet/GarnetCapitals-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GarnetCapitals';
    src: url('../fonts/garnet/GarnetCapitals-Thin.woff2') format('woff2'),
         url('../fonts/garnet/GarnetCapitals-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GarnetCapitals';
    src: url('../fonts/garnet/GarnetCapitals-Black.woff2') format('woff2'),
         url('../fonts/garnet/GarnetCapitals-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* --- CSS Variables --- */
:root {
    /* Colores principales */
    --kop-primary: #485b6b;
    --kop-turquoise: #00b0bc;
    /* Colores secundarios */
    --kop-blue: #0067b2;
    --kop-black: #000000;
    --kop-orange: #F18950;
    --kop-gold: #f8b300;
    /* Neutros */
    --kop-white: #ffffff;
    --kop-light-gray: #f5f5f5;
    --kop-gray: #888888;
    /* Tipografías */
    --kop-font-heading: 'Raleway', sans-serif;
    --kop-font-body: 'Raleway', sans-serif;
    --kop-font-logo: 'Warzone', sans-serif;
    --kop-font-accent: 'GarnetCapitals', sans-serif;
}

/* --- Global Overrides --- */
body {
    font-family: var(--kop-font-body);
    color: var(--kop-primary);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--kop-font-heading);
    color: var(--kop-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }

a {
    color: var(--kop-turquoise);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--kop-blue);
}

/* --- Utility Classes --- */
.kop-text-turquoise { color: var(--kop-turquoise); }
.kop-text-primary { color: var(--kop-primary); }
.kop-text-orange { color: var(--kop-orange); }
.kop-text-blue { color: var(--kop-blue); }
.kop-text-white { color: var(--kop-white); }

.kop-bg-primary { background-color: var(--kop-primary); }
.kop-bg-turquoise { background-color: var(--kop-turquoise); }
.kop-bg-light { background-color: var(--kop-light-gray); }
.kop-bg-white { background-color: var(--kop-white); }

/* --- Buttons --- */
.kop-btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--kop-font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.kop-btn-primary {
    background-color: var(--kop-turquoise);
    color: var(--kop-white);
    border: 2px solid var(--kop-turquoise);
}

.kop-btn-primary:hover {
    background-color: #009aa5;
    border-color: #009aa5;
    color: var(--kop-white);
}

.kop-btn-outline {
    background-color: transparent;
    color: var(--kop-turquoise);
    border: 2px solid var(--kop-turquoise);
}

.kop-btn-outline:hover {
    background-color: var(--kop-turquoise);
    color: var(--kop-white);
}

.kop-btn-white {
    background-color: var(--kop-white);
    color: var(--kop-primary);
    border: 2px solid var(--kop-white);
}

.kop-btn-white:hover {
    background-color: transparent;
    color: var(--kop-white);
}

/* --- Section Spacing --- */
.kop-section {
    padding: 80px 0;
}

.kop-section-sm {
    padding: 50px 0;
}

.kop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- Section Titles --- */
.kop-section-title {
    font-family: var(--kop-font-heading);
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--kop-primary);
    margin-bottom: 15px;
}

.kop-section-title span {
    color: var(--kop-turquoise);
}

.kop-section-subtitle {
    font-family: var(--kop-font-body);
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--kop-gray);
    margin-bottom: 40px;
}

/* ========================================
   HEADER
   ======================================== */
.kop-header {
    background: var(--kop-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.kop-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.kop-logo img {
    height: 45px;
    width: auto;
}

.kop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.kop-nav a {
    font-family: var(--kop-font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--kop-primary);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.kop-nav a:hover,
.kop-nav a.active {
    color: var(--kop-turquoise);
}

.kop-nav a.kop-nav-cta {
    background: var(--kop-turquoise);
    color: var(--kop-white);
}

.kop-nav a.kop-nav-cta:hover {
    background: #009aa5;
}

/* Mobile menu toggle */
.kop-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.kop-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--kop-primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO
   ======================================== */
.kop-hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.kop-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.kop-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(72, 91, 107, 0.7) 0%,
        rgba(0, 176, 188, 0.4) 50%,
        rgba(241, 137, 80, 0.3) 100%
    );
}

.kop-hero-content {
    position: relative;
    z-index: 2;
    color: var(--kop-white);
    padding: 0 30px;
}

.kop-hero-slogan {
    font-family: var(--kop-font-heading);
    font-weight: 800;
    font-size: 3.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.kop-hero-slogan .kop-dot {
    color: var(--kop-turquoise);
    margin: 0 15px;
    font-size: 1.2em;
}

.kop-hero-sub {
    font-weight: 300;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* ========================================
   SERVICIOS GRID
   ======================================== */
.kop-servicios {
    background: var(--kop-white);
    text-align: center;
}

.kop-servicios-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.kop-servicio-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.kop-servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.kop-servicio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kop-servicio-icon img {
    max-width: 100%;
    max-height: 100%;
}

.kop-servicio-card h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--kop-primary);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.kop-servicio-card p {
    font-size: 0.85rem;
    color: var(--kop-gray);
    line-height: 1.5;
}

/* ========================================
   NOSOTROS (Home section)
   ======================================== */
.kop-nosotros-home {
    background: var(--kop-light-gray);
}

.kop-nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kop-nosotros-img {
    position: relative;
    display: flex;
    justify-content: center;
}

.kop-nosotros-img img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
}

.kop-nosotros-text h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.kop-nosotros-text p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Counters */
.kop-counters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.kop-counter {
    text-align: center;
    padding: 15px;
}

.kop-counter-number {
    font-family: var(--kop-font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--kop-turquoise);
    line-height: 1;
}

.kop-counter-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--kop-gray);
    margin-top: 5px;
}

/* ========================================
   SERVICIOS ADICIONALES
   ======================================== */
.kop-adicionales {
    background: linear-gradient(135deg, var(--kop-primary) 0%, #374a58 100%);
    color: var(--kop-white);
}

.kop-adicionales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kop-adicionales-img {
    display: flex;
    justify-content: center;
}

.kop-adicionales-img img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
}

.kop-adicionales h2 {
    color: var(--kop-white);
    margin-bottom: 10px;
}

.kop-adicionales-subtitle {
    font-weight: 300;
    font-size: 0.95rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.kop-adicionales-list {
    list-style: none;
    padding: 0;
}

.kop-adicionales-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kop-adicionales-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--kop-turquoise);
    border-radius: 50%;
    flex-shrink: 0;
}

.kop-adicionales-list li a {
    color: var(--kop-white);
    text-decoration: none;
}

.kop-adicionales-list li a:hover {
    color: var(--kop-turquoise);
}

/* ========================================
   CTA BANNER
   ======================================== */
.kop-cta {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.kop-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.kop-cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(72, 91, 107, 0.85);
}

.kop-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}

.kop-cta-text {
    font-family: var(--kop-font-heading);
    font-weight: 300;
    font-size: 1.4rem;
    color: var(--kop-white);
    line-height: 1.6;
    margin-bottom: 30px;
}

.kop-cta-text strong {
    font-weight: 700;
}

/* ========================================
   NOTICIAS
   ======================================== */
.kop-noticias {
    background: var(--kop-white);
    text-align: center;
}

.kop-noticias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.kop-noticia-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: var(--kop-white);
}

.kop-noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.kop-noticia-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.kop-noticia-body {
    padding: 25px;
}

.kop-noticia-date {
    font-size: 0.75rem;
    color: var(--kop-turquoise);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.kop-noticia-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.kop-noticia-card h3 a {
    color: var(--kop-primary);
    text-decoration: none;
}

.kop-noticia-card h3 a:hover {
    color: var(--kop-turquoise);
}

.kop-noticia-excerpt {
    font-size: 0.85rem;
    color: var(--kop-gray);
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.kop-footer {
    background: #2a3a47;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.kop-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.kop-footer h4 {
    color: var(--kop-white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.kop-footer p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.kop-footer-links {
    list-style: none;
    padding: 0;
}

.kop-footer-links li {
    margin-bottom: 8px;
}

.kop-footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.kop-footer-links a:hover {
    color: var(--kop-turquoise);
}

.kop-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.kop-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.kop-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--kop-white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.kop-footer-social a:hover {
    background: var(--kop-turquoise);
}

.kop-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.75rem;
}

.kop-footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.kop-footer-bottom a:hover {
    color: var(--kop-turquoise);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .kop-servicios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .kop-nosotros-grid,
    .kop-adicionales-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .kop-nosotros-img img {
        width: 300px;
        height: 300px;
    }

    .kop-adicionales-img img {
        width: 280px;
        height: 280px;
    }

    .kop-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kop-hero-slogan {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Header mobile */
    .kop-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--kop-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .kop-nav.active {
        display: flex;
    }

    .kop-menu-toggle {
        display: block;
    }

    /* Hero */
    .kop-hero {
        height: 70vh;
        min-height: 400px;
    }

    .kop-hero-slogan {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
    }

    .kop-hero-slogan .kop-dot {
        margin: 0 8px;
    }

    /* Servicios */
    .kop-servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Noticias */
    .kop-noticias-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .kop-footer-grid {
        grid-template-columns: 1fr;
    }

    /* Section spacing */
    .kop-section {
        padding: 50px 0;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .kop-section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .kop-servicios-grid {
        grid-template-columns: 1fr;
    }

    .kop-counters {
        grid-template-columns: 1fr 1fr;
    }

    .kop-hero-slogan {
        font-size: 1.4rem;
    }
}

/* ========================================
   SCROLL ANIMATIONS (CSS-only with JS trigger)
   ======================================== */
.kop-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.kop-animate.kop-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.kop-page-hero {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.kop-page-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.kop-page-hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(100deg, rgba(72,91,107,0.88) 0%, rgba(0,176,188,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.kop-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 700px;
}

.kop-page-hero-content h1 {
    font-family: var(--kop-font-heading);
    font-weight: 800;
    font-size: 3rem;
    color: var(--kop-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.kop-page-hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 540px;
}

/* ========================================
   PAGE INTRO (2-col: text + image)
   ======================================== */
.kop-page-intro {
    background: var(--kop-white);
}

.kop-page-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kop-page-intro-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.kop-page-intro-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--kop-gray);
}

.kop-page-intro-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.kop-page-intro-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* ========================================
   ACTIVIDADES / CATEGORIAS
   ======================================== */
.kop-actividades {
    background: var(--kop-light-gray);
}

.kop-actividades-intro {
    text-align: center;
    margin-bottom: 40px;
}

.kop-actividades-intro h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.kop-actividades-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.kop-filter-btn {
    padding: 7px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--kop-primary);
    border-radius: 30px;
    background: transparent;
    color: var(--kop-primary);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.kop-filter-btn:hover,
.kop-filter-btn.active {
    background: var(--kop-turquoise);
    border-color: var(--kop-turquoise);
    color: var(--kop-white);
}

.kop-actividades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.kop-actividad-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.kop-actividad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.kop-actividad-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.kop-actividad-card:hover img {
    transform: scale(1.05);
}

.kop-actividad-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(72,91,107,0.9));
    color: var(--kop-white);
    padding: 30px 15px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kop-actividades-center {
    text-align: center;
    margin-top: 10px;
}

/* ========================================
   CTA NOSOTROS ("Nos dirigimos...")
   ======================================== */
.kop-cta-nosotros {
    background: var(--kop-light-gray);
    padding: 80px 0;
}

.kop-cta-nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kop-cta-nosotros-text h2 {
    font-size: 1.2rem;
    color: var(--kop-turquoise);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.kop-cta-nosotros-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.kop-cta-nosotros-text p {
    font-size: 0.9rem;
    color: var(--kop-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.kop-cta-nosotros-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
}

.kop-cta-nosotros-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ========================================
   FEATURES COLUMNS (Congresos 3-col)
   ======================================== */
.kop-features {
    background: var(--kop-white);
}

.kop-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.kop-feature-item {
    text-align: center;
    padding: 30px 20px;
}

.kop-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--kop-turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--kop-white);
    font-size: 1.6rem;
    font-weight: 800;
}

.kop-feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.kop-feature-item p {
    font-size: 0.88rem;
    color: var(--kop-gray);
    line-height: 1.7;
}

/* ========================================
   NOSOTROS PAGE
   ======================================== */
.kop-nosotros-page {
    background: var(--kop-white);
}

.kop-nosotros-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.kop-nosotros-page-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.kop-nosotros-page-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--kop-gray);
}

.kop-nosotros-sidebar {
    background: var(--kop-light-gray);
    border-radius: 10px;
    padding: 35px;
}

.kop-nosotros-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--kop-turquoise);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.kop-nosotros-values {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.kop-nosotros-values li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(72,91,107,0.1);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kop-nosotros-values li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--kop-turquoise);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Team gallery */
.kop-team-section {
    background: var(--kop-light-gray);
}

.kop-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.kop-team-card {
    text-align: center;
    background: var(--kop-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: all 0.3s;
}

.kop-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.13);
}

.kop-team-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.kop-team-card-info {
    padding: 20px;
}

.kop-team-card-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.kop-team-card-info span {
    font-size: 0.8rem;
    color: var(--kop-turquoise);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ========================================
   BLOG / NOTICIAS ARCHIVE
   ======================================== */
.kop-blog-archive {
    background: var(--kop-white);
}

.kop-blog-subtitle {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--kop-turquoise);
    margin-bottom: 15px;
    font-weight: 700;
}

.kop-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.kop-load-more {
    text-align: center;
    margin-top: 10px;
}

/* ========================================
   CONTACTO PAGE
   ======================================== */
.kop-contacto-section {
    background: var(--kop-white);
}

.kop-contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.kop-contacto-info h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.kop-contacto-data {
    margin-bottom: 30px;
}

.kop-contacto-data h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--kop-turquoise);
    margin-bottom: 8px;
}

.kop-contacto-data p, .kop-contacto-data a {
    font-size: 0.95rem;
    color: var(--kop-primary);
    text-decoration: none;
    line-height: 1.7;
}

.kop-contacto-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.kop-contacto-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* Contact Form */
.kop-form-section {
    background: var(--kop-light-gray);
    padding: 70px 0;
}

.kop-form {
    max-width: 800px;
    margin: 0 auto;
}

.kop-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.kop-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.kop-form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--kop-primary);
    margin-bottom: 8px;
}

.kop-form-group input,
.kop-form-group textarea {
    padding: 14px 18px;
    border: 1px solid rgba(72,91,107,0.25);
    border-radius: 6px;
    font-family: var(--kop-font-body);
    font-size: 0.9rem;
    color: var(--kop-primary);
    background: var(--kop-white);
    transition: border-color 0.3s;
    outline: none;
}

.kop-form-group input:focus,
.kop-form-group textarea:focus {
    border-color: var(--kop-turquoise);
    box-shadow: 0 0 0 3px rgba(0,176,188,0.1);
}

.kop-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.kop-form-submit {
    text-align: right;
}

/* Testimonial / Quote block */
.kop-quote-section {
    background: var(--kop-white);
    padding: 70px 0;
}

.kop-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kop-quote-box {
    background: var(--kop-light-gray);
    border-left: 4px solid var(--kop-turquoise);
    border-radius: 0 10px 10px 0;
    padding: 35px 40px;
}

.kop-quote-box blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--kop-primary);
    line-height: 1.8;
    margin: 0 0 20px;
}

.kop-quote-box cite {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--kop-turquoise);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-style: normal;
}

.kop-quote-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.kop-quote-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* ========================================
   SERVICIOS ADICIONALES PAGE
   ======================================== */
.kop-servicios-adicionales-page {
    background: var(--kop-white);
}

.kop-servicio-bloque {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(72,91,107,0.1);
}

.kop-servicio-bloque:last-child {
    border-bottom: none;
}

.kop-servicio-bloque.reverse {
    direction: rtl;
}

.kop-servicio-bloque.reverse > * {
    direction: ltr;
}

.kop-servicio-bloque-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.kop-servicio-bloque-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.kop-servicio-bloque-img:hover img {
    transform: scale(1.03);
}

.kop-servicio-bloque-text h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--kop-primary);
}

.kop-servicio-bloque-text p {
    font-size: 0.92rem;
    color: var(--kop-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.kop-servicio-bloque-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.kop-servicio-bloque-list li {
    padding: 8px 0;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(72,91,107,0.08);
}

.kop-servicio-bloque-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--kop-turquoise);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   FICHA DE ACTIVIDAD (single activity)
   ======================================== */
.kop-ficha-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.kop-ficha-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.kop-ficha-hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(72,91,107,0.9) 100%);
}

.kop-ficha-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 60px;
    color: var(--kop-white);
    max-width: 700px;
}

.kop-ficha-hero-content h1 {
    font-size: 2.8rem;
    color: var(--kop-white);
    margin-bottom: 10px;
}

.kop-ficha-hero-content p {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 300;
}

.kop-ficha-body {
    background: var(--kop-white);
    padding: 70px 0;
}

.kop-ficha-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
}

.kop-ficha-descripcion p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--kop-gray);
    margin-bottom: 15px;
}

.kop-ficha-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kop-ficha-box {
    background: var(--kop-light-gray);
    border-radius: 8px;
    padding: 25px;
}

.kop-ficha-box h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--kop-turquoise);
    margin-bottom: 15px;
}

.kop-ficha-details {
    list-style: none;
    padding: 0;
}

.kop-ficha-details li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(72,91,107,0.1);
    font-size: 0.88rem;
}

.kop-ficha-details li:last-child {
    border-bottom: none;
}

.kop-ficha-details li span:first-child {
    font-weight: 700;
    color: var(--kop-primary);
}

.kop-ficha-details li span:last-child {
    color: var(--kop-gray);
}

.kop-ficha-competencias {
    list-style: none;
    padding: 0;
}

.kop-ficha-competencias li {
    padding: 7px 0;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(72,91,107,0.1);
}

.kop-ficha-competencias li::before {
    content: '✓';
    color: var(--kop-turquoise);
    font-weight: 700;
    flex-shrink: 0;
}

/* ========================================
   RESPONSIVE - INNER PAGES
   ======================================== */
@media (max-width: 992px) {
    .kop-page-intro-grid,
    .kop-nosotros-page-grid,
    .kop-cta-nosotros-grid,
    .kop-contacto-grid,
    .kop-quote-grid,
    .kop-servicio-bloque {
        grid-template-columns: 1fr;
    }

    .kop-servicio-bloque.reverse {
        direction: ltr;
    }

    .kop-actividades-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kop-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kop-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kop-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kop-ficha-grid {
        grid-template-columns: 1fr;
    }

    .kop-page-hero-content {
        padding: 0 30px;
    }

    .kop-page-hero-content h1 {
        font-size: 2.2rem;
    }

    .kop-cta-nosotros-grid {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .kop-page-hero {
        height: 260px;
    }

    .kop-page-hero-content h1 {
        font-size: 1.8rem;
    }

    .kop-actividades-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kop-blog-grid {
        grid-template-columns: 1fr;
    }

    .kop-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kop-form-row {
        grid-template-columns: 1fr;
    }

    .kop-nosotros-sidebar {
        padding: 25px;
    }
}
