/* Start custom CSS for html, class: .elementor-element-ae768fc *//* Aqui inicia codigo */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #0D47A1;
}

.container-index {
    margin: 0 auto;
    padding: 10px;
    /*background-color: white;*/  /* Fondo para resaltar el contenido */
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/ /* Sombra sutil */
    /*border-radius: 10px;*/ /* Bordes redondeados */
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 10px;
        border-radius: 0; /* Sin bordes redondeados en móviles */
    }
}

.hero {
    position: relative;
    height: 60vh;
    background: url('http://tapetes.com.co/wp-content/uploads/2025/03/TAPETE-PERSONALIZADOS-YATES.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero h1 {
    font-family: "Noto Serif", serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-style: italic;
    font-size: 3.4rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.hero p {
    font-size: 1.3rem;
    margin-top: 1.3rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}

.hero .cta-button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    background: #0074bc;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero .cta-button:hover {
    background: #0062AF;
}

.floating-image {
    position: absolute;
    right: 5%;
    bottom: 6%;
    width: 15rem;
    animation: float 3s ease-in-out infinite;
}

.icono-description{
    width: 6rem;
    margin: auto;
}

.description p {
    font-size: 1.2rem;
    margin: 1.5rem 1.5rem;
    color: #032770;
    text-align: justify;
}

.description-important {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: bold;
}

.features h2 {
    font-family: "Noto Serif", serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-size: 2.8rem;
    color: #001956;
    text-align: center;
    padding: 1rem;
    margin: 0 auto;
}

.features,
.voyages,
.testimonials,
.description,
.footer {
    padding: 1.4rem 1.4rem;
    text-align: center;
    margin: 0 auto; 
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

feature-list {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
    gap: 1rem;
    max-width: 1200px;
    width: 100%;
}

figure {
    display: grid;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    
}

figure > * {
    grid-area: 1/1;
    transition: .4s;
}

figure img {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

figure figcaption {
    display: grid;
    align-items: end;
    font-weight: bold;
    font-size: 1.1rem;
    /*font-weight: bold;*/
    color: #fff;
    padding: 0.6rem;
    inset: 0;
    background: var(--c, #0005);
    clip-path: inset(0 var(--_i, 100%) 0 0);
    -webkit-mask-clip: text, padding-box;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: left;
}

figure:hover figcaption {
    --_i: 0%;
    color: #fff;
}

figure:hover img {
    transform: scale(1.2);
}

@supports not (-webkit-mask-clip: text) {
    figure figcaption {
        -webkit-mask: none;
        color: white;
    }
}

.feature-list,
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    background-color: #D7FFDA;
    border-radius: 12px;
    width: 250px;
    height: 20vh;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease, box-shadow 0.3s ease
}

.card,
.testimonial {
    background-color: #BBDEFB;
    padding: 20px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.2);
}

.footer {
    background-color: #0D47A1;
    color: white;
    padding: 20px;
}

@media (max-width: 768px) {
    .hero {
        font-size: 2rem;
        height: 50vh;
    }
    .hero h1 {
        padding: 10px 20px;
    }
    .card,
    .testimonial {
        width: 90%;
    }
    .floating-image {
        width: 100px;
    }
    .feature-list{
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en pantallas móviles */
    grid-template-rows: auto; /* Distribuye las filas automáticamente */
  }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.instructions {
    text-align: left;
    padding: 1.5rem;
    
}

.iconos-tabla{
    width: 4rem;
    margin: auto;
    
    
}

.instructions h2{
    font-family: "Noto Serif", serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-style: italic;
    font-size: 2.8rem;
    color: #001956;
    text-align: center;
    padding: 1.5rem;
}

.instructions-pass-img{
    width: 20%;
    max-width: 35px;
    height: auto;
    display: block;
    margin: auto;
}

table, th, tr {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    margin: auto;
    font-size: 1rem;
    color: #001956;
    /*border: 1px solid;  el borde */
    /*border-color: black;*/
    padding: 1em;
    
}

.cierre h2{
    font-family: "Noto Serif", serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-style: italic;
    font-size: 2.8rem;
    color: #001956;
    text-align: center;
    padding: 1rem;
    margin: 0 auto;
}

.cierre p{
    font-size: 1.2rem;
    text-align: center;
    margin: 1.5rem 2.3rem;
    color: #001956;
    padding: 1rem 3rem 1rem 3rem;
    
}

/* Formulario */

/* Contenedor general */

.container {
    max-width: 1920px;
    margin: 0% 10%;
    padding: 2% 5%;
    background-color: #f8f8f8;
    border-radius: 3px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 5vh
}

.title-static {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.form-boxes {
    margin: auto;
    grid-column: 1 / span 2;
}

#all-form-credit p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Campos individuales ocupando dos columnas */
.form-group label {
    font-weight: bold;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

textarea,
#departament {
    grid-column: 1 / span 2;
    /* Ocupar ambas columnas */
}

/* Checkbox y botón de envío */
.checkbox-static {
    grid-column: 1 / span 2;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container input {
    margin-right: 8px;
}

.btn {
    grid-column: 1 / span 2;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.alert {
    margin: auto;
    /*width: 320px;*/
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background: #EF665B;
    border-radius: 8px;
    box-shadow: 0px 0px 5px -3px #111;
}

.alert-success {
    background-color: #EDFBD8;
    color: #2B641E;
}

.alert-danger {
    background-color: #EF665B;
    color: #fff;
}/* End custom CSS */