@tailwind base;
@tailwind components;
@tailwind utilities;

/* Personalización */
body {
    font-family: 'CotorisHeavy', sans-serif;
}

/* Elementos responsivos */
header {
    animation: fadeIn 1.5s ease-in-out;
}

.navbar {
    transition: background-color 0.3s ease;
}
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
}

.landing-section {
    background: url('../img/fondo_div.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    
}

/* Remove gray gradient background */
.landing-section .max-w-3xl {
    background: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button i {
    margin-left: 0.5rem;
}

.footer-powered {
    background-color: #2d2d2d;
    color: white;
}

/* Responsiveness */
@media (max-width: 768px) {
    .landing-section {
        height: auto;
        padding: 2rem;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .landing-section h2 {
        font-size: 2rem;
    }
    .landing-section p {
        font-size: 1rem;
    }
    .landing-section img {
        display: block;
    }
    .navbar ul {
        display: none;
    }
    #mobile-menu {
        display: block;
    }
    .navbar a {
        display: none;
    }
    footer .flex {
        flex-direction: column;
        align-items: center;
    }
    footer img {
        width: 100px;
        height: auto;
    }
    .seguridad-section {
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center align items */
        text-align: center; /* Center align text */
        padding: 1rem; /* Add padding */
    }

    .seguridad-section img {
        margin-bottom: 1rem; /* Add spacing below the image */
        width: 75%; /* Make the logo 25% larger */
        max-width: 100%; /* Ensure it doesn't exceed container width */
        height: auto; /* Maintain aspect ratio */
    }

    .seguridad-section p {
        font-size: 1rem; /* Adjust font size */
        line-height: 1.5; /* Improve readability */
        margin: 0; /* Remove default margins */
        text-align: justify;
    }

    .cuotas-table th:last-child,
    .cuotas-table td:last-child {
        padding-right: 1rem; /* Add space to the right of the last column */
    }

    #cuotas-section {
        margin-top: 10px; /* Add space above cuotas Section */
    }
}

@media (min-width: 769px) {
    .seguridad-section {
        display: flex;
        flex-direction: row; /* Align content horizontally */
        align-items: center; /* Center align items vertically */
        justify-content: center; /* Center align items horizontally */
        text-align: left; /* Align text to the left */
        padding: 1rem; /* Add padding */
    }

    .seguridad-section img {
        margin-right: 1rem; /* Add spacing to the right of the image */
        width: 203px; /* Original width */
        height: 41px; /* Original height */
    }

    .seguridad-section p {
        font-size: 1.125rem; /* Slightly larger font size */
        line-height: 1.5; /* Improve readability */
        margin: 0; /* Remove default margins */
    }
}

.topnav {
    overflow: hidden;
    background-color: #000;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.active {
    background-color: #000000;
    color: white;
}

.topnav .icon {
    display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 17px;    
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #555;
    color: white;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child), .dropdown .dropbtn {
        display: none;
    }
    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .topnav.responsive .dropdown {float: none;}
    .topnav.responsive .dropdown-content {position: relative;}
    .topnav.responsive .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
    }
}

/* Estilos específicos para la página de login */
body {
    background-color: #f3f4f6;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="email"],
input[type="password"] {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}

button {
    padding: 0.5rem;
    background-color: #4f46e5;
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
}

button:hover {
    background-color: #4338ca;
}

/* header */

.header {
    background-color: #030303;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    z-index: 3;
    padding-bottom: 10px;
  }
  
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #000000;
  }
  
  .header li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #000000;
    text-decoration: none;
  }
  
  .header li a:hover,
  .header .menu-btn:hover {
    background-color: #2e2a2a;
  }
  
  .header .logo {
    display: block;
    float: left;
    font-size: 2em;
    padding: 10px 20px;
    text-decoration: none;
  }
  
  /* menu */
  
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: #ffffff;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #ffffff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 240px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
  /* 48em = 768px */
  
  @media (min-width: 48em) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px 30px;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
  }

/* Estilos para dispositivos móviles (por defecto) */
.menu {
    /* ...existing styles... */
}

/* Puntos de quiebre para tabletas */
@media (min-width: 768px) {
    .menu {
        display: flex;
        justify-content: center;
    }
}

/* Puntos de quiebre para escritorio */
@media (min-width: 1024px) {
    .menu {
        display: flex;
        justify-content: center;
    }
    .landing-section .max-w-3xl {
        margin-left: 800px; /* Move text 50px to the right */
    }
    .landing-section {
        background-size: contain; /* Adapt the image to the resolution */
        background-repeat: no-repeat; /* Prevent repeating the image */
    }
}

