/**
* Template Name: Company
* Template URL: https://bootstrapmade.com/company-free-html-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@font-face {
  font-family: 'Apricotsy Demo';
  src: url('/assets/fonts/apricotsy-demo.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Dosis';
  src: url('/assets/fonts/dosis-book.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --hero-font: "Dosis", sans-serif;
  --apricotsy-font: "Apricotsy Demo", cursive;
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Nunito",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #555454; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2b2874; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --red-color:#d0173d;
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color:#d0173d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #d0173d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f7f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #ededed;
  --default-color: #ededed;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2ae149;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  font-family: var(--hero-font);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 26px;
  font-weight: 700;
}

.header .header-social-links {
  padding: 0 0 0 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 10px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--nav-hover-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 768px) {
  .header {
    padding: 8px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header .logo img {
    max-height: 60px;
    margin: 0 auto 5px;
  }

  .header .logo h1,
  .header .logo span {
    font-size: 20px;
  }

  .header .header-social-links {
    padding: 10px 0 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header .header-social-links a {
    padding: 5px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo img {
    max-height: 50px;
    margin-bottom: 5px;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .logo span {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 13px;
    font-family: var(--nav-font);
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer-contact li {
  list-style: none;
  margin-bottom: 5px;
  color: var(--default-color);
  font-size: 14px;
}

.footer-links ul li a {
  text-decoration: none;
}

.footer .social-links a {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer .footer-top {
    text-align: center;
  }

  .footer .social-links {
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero h1,
.hero h2,
.hero h3 {
  font-family: var(--hero-font);
}

.hero .carousel {
  width: 100%;
  min-height: calc(90vh);
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 1200px) {
  .hero .carousel {
    min-height: calc(50vh);
  }
}

.hero img {
  position: bottom;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  display: flex;
  justify-content: bottom;
  align-items: flex-end;
}

.container-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--surface-color), transparent 40%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 30px;
  z-index: 3;
}

.container-content {
  font-family: var(--hero-font);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: none;
}

@media (max-width: 768px) {
  .container-content {
    font-size: 1rem; 
  }

  .container-content h2 {
    font-size: 1.5rem;
  }
}

.container-content h2 {
  font-size: 5rem;
  font-weight: 70;
  color: var(--contrast-color);
  margin-bottom: 15px;
  line-height: 1.5;
  display: block;
}

.container-content p {
  font-size: 1.7rem;
  width: 60ch;
  line-height: 1.3;
  text-align: justify;
  text-align-last: center;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  height: calc(1.3em * 2);
  margin: 0 auto 1.2ch;
  margin-bottom: 2ch;
}


.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--red-color);
  color: var(--default-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--red-color);
}

@media (max-width: 768px) {
  .hero .carousel {
    min-height: 60vh;
  }

  .container-overlay {
    padding: 20px 15px;
    align-items: flex-end;
  }

  .container-content {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .container-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .container-content p {
    font-size: 1rem;
    width: 100%;
    text-align: left;
    text-align-last: left;
    -webkit-line-clamp: unset;
    height: auto;
    overflow: visible;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero .carousel-control-next-icon,
  .hero .carousel-control-prev-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
# Comunidad Section
--------------------------------------------------------------*/

.comunidad-section {
  background-color: #ededed;
  padding: 60px 20px;
  border-bottom: 8px solid #2c2c80;
}

.comunidad-title {
  font-family: var(--apricotsy-font);
  font-size: 2.8rem;
  color: #2c2c80;
  margin-bottom: 25px;
  font-weight: 600;
}

.comunidad-text {
  font-family: var(--hero-font);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
}


/*--------------------------------------------------------------
# numbers Section
--------------------------------------------------------------*/
.numbers .number-item {
  position: relative;
  background-color: var(--surface-color);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 20px;
}

.numbers .number-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 6px;
  width: 60%; /* ajustable según el efecto deseado */
  border-radius: 0 0 3px 3px;
}

/* Colores individuales para cada tarjeta */
.numbers .number-item.item-cyan::before {
  background-color: #0dcaf0;
}

.numbers .number-item.item-orange::before {
  background-color: #fd7e14;
}

.numbers .number-item.item-teal::before {
  background-color: #d0173d;
}

