
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header (mantener tu header existente) */
header {
    background: linear-gradient(135deg, #0056b3, #003366);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section Nosotros */
.about-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Sección Quiénes Somos */
.about-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #003366;
    font-size: 2.5rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffd700;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.about-video {
    flex: 1;
    max-width: 500px; /* o el tamaño que prefieras */
    margin: 0 auto; /* para centrar */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.5s ease;
}


.btn-organi {
    /* Estilo base */
    background: linear-gradient(135deg, #132d8b 0%, #12a4e3 100%);
    color: rgb(255, 255, 255);
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    
    /* Efectos visuales */
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Borde sutil */
    position: relative;
    overflow: hidden;
  }
  .container-blanco {
    width: 100vw;         /* ocupa todo el ancho del viewport */
    height: 100px;        /* puedes cambiar esta altura a tu gusto */
    background-color: rgb(255, 255, 255);
  }
  .btn-organi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    border-radius: 8px;
  }
  
  .btn-organi:hover {
    /* Efectos hover */
    background: linear-gradient(135deg, #12a4e3 0%, #132d8b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.35);
  }
  
  .btn-organi:active {
    /* Efecto al hacer click */
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
  }
  
  .btn-organi:focus {
    /* Estilo para accesibilidad */
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.4);
  }
  
  /* Versión alternativa con icono */
  .btn-organi.with-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .btn-organi.with-icon::after {
    content: '→';
    transition: transform 0.3s ease;
  }
  
  .btn-organi.with-icon:hover::after {
    transform: translateX(3px);
  }

.about-video:hover video {
    transform: scale(1.05);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Sección Misión y Visión */
.mission-vision {
    background: #f1f5f9;
    padding: 80px 0;
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mv-card {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: #003366;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Sección Valores */
.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid #ffd700;
}

.value-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #003366;
    margin-bottom: 15px;
}

/* Footer (mantener tu footer existente) */
footer {
    background: #003366;
    color: white;
    padding: 40px 0 20px;
}

.logo-container {
display: flex;
align-items: center;
}

.logo-3d {
width: 220px;
height: 70px;
margin-right: 15px;
transition: transform 0.5s ease;
}

.logo-3d:hover {
transform: rotateY(180deg);
}



.footer-column h3 {
margin-bottom: 1.5rem;
color: #ffd700;
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 0.8rem;
}

.footer-column ul li a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-column ul li a:hover {
color: #ffd700;
}



/* Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mv-container {
        grid-template-columns: 1fr;
    }
}
