/*
Theme Name: Uncode Child
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/

@font-face {
    font-family: 'Century Gothic';
    src: url('fonts/CenturyGothic-Bold.woff2') format('woff2'),
        url('fonts/CenturyGothic-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('fonts/CenturyGothic-Italic.woff2') format('woff2'),
        url('fonts/CenturyGothic-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('fonts/CenturyGothic-BoldItalic.woff2') format('woff2'),
        url('fonts/CenturyGothic-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('fonts/CenturyGothic.woff2') format('woff2'),
        url('fonts/CenturyGothic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body, p, h1, h2, h3, h4, h5, h6, a, li, span, div {
  font-family: 'Century Gothic', sans-serif;
}

/* Botones en minúscula */
.btn,
a.btn,
button,
input[type="submit"] {
  text-transform: none !important;
}

/* Botón blanco estilo "Enroll now" */
.btn-enroll a {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #222; /* gris oscuro */
  font-family: 'Century Gothic', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: none !important; /* mantiene minúsculas */
  letter-spacing: 5px;
  padding: 10px 20px;
  border-radius: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.btn-enroll a:hover {
  background: #f5f5f5;
  color: #002d72; /* azul corporativo */
}

.btn-enroll a:hover::after {
  margin-left: 12px;
}
.btn-enroll a::after {
  content: "→";
  margin-left: 12px; /* aumenta este valor para más espacio */
  font-size: 14px;
  transition: margin-left 0.3s ease;
}
/* Botón estilo */
.btn-view {
  display: inline-block;
  background: #ffffff;
  color: #1E3A8A;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-view:hover {
  background: #1E3A8A;
  color: #ffffff;
}

/* Caja de texto superpuesta en las imágenes */
.carousel-slide .overlay {
  background: rgba(255,255,255,0.8);
  padding: 15px;
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 80%;
  border-radius: 5px;
}