/* Puntos de quiebre para pantallas grandes */
@media (min-width: 1440px) {
    .menu {
        display: flex;
        justify-content: center;
    }
}

/* Chat Bubble CSS */
#chat-bubble {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: #1d4ed8;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ensure it is above other elements */
    font-family: 'Inter', sans-serif; /* Assuming Inter is the default font */
}

#chat-box {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    width: 300px;
    max-width: 90%;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 1000;
    font-family: 'Inter', sans-serif; /* Assuming Inter is the default font */
}

#chat-box-header {
    background-color: #1d4ed8;
    color: white;

    padding: 1rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chat-box-header h3 {
    margin: 0;
    font-size: 1rem;
    display: flex;
    justify-content: center; /* Center horizontally */
}

#chat-box-header .close-btn {
    cursor: pointer;
}

#chat-box-header img {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

#chat-box-content {
    padding: 1rem;
    flex-grow: 1;
}

#chat-box-content p {
    margin: 0.5rem 0;
}

#chat-box-content button {
    background-color: #1d4ed8;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 0.5rem;
    width: 100%;
    text-align: left;
}

#chat-box-content button i {
    margin-right: 10px;
}

#chat-box-content button:hover {
    background-color: #1a3fb8;
}

/* Remove Slide Section styles */
.splide {
    /* Removed */
}

.splide__slide img {
    /* Removed */
}

@font-face {
    font-family: 'CotorisHeavy';
    src: url('../fonts/CotorisHeavy.woff2') format('woff2'),
         url('../fonts/CotorisHeavy.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CotorisBold';
    src: url('../fonts/CotorisBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Cotoris';
    src: url('../fonts/Cotoris.ttf') format('truetype'),
         url('../fonts/Cotoris.otf') format('opentype');
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.ttf') format('truetype'),
         url('../fonts/Inter.otf') format('opentype');
}

/* Typography */
body {
    font-family: 'Inter', sans-serif; /* Set Inter as the default font */
}

body {
    font-family: 'Inter', sans-serif;
    background-image: url('../img/preseas_fondo.png');
    background-size: cover;
    background-position: center;
}

.cotoris-bold {
    font-family: 'CotorisBold', sans-serif;
}

.landing-logo {
    width: 125%; /* Make the logo 25% larger */
    max-width: 100%;
}

.landing-section {
    background: url('../img/fondo_div.png') no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .landing-section {
        background: url('../img/landing_movil.png') no-repeat center center;
        background-size: cover;
    }

    .landing-section img {
        display: block;
    }

    .landing-section h2 {
        font-size: 2rem;
    }

    .landing-section p {
        font-size: 1rem;
    }
}

/* Add any custom styles for the modal here */
.modal-content {
    background-color: rgba(255, 255, 255, 0.9); /* 10% transparency */
    border: 2px solid #33ffe6; /* Border color */
}

/* Custom styles for the requirements modal */
#requirementsModal .modal-content {
    border: 2px solid #facc15; /* Border color for requirements modal */
}

/* Custom styles for the bases modal */
#basesModal .modal-content {
    border: 2px solid #2563eb; /* Border color for bases modal */
}

/* Frosted Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px); /* Frosted glass effect for Safari */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
/* Estilo básico para la galería */
figure {
    margin:0;
  }
  #gallery {
      max-width: 900px;
      margin: auto;
      overflow: hidden;
      position: absolute;
  }
  
  .gallery-container {
      display: flex;
      transition: transform 0.5s ease-in-out;
  }
  
  .gallery-item {
      min-width: 100%;
      box-sizing: border-box;
  }
  
  .gallery-item img {
      width: 100%;
      display: block;
  }
  
  /* Navegación de la galería */
  .gallery-navigation {
      display: flex;
      justify-content: space-between;
      width: calc(100% - 40px);
      margin: 0 20px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%)
  }
  
  .nav-button {
      background-color: rgba(0,0,0, .3);
      color: white;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 5px;
  }
  .nav-button > span {
    font-size: 30px;
  }
  .nav-button:hover {
      background-color: #005f5f;
  }

/* Styles for the Convocatoria Section */
.convocatoria-section {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    background-image: url('../img/fondo_convocatoria.png'); /* Add background image for desktop */
    background-size: cover;
    background-position: center;
}

