@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
}

/* PRELOADER */
#preloader {
    position: fixed;
    background: #0b1f3a;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#preloader img {
    width: 180px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.6; }
}

/* SLIDER */
.slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

/* OVERLAY */
.overlay {
    position: relative;
    z-index: 2;
    background: rgba(11,31,58,0.85);
    height: 100%;
    text-align: center;
    padding-top: 120px;
    color: white;
}

.logo {
    width: 160px;
    margin-bottom: 20px;
}

.overlay h1 {
    font-size: 42px;
    color: #f57c00;
}

.overlay p {
    font-size: 20px;
    margin: 15px 0;
}

.btn {
    background: #f57c00;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    margin-top: 20px;
}

/* SECCIONES */
.section {
    padding: 70px 10%;
    text-align: center;
}

.section h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #0b1f3a;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 25px;
    border-left: 5px solid #f57c00;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

/* CONTACTO */
.dark {
    background: #0b1f3a;
    color: white;
}

.contacto-info p {
    margin: 10px 0;
    font-size: 17px;
}

/* FORMULARIO */
.formulario {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formulario input,
.formulario textarea {
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

.formulario button {
    background: #f57c00;
    border: none;
    padding: 14px;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* MAPA */
.mapa {
    margin-top: 40px;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* WHATSAPP */
.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25d366;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:#ffffff;
z-index:1000;
}


/* FOOTER */
footer {
    background: #071629;
    color: white;
    text-align: center;
    padding: 20px;
}


/* ===== KUALI ABOUT PANEL ===== */

.kuali-about{
  background:#f5f6f8;
  padding:100px 6%;
}

.kuali-about-wrapper{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
}

.kuali-panel{
  background:#ffffff;
  padding:50px 45px;
  border:1px solid #e1e1e1;
}

.kuali-panel h2{
  font-size:2.4rem;
  margin-bottom:20px;
  color:#1a1a1a;
}

.kuali-panel h3{
  font-size:1.6rem;
  margin-bottom:15px;
  color:#1a1a1a;
}

.kuali-panel p{
  font-size:1.05rem;
  line-height:1.9;
  color:#555;
}

/* Detalles sutiles para identidad */
.kuali-panel.intro{
  border-top:4px solid #ff9f1a;
}

.kuali-panel.mission{
  border-top:4px solid #0c1633;
}

.kuali-panel.vision{
  border-top:4px solid #444;
}

/* Responsive */
@media(max-width:1000px){
  .kuali-about-wrapper{
    grid-template-columns:1fr;
  }
}

