
.about-byte-view #content-container {
    padding: 0 !important;
}

.about-byte-index #content-container {
    /*padding: 25px 0 40px !important;*/
    background-color: #F8FAFC !important;
    background-image: url('/images/about/squiggly-left.png');
    background-repeat: no-repeat;
    background-position: left 0px top 30px; 
    background-size: 220px auto;
}

.about-byte-index #content-container::after {
    content: "";
    position: absolute;
    left: 0;
    top: 1400px; /* ajusta según lo necesites */
    width: 220px;  /* mismo tamaño que el original */
    height: 540px;

    background-image: url('/images/about/squiggly-left.png');
    background-repeat: no-repeat;
    background-size: contain;

    transform: scaleY(-1);   /* VOLTEA EL SQUIGGLY */
    transform-origin: top;   /* asegura que la inversión sea limpia */

    pointer-events: none;
    z-index: 10;
}


.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 50px;
    color: #0f172a;
}

.gradient-text {
    background: linear-gradient(to right, #b41926, #df4956);
    -webkit-background-clip: text;
    color: transparent;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 40px !important;
    font-weight: 800 !important;
}

.about-subtitle {
    font-size: 20px;
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 28px !important;
}

.highlight-red {
    font-weight: 700;
    color: #b41926;
}

.section {
    margin-bottom: 50px;
}

.section-center-text {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
}

.section-paragraph {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-image-wrapper {
    position: relative;
}

.mission-image {
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* GRID DE DOS COLUMNAS PARA MARÍA */
.maria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}


@media (max-width: 768px) {
    .maria-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 20px;
    }

    .maria-text {
        order: 1;
    }

    .maria-image-wrapper {
        order: 2;
        margin: 0 auto;
    }
}



/* IMAGEN A LA IZQUIERDA */
.maria-image-wrapper {
    position: relative;   /* clave para que ::before se coloque sobre la foto */
    width: 75%;
}

.maria-image {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dedication-section {
    position: relative;
}

.dedication-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;            /* altura de la banda */
    background-color: #B41926;
    z-index: -1;              /* detrás del contenido */
}

.section-button-container {
    margin-top: 20px;
}

.primary-button {
    background: linear-gradient(to right, #b41926, #b41926);
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px !important;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.value-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: #b41926;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px auto;      /* centra el contenedor en la tarjeta */
    display: flex;
    align-items: center;
    justify-content: center;

    /* sin fondo raro ni sombra, que el prota sea el icono rojo */
    background: transparent;
    box-shadow: none;
}

.value-icon img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain;
    display: block;
}

.value-card {
    text-align: center;
}



.value-card:hover .value-icon-zap,
.value-card:hover .value-icon-heart,
.value-card:hover .value-icon-users,
.value-card:hover .value-icon-rocket
{
  transform: scale(1.12);
}
/*
.value-icon-zap {
  background: linear-gradient(to right, #f97316, #ef4444);
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.value-icon-heart {
  background: linear-gradient(to right, #22c55e, #10b981);
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.value-icon-users {
  background: linear-gradient(to right, #a855f7, #ec4899);
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.value-icon-rocket {
  background: linear-gradient(to right, #b41926, #d53341);
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}
*/

.value-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.value-text {
    font-size: 15px;
    color: #475569;
    line-height: 24px !important;
}

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

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
    cursor: pointer;
}

.stat-card:hover {
    border-color: #b41926;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Número */
.stat-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(to right, #b41926, #c33b47);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.10);
}

.stat-label {
    margin-top: 8px;
    color: #475569;
    font-weight: 600;
}

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

/* .team-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: 0.3s;
}

.team-card:hover {
    border-color: #3b82f6;
} */


.team-card {
    background: white;
    border: 1px solid #e2e8f0; /* slate-100 */
    border-radius: 15px; /* rounded-xl */
    overflow: hidden;

    /* shadow-md exacto */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;
}

.team-card:hover {
    /* shadow-2xl exacto */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    border-color: #b41926; /* blue-300 */
}

.team-image-wrapper {
    height: 180px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.team-card:hover .team-image {
    transform: scale(1.15);
}

.team-body {
    padding: 24px;
}

.team-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.value-card-users:hover{
  background-color: #FDF6FC;
}

.value-card-rocket:hover{
  background-color: #F5FAFE;
}
.value-card-zap:hover{
  background-color: #FFF7F4;
}

.value-card-zap:hover{
  background-color: #F5FCF8;
}

.team-role {
    color: #b41926;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.team-bio {
    font-size: 15px;
    color: #475569;
}

.cta-section {
    background: linear-gradient(to right, #b41926, #e14d59);
    padding: 60px 30px;
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0f2fe;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-button {
    padding: 16px 32px !important;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px !important;
    border: 2px solid white;
    transition: 0.3s;
}

.cta-button.white {
    background: white;
    color: #b41926;
}

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

.cta-button.outline {
    background: transparent;
    color: white;
}

.cta-button.outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .values-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 35px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-section {
        padding: 40px 20px;
    }
}


@media (max-width: 768px) {
    .about-byte-index #content-container {
        background-image: none !important;   /* quita squiggly-left */
    }

    .about-byte-index #content-container::after {
        content: none !important;            /* quita squiggly-maria */
    }
}