.bases-container img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 720px) {
    .bases-container img {
        display: block;
        margin: 0 auto;
    }
    .bases-container img[alt="Bases Escritorio"] {
        display: none;
    }
    .bases-container img[alt="Bases Móvil"] {
        width: 720px;
        height: auto;
        display: block;
        
    }


/* Removed styles for Dynamic Background Section */

/* Button styles */
button {
    font-size: 0.875rem;
    font-weight: normal; /* Remove bold text */
    text-transform: uppercase;
    border-radius: 9999px; /* Fully rounded */
    border-width: 2px; /* Ensure border width is set */
    border-style: solid; /* Ensure border style is solid */
    background-color: transparent; /* Set background to transparent */
    transition: all 0.3s ease-in-out;
    padding: 0.5rem 1rem; /* Dynamic padding based on text size */
    white-space: nowrap; /* Prevent text wrapping */
    width: auto; /* Width depends on text content */
}

button:hover {
    cursor: pointer;
}

/* Responsive grid for buttons */
@media (max-width: 720px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    button {
        font-size: 0.75rem;
    }
}

/* Buttons Column Gradient */
.buttons-column {
    background: linear-gradient(to right, transparent, #000066); /* Gradient background */
    padding: 2rem;
}

@media (max-width: 720px) {
    .buttons-column {
        background: none; /* Remove gradient for mobile */
    }
}

/* Content Section */
.content-section {
    background-image: url('../img/content_escritorio.png'); /* Desktop background */
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 0 10px; /* Add 10px of space on the sides */
}

@media (max-width: 720px) {
    .content-section {
        margin-top: 100px; /* Top spacing for Content Section in mobile */
        background-image: url('../img/content_movil.png'); /* Mobile background */
        border-left: 2px solid #000; /* Add left border */
        border-right: 2px solid #000; /* Add right border */
        display: grid;
        grid-template-columns: 1fr 1fr auto; /* Two empty columns on the left */
        gap: 0; /* No gap between columns */
        margin-top: 41px; /* Add top spacing for Content Section */
    }
}

@media (max-width: 720px) {
    .modal-content {
        padding-left: 10px;;

    }
}
@font-face {
    font-family: 'Cotoris';
    src: url('../fonts/Cotoris.ttf') format('truetype'),
         url('../fonts/Cotoris.otf') format('opentype');
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.ttf') format('truetype'),
         url('../fonts/Inter.otf') format('opentype');
}
body {
    font-family: 'Inter', sans-serif;
}
.especialidad-title {
    font-family: 'Cotoris', sans-serif;
    color: #000066;
}
@font-face {
    font-family: 'Cotoris';
    src: url('../fonts/Cotoris.ttf') format('truetype'),
         url('../fonts/Cotoris.otf') format('opentype');
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.ttf') format('truetype'),
         url('../fonts/Inter.otf') format('opentype');
}
.landing-section h2 {
    font-family: 'Cotoris', sans-serif;
}
.landing-section p {
    font-family: 'Inter', sans-serif;
}

.selected-text {
    font-family: 'Inter', sans-serif;
}

/* Styles for Cuotas Table */
.cuotas-table img {
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 720px) {
    .cuotas-table img {
        transform: scale(0.75); /* Reduce size by 25% */
    }
    .cuotas-table tbody td, .cuotas-table tbody th {
        font-size: 0.875rem; /* Increase font size for tbody in mobile */
    }
}

/* Navbar static on mobile */
@media (max-width: 720px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    body {
        padding-top: 60px; /* Adjust based on the navbar height */
    }
}
#countdown {
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  #countdown span {
    display: inline-block;
    margin: 0 10px;
  }
  
  #countdown span:first-child {
    margin-left: 0;
  }
  
  #countdown span:last-child {
    margin-right: 0;
  }
  
  #countdown span:before,
  #countdown span:after {
    content: ":";
    color: #fff;
  }
  
  #countdown span:last-child:before,
  #countdown span:last-child:after {
    content: "";
  }
  
  #countdown span:before {
    margin-right: -5px;
  }
  
  #countdown span:after {
    margin-left: -5px;
  }
  #clock1 {
	position: absolute;
	top: 50%;
	left: 50%;
	*/ .header .clock {
  width: 460px;
  height: 117px;
  margin: 0 auto;
}

.header .flip-clock-divider .flip-clock-label {
  font-size: 90px;
  color: rgb(204, 204, 204);
}

.header .flip-clock-divider.seconds .flip-clock-label {
  right: -114px;
}

.header .flip-clock-divider.minutes .flip-clock-label {
  right: -110px;
}

.header .flip-clock-divider.hours .flip-clock-label {
  right: -102px;
}

.header .flip-clock-dot {
  background: rgb(160, 160, 160);
}

