/* aboutUs.css */

/* Reset mínimo */
*{
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #222;
    
}

/* =============================== */
/*      MENÚ HAMBURGUESA          */
/* =============================== */
.header {
    position: fixed;
    top: 40px;
    left: 60px;
    z-index: 9999;
}

.menu-icon {
    width: 45px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 5px;
    background: #ffffff17;
    border-radius: 4px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.menu-icon:hover span {
    opacity: 1;
}


/* =============================== */
/*      SIDEBAR DESPLEGABLE       */
/* =============================== */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    box-shadow: 5px 0 25px rgba(0,0,0,0.2);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 9998;
    padding-top: 2rem;
}

.sidebar-menu ul {
    padding: 0;
    margin: 0;
}

.sidebar-menu ul li {
    list-style: none;
}

.sidebar-menu ul li a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    color: #222;
    text-decoration: none;
    transition: 0.25s ease;
}

.sidebar-menu ul li a:hover {
    background: #333;
    color: #fff;
    padding-left: 2rem;
}


/* Animación de hamburguesa → X */
.header:hover .sidebar-menu {
    transform: translateX(0);
}

.header:hover .menu-icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.header:hover .menu-icon span:nth-child(2) {
    opacity: 0;
}

.header:hover .menu-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* Configuración de páginas completas en 16:9 */
.page-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
}



/* Video de fondo */
.background-video {
     position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
    
    filter: grayscale(100%) brightness(1.15) contrast(0.9);
    
}

/* Overlay oscuro sobre el video */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.35); 
    z-index: 2;
}

/* Contenido sobre el video */
.section-content {
    max-width: 1400px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 3;
}

/* Sección 1: Testimonios */
.section-testimonials {
    background: #4a4a4a; /* Color de respaldo si no carga el video */
}

.main-title {
    font-size: 6.5rem;
    text-align:left;
    font-weight: bold;
    margin-bottom: 50px;
    text-transform: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    padding: 30px;
    text-align: left;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-meta {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: auto;
}

/* Botón de contactar */
.contact-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.contact-btn:hover {
    background: #ffffff;
    color: #4a4a4a;
}

/* Sección 2: Transformar */
.section-transform {
    background: #a8a8a8; /* Color de respaldo si no carga el video */
}

.section-transform .overlay {
    background: rgba(255, 255, 255, 0.3); /* Overlay más claro para esta sección */
}

.section-transform .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.transform-title {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    color: #333333;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .transform-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 20px;
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .transform-title {
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}
.contact-btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.contact-btn:hover {
  background-color: #333;
}
#parrafo {
   font-family: 'League Spartan', sans-serif;
  font-size: 5.5rem;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 1.5rem 0;

  color: rgba(80,80,80,0.85);           /* más “Canva” */
  text-shadow: 0 2px 10px rgba(255,255,255,0.25); /* separa del fondo claro */
}
#boton2{
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
    transition: 
        background-color 0.25s ease,
        color 0.25s ease;
}
#boton2:hover {
  background-color: #fff;
  color: #111;
}
