/* Estilos personalizados */
body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.banner {
    width: 400px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    color: #ff6600;
    font-size: 20px;
    margin: 0 0 10px 0;
}
h2 {
    color: #333;
    font-size: 16px;
    margin: 0 0 20px 0;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}
li {
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}
.banner ::before {
    content: "✓";
    color: #ff6600;
    position: absolute;
    left: 0;
}
.button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
}
.offer-text {
    color: #ff6600;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.hero {
    padding: 60px 0;
}

.video-placeholder {
    background-color: #f5f5f5;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.video-placeholder i {
    font-size: 64px;
    color: #0d47a1;
}

.full-width {
    width: 100%;
}

.clients img {
    max-height: 80px;
    width: auto;
}

.services .card-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .card-image i {
    font-size: 64px;
}

/* Estilos para hacer que las tarjetas de precios tengan la misma altura */
.equal-height-cards {
    display: flex;
    flex-wrap: wrap;
}

.equal-height-cards .col {
    display: flex;
    flex-direction: column;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card .card-action {
    margin-top: auto;
}

.pricing-card ul {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.pricing-card ul li i {
    margin-right: 10px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: #0d47a1;
}

.step-title {
    background-color: #0d47a1;
    color: white;
    padding: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 10px;
}

.pricing .card {
    height: 100%;
}

.pricing ul {
    margin-top: 20px;
}

.pricing ul li {
    margin-bottom: 10px;
}

.faq .collapsible-header {
    display: flex;
    align-items: center;
}

.faq .collapsible-header i {
    margin-right: 10px;
}


/* Estilos para hacer que las tarjetas de servicios tengan la misma altura */
.equal-height-cards {
    display: flex;
    flex-wrap: wrap;
}

.equal-height-cards .col {
    display: flex;
    flex-direction: column;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card .card-content {
    flex-grow: 1;
}

.service-card .card-action {
    margin-top: auto;
}

/* Estilos para la sección de proceso */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    margin: 40px 0;
    list-style-type: none;
}

.process-steps .step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-steps .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 0px;
    background-color: grey lighten-4;
    z-index: 0;
}

.step-circle {
    width: 40px;
    height: 40px;
    background-color: #0d47a1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
}

.step-title {
    font-weight: bold;
    color: #0d47a1;
}

/* Responsive para dispositivos móviles */
@media (max-width: 600px) {
    .process-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-steps .step {
        width: 100%;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

    .process-steps .step:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -10px;
        left: 20px;
        width: 2px;
        height: 20px;
    }

    .step-circle {
        margin: 0 20px 0 0;
    }
}

    .card-image img {
        height: 200px;
        object-fit: cover;
    }

    .card-image2 img {
        width: 100%;
        object-fit: cover;
    }

  .card-title {
    background-color:rgb(85, 164, 248);
    padding:20px;
    color: white;
    font-size: 1.2em;
  }
  
  .card-content ul {
    list-style-type: none;
    padding: 0;
  }
  
  .card-content ul li {
    font-size: 1em;
    margin: 5px 0;
  }
  
  /* Estilo del modal */
.modal {
    width: 60%; /* Cambia este valor según el tamaño que desees */
    max-width: 500px; /* Máximo ancho del modal */
  }
  
  .modal-content {
    text-align: center;
  }
  
  .modal-close {
    font-size: 1.5em;
    cursor: pointer;
  }
  
  input[type="tel"] {
    display: inline-block;
  }
  
  