.stk-hero {
   	background-image: url('/wp-content/uploads/2026/04/hero-kefir.png'); 
    padding: 100px 20px;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.25);
}

.stk-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.stk-linea {
    width: 70px;
    height: 4px;
    background: #4caf50;
    margin: 0 auto 20px;
    border-radius: 4px;
}

.stk-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}


/* Sección quienes somos */
.stk-quienes {
    padding: 80px 20px;
    background: #ffffff;
}

.stk-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stk-quienes .stk-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.stk-texto {
    flex: 1;
}

.stk-texto h2 {
    font-size: 2rem;
    color: #4caf50;
    margin-bottom: 25px;
    font-weight: 700;
}

.stk-texto p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.stk-frase {
    background: #f0faf0;
    padding: 20px 25px;
    border-radius: 16px;
    font-style: italic;
    font-size: 1.1rem;
    color: #2e7d32;
    font-weight: 500;
    margin-top: 25px;
    border-left: 4px solid #4caf50;
}

.stk-imagen {
    flex: 1;
}

.stk-imagen img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.stk-imagen img:hover {
    transform: scale(1.02);
}

.stk-valores {
    background: transparent;
    padding: 80px 20px;
    text-align: center;
}

.stk-valores h2 {
    font-size: 2.2rem;
    color: #0a0a0a;
    margin-bottom: 20px;
    font-weight: 700;
}

.stk-linea-centro {
    width: 60px;
    height: 4px;
    background: #4caf50;
    margin: 0 auto 50px;
    border-radius: 4px;
}

.stk-grid-valores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stk-valor {
    background: white;
    padding: 40px 25px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stk-valor:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.stk-icono {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stk-valor h3 {
    font-size: 1.5rem;
    color: #4caf50;
    margin-bottom: 12px;
}

.stk-valor p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.stk-cta {
    background:white
    padding: 70px 20px;
    text-align: center;
    color: white;
}

.stk-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.stk-cta p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.stk-botones {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primario,
.btn-secundario {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primario {
    background: #4caf50;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-primario:hover {
    background: #3d9b40;
	color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
	text-decoration: none;
}

.btn-secundario {
    background: #4caf50;
    color: white;
    border: 2px solid white;
}

.btn-secundario:hover {
    background: #3d9b40;
    color: #0a0a0a;
    transform: translateY(-3px);
	text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .stk-grid-valores {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .stk-hero {
        padding: 60px 20px;
    }
    
    .stk-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .stk-hero-content p {
        font-size: 1rem;
    }
    
    .stk-quienes {
        padding: 50px 20px;
    }
    
    .stk-quienes .stk-container {
        flex-direction: column;
    }
    
    .stk-texto h2 {
        font-size: 1.6rem;
    }
    
    .stk-texto p {
        font-size: 0.95rem;
    }
    
    .stk-frase {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .stk-valores {
        padding: 50px 20px;
    }
    
    .stk-valores h2 {
        font-size: 1.8rem;
    }
    
    .stk-grid-valores {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stk-cta {
        padding: 50px 20px;
    }
    
    .stk-cta h2 {
        font-size: 1.6rem;
    }
    
    .stk-cta p {
        font-size: 1rem;
    }
    
    .btn-primario,
    .btn-secundario {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stk-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .stk-texto h2 {
        font-size: 1.4rem;
    }
    
    .stk-botones {
        gap: 12px;
    }
}