.header .buttons {
  text-align: center;
  margin: 60px 0 0;
}

.header.no-clock {
  padding: 25px 0 75px;
}

.header.no-clock .clock {
  display: none;
}

.header.no-clock .buttons {
  float: right;
  margin: 7px 2em;
}

.header.no-clock .buttons a {
  display: none;
  font-size: 20px;
}

.header.no-clock .buttons a:first-child {
  display: inline-block;
}

.header.no-clock h1 {
  position: absolute;
  left: .5em;
  top: 15px;
  margin: 0;
  font-size: 50px;
}

.header.no-clock .version {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .header .clock {
    margin: 0 auto;
    display: block;
    width: 322px;
  }
  .flip-clock-wrapper ul {
    height: 70px;
    line-height: 70px;
    margin: 5px;
  }
  .flip-clock-wrapper ul li a div.up:after {
    top: 35px;
  }
  .flip-clock-divider {
    height: 50px;
  }
  .flip-clock-dot {
    height: 6px;
    width: 6px;
    left: 7px;
  }
  .flip-clock-dot.top {
    top: 32px;
  }
  .flip-clock-dot.bottom {
    bottom: -4px;
  }
  .header .flip-clock-divider .flip-clock-label {
    font-size: 16px;
  }
  .header .flip-clock-divider.hours .flip-clock-label {
    right: -66px;
  }
  .header .flip-clock-divider.minutes .flip-clock-label {
    right: -78px;
  }
  .header .flip-clock-divider.seconds .flip-clock-label {
    right: -78px;
  }
  .flip-clock-wrapper ul {
    width: 35px;
  }
  .flip-clock-wrapper ul li a div div.inn {
    font-size: 52px;
  }
  .flip-clock-wrapper ul li a div.up div.inn {
  top: 0; }

.flip-clock-wrapper ul li a div.down div.inn {
  bottom: 0; }
}

.flip-clock-wrapper.clock-example {
  margin: 40px 0 20px 0;
}

.clock-example .flip-clock-label {
  font-size: 16px;
}

.clock-example .flip-clock-meridium a,
.clock-example .flip-clock-meridium a:hover {
  font-size: 24px;
  color: rgb(74, 73, 74);
  position: absolute;
  top: 10px;
}

/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 */

code {
  background: none;
}

code[class*="language-"],
pre[class*="language-"] {
  color: white;
  font-family: Consolas, Monaco, 'Andale Mono', monospace;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

@media print {
  code[class*="language-"],
  pre[class*="language-"] {
    text-shadow: none;
  }
}


/* Code blocks */

pre[class*="language-"] {
  padding: 0 1em 1em 1em;
  margin: .5em 0;
  overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: rgb(23, 23, 23);
}


/* Inline code */

:not(pre) > code[class*="language-"] {
  padding: .1em;
  border-radius: .3em;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: slategray;
}

.token.punctuation {
  color: rgb(199, 203, 255);
}

.namespace {
  opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number {
  color: #905;
}

.token.selector,
.token.attr-name,
.token.string {
  color: rgb(127, 208, 255);
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: rgb(114, 255, 197);
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: rgb(203, 13, 112);
}

.token.regex,
.token.important {
  color: #e90;
}

.token.important {
  font-weight: bold;
}

.token.entity {
  cursor: help;
}
}
.pasos-container {
  text-align: center;
  padding: 40px 10px;
  font-family: 'Montserrat', sans-serif;
}

.pasos-container h2 {
  font-size: 1.8em;
  color: #001060;
  margin-bottom: 30px;
}

.pasos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.paso {
  max-width: 140px;
  text-align: center;
  transition: transform 0.3s;
}

.icono {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.icono:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.azul { background-color: #0033cc; }
.celeste { background-color: #0099ff; }
.naranja-claro { background-color: #ffcc66; color: #222; }
.naranja { background-color: #ff9966; }
.rojo { background-color: #ff6633; }

.flecha {
  font-size: 24px;
  color: #888;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boton-formulario {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background-color: #001060;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.boton-formulario:hover {
  background-color: #0033cc;
}

/* Responsive para móviles */
@media (max-width: 900px) {
  .pasos {
    flex-direction: column;
    gap: 5px;
  }
  .flecha {
    transform: rotate(90deg); /* Flecha apunta hacia abajo */
    margin: 0 auto;
    font-size: 28px;
  }
  .paso {
    max-width: 90vw;
    margin: 0 auto;
  }
}
#formModal {
    z-index: 2000 !important;
    margin-top: 60px; /* espacio para evitar que el navbar lo tape */
}