/* css/presentacion2.css */

/* Fuente principal */
@font-face {
  font-family: 'AdobeCleanBold';
  src: url('/fonts/AdobeCleanBold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

body {
  font-family: 'AdobeCleanBold', sans-serif;
}

/* Polygon elegante */
.presentation2-wrapper,
.presentation3-wrapper {
  clip-path: polygon(
    0 0%, 5% 2%, 10% 0%, 90% 0%, 95% 2%, 100% 0%, 
    100% 98%, 95% 100%, 90% 98%, 10% 98%, 5% 100%, 0 98%
  );
  padding: 5rem 1rem;
}

/* Contenedor principal */
.presentation2-container,
.presentation3-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Colores de fondo */
.presentation2-wrapper { background: #e5e5eb; }
.presentation3-wrapper { background: #ffffff; }

/* Textos */
.presentation2-text,
.presentation3-text {
  max-width: 600px;
}

.small-title {
  color: #319d70;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
}

.presentation2-text h2,
.presentation3-text h2 {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  color: #222;
}

.presentation2-text p,
.presentation3-text p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Botones */
.presentation2-buttons,
.presentation3-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cta-button {
  background: #319d70;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #278a5d;
}

.theory-link {
  font-size: 0.85rem;
  color: #222;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}

/* Imagen con borde polygon para bloque 1 (blanco) */
.presentation2-image {
  position: relative;
  width: 500px;
  height: auto;
  clip-path: polygon(5% 0, 95% 0, 100% 10%, 100% 90%, 95% 100%, 5% 100%, 0 90%, 0 10%);

  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Imagen con borde polygon para bloque 2 (gris claro) */
.presentation3-image {
  position: relative;
  width: 500px;
  height: auto;
  clip-path: polygon(5% 0, 95% 0, 100% 10%, 100% 90%, 95% 100%, 5% 100%, 0 90%, 0 10%);

  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive básico */
@media (max-width: 1024px) {
  .presentation2-container, .presentation3-container {
    flex-direction: column;
    text-align: center;
  }
  .presentation2-text, .presentation3-text {
    max-width: 90%;
  }
  .presentation2-image, .presentation3-image {
    margin-top: 2rem;
    width: 90%;
  }
}