.numbers .number-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.numbers .number-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.numbers .number-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.numbers .number-item h3 {
  font-family: var(--hero-font);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 75px;
}

.numbers .number-item p {
  font-family: var(--apricotsy-font);
  line-height: 24px;
  font-size: 40px;
  margin-bottom: 0;
}

.numbers .number-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.numbers .number-item.item-cyan i {
  color: #0dcaf0;
}

.numbers .number-item.item-orange i {
  color: #fd7e14;
}

.numbers .number-item.item-teal i {
  color: #d0173d;
}

.numbers .item-cyan h3,
.numbers .item-cyan p {
  color: #0dcaf0;
}

.numbers .item-orange h3,
.numbers .item-orange p {
  color: #fd7e14;
}

.numbers .item-teal h3,
.numbers .item-teal p {
  color: #d0173d;
}

/*--------------------------------------------------------------
# Perfil del Egresado Section
--------------------------------------------------------------*/
.egresado-section {
  background-color: #302c74;
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.section-title {
  font-family: var(--apricotsy-font);
  font-size: 60px;
  margin-top: 30px;
  margin-bottom: 30px;
  color: white
}

.egresado-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.egresado-item {
  width: 200px;
}

.egresado-box {
  height: 100px; /* ajustá este valor según necesites */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
  padding: 20px;
  color: white;
  
}

.egresado-box h3 {
  font-family: var(--hero-font);
  font-size: 25px;
  font-weight: 70;
  text-transform: uppercase;
  margin: 0;
  color: white
}

/* Los párrafos debajo de cada box */
.egresado-item p {
  font-family: var(--hero-font);
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

/* Colores */
.bg-cyan {
  background-color: #2bbbdd;
}

.bg-orange {
  background-color: #f07a42;
}

.bg-red {
  background-color: #d0173d;
}

.bg-yellow {
  background-color: #ffcb34;
}

.bg-green {
  background-color: #86bf6a;
}

/*--------------------------------------------------------------
# Quienes Somos Section
--------------------------------------------------------------*/


.about-text section{
  padding: 80px 0;
  background-color: #ededed;
}

.about-text h2 {
  font-family: var(--apricotsy-font);
  font-size: 3rem;
  color: #2b2874;
  margin-bottom: 30px;
}

.about-text p {
  font-family: var(--hero-font);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 2ch;
  color: var(--text-color);
  text-align: center;
}

/*----------------------------------------------------------
# Valores Section
------------------------------------------------------------*/

.about-icons {
  font-family: var(--apricotsy-font);
  
}

.bloque {
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 60px;
  box-sizing: border-box;
  gap: 40px;
  flex-wrap: nowrap;
}

/* Agrupa título vertical y el ícono en una columna */
.titulo-icono {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Título a la izquierda, rotado */
.titulo-vertical {
  position: relative;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: left;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: white;
  padding: 30px 15px;
  font-family: var(--apricotsy-font);
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  border-radius: 15px;
  text-align: center;
  white-space: nowrap;
}

/* Ícono debajo del título (pero puede estar en el mismo grupo visual) */
.icono-derecha img {
  height: 70px;
  width: auto;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.3));
}

/* Texto alineado a la izquierda pero centrado verticalmente */
.contenido-central {
  font-family: var(--hero-font);
  text-align: left;
  font-size: 1.5rem;
  color: white;
  line-height: 1.5;
  font-weight: 500;
  max-width: 800px;
}

/* Bloques de colores */
.bloque1 {
  background-color: #2b2874;
  color: #2b2874;
}

.bloque2 {
  background-color: #ededed;
  color: #2b2874;
}

.bloque2 .contenido-central {
  color: #2b2874;
}

.bloque3 {
  background-color: #d0173d;
  color: #d0173d;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
  .bloque {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .titulo-icono {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .titulo-vertical {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.3rem;
    padding: 10px 14px;
  }

  .contenido-central {
    text-align: center;
    font-size: 1.2rem;
    max-width: 100%;
    margin-top: 20px;
  }

  .icono-derecha img {
    height: 50px;
  }
} 

/*--------------------------------------------------------------
# Colegios About Section
--------------------------------------------------------------*/

.colegio-section {
  max-width: 1200px;
  margin: auto;
  background: #ededed;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
}

.top-bar {
  font-family: var(--hero-font);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.logo-container {
  flex: 1;
  text-align: left;
}

.logo {
  width: 150px;
  margin-left: 50px;
}

.center-text {
  position:center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 2;
}

.title {
  font-size: 3rem;
  font-family: var(--apricotsy-font);
  color: #2b2f9f;
  margin: 0;
}

.title span {
  font-family: var(--apricotsy-font);
  color: #2b2f9f;
}

.description {
  font-size: 1rem;
  max-width: 50ch;
  margin: 10px 0 0;
  margin-top: 30px;
  color: #444;
}

.button-container {
  flex: 1;
  text-align: right;
}

.web-button {
  display: inline-block;
  background: #ffffff;
  padding: 6px 15px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.9rem;
  color: #2b2f9f;
  transition: background 0.3s;
}

.web-button:hover {
  background: #ddd;
}

.swiper-container {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.swiper {
  width: 100%;
  max-width: 800px;
  padding-top: 50px;
  padding-bottom: 50px;
  margin: auto;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide {
  position: center;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  margin:auto;
}

.swiper-slide img {
  position: center;
  width: 90%;
  max-height: 800px;
  object-fit: cover;
  border: 10px solid white;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: #aaa;
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .logo-container {
    margin: 0;
    text-align: center;
  }

  .logo {
    width: 120px;
    margin: 0 auto;
  }

  .center-text {
    flex: none;
    padding: 0 15px;
  }

  .title {
    font-size: 2rem;
  }

  .description {
    font-size: 0.95rem;
    max-width: 100%;
    padding: 0 10px;
    margin-top: 15px;
    line-height: 1.5;
    text-align: left;
  }

  .button-container {
    text-align: center;
    margin-top: 10px;
  }

  .web-button {
    font-size: 0.95rem;
    padding: 8px 20px;
  }

  .swiper {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .swiper-slide img {
    width: 100%;
    max-height: 300px;
    border-width: 6px;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.oficinas-apei-section {
  position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ededed;
}

.oficinas-apei-section h2 {
  color:#555454;
  font-family: var(--hero-font);
  text-transform: uppercase;
  font-size: 1.2rem;
}

.oficinas-apei-section p {
  color:#555454;
  line-height: 0.8rem;
  font-family: var(--hero-font);
}

@media (max-width: 768px) {
  .oficinas-apei-section {
    padding: 30px 20px;
  }

  .oficinas-apei-section h2 {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .oficinas-apei-section p {
    font-size: 1rem;
    line-height: 1.4rem;
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .container-content h3 {
    font-size: 1.2rem;
    padding: 0 15px;
    line-height: 1.4;
  }
}


/*--------------------------------------------------------------
# iconos Section
--------------------------------------------------------------*/

.icon-section {
  background-color: #ededed ;
  display: flex;
  justify-content: center;   /* Centra horizontalmente */
  align-items: flex-start;   /* Alineación vertical superior */
  gap: 40px;                 /* Espacio entre los iconos */
  padding: 50px 20px;
  text-align: center;
  flex-wrap: wrap;           /* Permite que se acomoden en columna en pantallas pequeñas */
}

.icon-box {
  width:fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;  /* Alinea ícono y texto al centro */
  text-align: center;
  justify-content: center;
}

.icon-box img {
  width: 160px;           /* Tamaño del ícono */
  height: 160px;          /* Tamaño del ícono */
  margin-bottom: 20px;   /* Espacio entre el ícono y el texto */
  transition: transform 0.3s ease;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.3));
}

.icon-box:hover img {
  transform: scale(1.2);  /* Efecto de zoom al pasar el mouse */
}

.icon-box p {
  font-family: var(--hero-font);
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0;
}

.icon-box h6 {
  font-family: var(--apricotsy-font);
  font-size: 2.5rem;
  font-weight: 500;
  margin: 5px 0 0;
}

.highlight {
  font-style: var(--apricotsy-font);
  font-size: 1.1rem;
}

h6.red{
  color: #cf113f;
}

h6.blue{
  color: #2fbbdf;
}

h6.orange{
  color: #ef7a3d;
}

/* RESPONSIVE: Apila en móviles */
@media (max-width: 768px) {
  .icon-section {
    flex-direction: column;
    align-items: center;
  }

  .icon-box {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}