/* ===== css/nosotros.css ===== */
/* Versión Pulida - Kayaks Mictlán */

/* ===== VARIABLES ESPECÍFICAS ===== */
:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-3d: 0 20px 40px rgba(0,0,0,0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== HERO SECTION PULIDO - MODIFICADO (TIPOGRAFÍA REDUCIDA) ===== */
.nosotros-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Ajuste para separar del header */
    padding-top: 100px; /* Espacio para el header fijo */
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../images/kayaks/DSC00596.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(10, 26, 47, 0.95) 90%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    padding: 0 20px;
    /* Centrar verticalmente con el padding-top del hero */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 100px);
}

.hero-text-wrapper {
    max-width: 800px; /* Reducido */
    margin-bottom: 30px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1rem; /* Volvemos al tamaño original */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--fuente-titulos);
    font-size: clamp(2.8rem, 4.5vw, 4.5rem); /* Reducido */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
}

.hero-title span {
    color: #ff00ea;
    position: relative;
    display: inline-block;
    font-size: clamp(3rem, 4.5vw, 4.8rem); /* Ligeramente más grande que el título */
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px; /* Volvemos al alto original */
    background: rgba(255, 0, 234, 0.3);
    z-index: -1;
    border-radius: 10px;
}

.hero-description {
    font-size: clamp(1.1rem, 3vw, 1.5rem); /* Reducido */
    max-width: 650px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-stats {
    display: flex;
    gap: clamp(25px, 6vw, 50px); /* Reducido */
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 100px; /* Reducido */
}

.stat-number {
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.2rem); /* Reducido */
    font-weight: 800; /* Menos bold */
    color: #ff00ea;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255, 0, 234, 0.4);
}

.stat-label {
    font-size: 0.9rem; /* Reducido */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

.scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 12px 25px; /* Reducido */
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    transition: var(--transition-smooth);
    font-size: 1rem; /* Reducido */
    font-weight: 500;
}

.scroll-link:hover {
    background: #ff00ea;
    border-color: #ff00ea;
    transform: translateY(5px);
    box-shadow: 0 10px 25px rgba(255, 0, 234, 0.4);
}

.scroll-link i {
    font-size: 1.1rem;
}

/* ===== HISTORIA PULIDA ===== */
.historia-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.historia-imagen {
    position: relative;
}

.imagen-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.imagen-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.imagen-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.imagen-wrapper:hover img {
    transform: scale(1.05);
}

.imagen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(141, 11, 145, 0.8), rgba(255, 0, 234, 0.4));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.imagen-wrapper:hover .imagen-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.imagen-wrapper:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.overlay-content p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.4;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff00ea;
    margin-bottom: 15px;
    padding: 5px 15px;
    background: rgba(255, 0, 234, 0.1);
    border-radius: 20px;
    font-weight: 600;
}

.historia-contenido .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 25px;
}

.historia-texto {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.historia-texto strong {
    color: #8d0b91;
    font-size: 1.1rem;
}

.historia-texto .highlight {
    color: #ff00ea;
    font-weight: 600;
}

.historia-features {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.historia-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    flex: 1;
    min-width: 100px;
}

.historia-features .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(141, 11, 145, 0.15);
}

.historia-features .feature i {
    font-size: 2rem;
    color: #ff00ea;
}

.historia-features .feature span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* ===== FILOSOFÍA PULIDA ===== */
.filosofia-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1a2f 0%, #2d0b31 100%);
    position: relative;
    overflow: hidden;
}

.filosofia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/icons/axololt.png') repeat;
    opacity: 0.03;
    animation: floatBg 30s linear infinite;
}

@keyframes floatBg {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-200px) rotate(5deg); }
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header-center .section-tag {
    background: rgba(255, 0, 234, 0.15);
    color: white;
}

.section-header-center .section-title {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
}

.section-header-center .section-title span {
    color: #ff00ea;
}

.filosofia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.filosofia-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px 30px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.filosofia-card:hover {
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: var(--shadow-3d);
    border-color: #ff00ea;
}

.filosofia-card.featured {
    background: linear-gradient(135deg, #8d0b91, #ff00ea);
    transform: scale(1.05);
}

.filosofia-card.featured:hover {
    transform: scale(1.05) translateY(-20px) rotateX(5deg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.filosofia-card:hover .card-icon {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.filosofia-card h3 {
    font-family: var(--fuente-titulos);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.filosofia-card p {
    line-height: 1.7;
    opacity: 0.9;
    font-size: 1rem;
}

.valores-lista {
    list-style: none;
    margin: 0;
    padding: 0;
}

.valores-lista li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.valores-lista i {
    color: #ff00ea;
    font-size: 1.1rem;
}

.card-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 0, 234, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.filosofia-card:hover .card-decoration {
    transform: scale(1.5);
}

/* ===== EQUIPO PULIDO ===== */
.equipo-section {
    padding: 100px 0;
    background: #ffffff;
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.equipo-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.equipo-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.equipo-card:hover .card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.equipo-card:hover .image-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.equipo-card:hover .social-links {
    transform: translateY(0);
}

.social-links a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8d0b91;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-links a:hover {
    background: #2d003b;
    color: white;
    transform: rotate(360deg) scale(1.1);
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    font-family: var(--fuente-titulos);
    font-size: 1.4rem;
    color: #0a1a2f;
    margin-bottom: 5px;
    font-weight: 700;
}

.cargo {
    color: #ff00ea;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bio {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.especialidad {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 234, 0.08);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #8d0b91;
    font-weight: 500;
}

.especialidad i {
    color: #ff00ea;
}

/* ===== COMPROMISO PULIDO ===== */
.compromiso-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.compromiso-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/conservacion.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.3);
    z-index: -2;
}

.compromiso-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 80px 20px;
}

.section-tag.light {
    background: rgba(255,255,255,0.1);
    color: white;
}

.section-title.white {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
}
.color-especifico {
    color: #000000 !important; /* Usa el color que necesites */
}

.compromiso-texto {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    line-height: 1.8;
    margin: 40px 0;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.compromiso-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-circle {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 20px;
    transition: var(--transition-smooth);
}

.stat-circle:hover {
    transform: translateY(-10px);
    background: rgba(255, 0, 234, 0.2);
    border-color: #ff00ea;
}

.stat-circle .number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ff00ea;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-circle .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    line-height: 1.4;
}

/* ===== LÍNEA DE TIEMPO PULIDA ===== */
.timeline-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #8d0b91, #ff00ea);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 70px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ff00ea;
    border: 4px solid white;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(255, 0, 234, 0.3);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 6px rgba(255, 0, 234, 0.4);
}

.timeline-content {
    position: relative;
    width: calc(50% - 50px);
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(141, 11, 145, 0.15);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
}

.timeline-content .year {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff00ea;
    margin-bottom: 10px;
    padding: 5px 15px;
    background: rgba(255, 0, 234, 0.1);
    border-radius: 20px;
}

.timeline-content h3 {
    font-family: var(--fuente-titulos);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0a1a2f;
    font-weight: 700;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== TESTIMONIOS PULIDOS ===== */
.testimonios-section {
    padding: 100px 0;
    background: #ffffff;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonio-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(141, 11, 145, 0.1);
}

.testimonio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(141, 11, 145, 0.15);
    border-color: #ff00ea;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(255, 0, 234, 0.1);
    transition: var(--transition-smooth);
}

.testimonio-card:hover .quote-icon {
    color: rgba(255, 0, 234, 0.2);
    transform: scale(1.1);
}

.testimonio-texto {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.testimonio-autor img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff00ea;
}

.testimonio-autor h4 {
    font-family: var(--fuente-titulos);
    font-size: 1rem;
    color: #0a1a2f;
    margin-bottom: 2px;
    font-weight: 700;
}

.testimonio-autor p {
    font-size: 0.8rem;
    color: #718096;
}

.rating {
    margin-left: auto;
    color: #ff00ea;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* ===== CTA PULIDO ===== */
.nosotros-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(5deg, #000000d6, #000000e0);
    opacity: 0.95;
    z-index: -2;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/kayaks/atardecer.jpeg');
    background-size: cover;
    background-position: center;
    mix-blend-mode: overlay;
    opacity: 0.7;
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-family: var(--fuente-titulos);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content h2 span {
    color: #FFBF00;
}

.cta-content p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.cta-buttons .btn i {
    transition: transform 0.3s ease;
}

.cta-buttons .btn:hover i {
    transform: translateX(5px);
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #8d0b91;
}

.cta-buttons .btn-outline:hover i {
    color: #8d0b91;
}

/* ===== RESPONSIVE PULIDO ===== */
@media (max-width: 1200px) {
    .filosofia-grid,
    .equipo-grid,
    .testimonios-grid {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .historia-grid {
        gap: 40px;
    }
    
    .filosofia-card {
        padding: 30px 20px;
    }
    
    .card-image {
        height: 300px;
    }
}

@media (max-width: 968px) {
    .filosofia-grid,
    .equipo-grid,
    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .historia-grid {
        grid-template-columns: 1fr;
    }
    
    .historia-imagen {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .compromiso-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
    }
    
    .filosofia-grid,
    .equipo-grid,
    .testimonios-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .filosofia-card.featured {
        transform: scale(1);
    }
    
    .filosofia-card.featured:hover {
        transform: translateY(-20px) rotateX(5deg);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .testimonio-card {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .historia-features {
        flex-direction: column;
    }
    
    .historia-features .feature {
        width: 100%;
    }
    
    .card-image {
        height: 250px;
    }
    
    .card-info h3 {
        font-size: 1.2rem;
    }
    
    .testimonio-autor {
        flex-direction: column;
        text-align: center;
    }
    
    .rating {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ===== UTILIDADES EXTRA ===== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

