/*estilos universales*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*estilos del body*/
body{
    background: linear-gradient(#d7d9d7,#f2a950, #d98c4a,#cfc7c7);
}
.destacado{
    text-align: center;
    margin-top: 50px;
}
h1{
    text-align: center;
    text-decoration: overline;
    margin-top: 25px;
    color: #050505;
}
h2{
    text-align: center;
    margin-top: 80px;
    margin-bottom: 60px;
    color:#040404;
    text-decoration: overline;
}
h3{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}
.texto, p{
    text-align: center;
    margin-top: 20px;
    padding: 30px;
}
.image1 {
    width: 60;
    height: auto;
    object-fit: contain;
}

.chat-body{
    text-align: center;
}
.texto-color{
    color: #030303;
}
/*estilo imagenes carrusel*/
.carousel {
    max-width: 900px;
    margin: 0 auto;
}
.carousel img {
    object-fit: cover;
    height: 500px;
    border-radius: 10px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}

/*estilos footer*/
.footer-img{
    width: 100px;
    align-items: center;
    margin-bottom: -50px;
}
footer{
    text-align: center;
    text-decoration: wavy;
    margin-top: 65px;
}

/*registro formulario*/
#registro {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: Arial, sans-serif;
}
#registro h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}
#registro form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#registro label {
    font-size: 14px;
    color: #333;
}
#registro input[type="text"],
#registro input[type="email"],
#registro input[type="password"],
#registro input[type="tel"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
#registro input:focus {
    border-color: #4d0d6f;
    outline: none;
}
#registro .checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
#registro button {
    padding: 10px;
    background: #007bff;
    color: #010101;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
}
#registro button:hover {
    background: #0056b3;
}

/*colores div de AOS y titulo*/
section.container h2 {
    color: #060606;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    margin-top: 20px;
    margin-bottom: 30px;
}
section.container div p {
    color: #2d4b73;
    font-weight: 500;
}

/*registro formulario boton*/
section.container h2 {
    color: #070707;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}
.registro-formulario .btn{
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

/*Estilo para el nav*/
.container-fluid{
    background: linear-gradient(#d7d9d7,#f2a950, #fff);
}

/*estilos de botones*/
button{
    margin: 25px;
}
.botones{
    text-align: center;
}

/*ESTILOS MEDIAS*/

/* estilo movil */
@media screen and (max-width: 767px) {
    .container, .carousel-inner, .footer-img {
        display: block;
        width: 100%;
        text-align: center;
    }
    h1, h2 {
        font-size: 1.5rem;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
    img {
        width: 100%;
        height: auto;
    }
    footer {
        font-size: 0.8rem;
    }
}

/* estilo tablet*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .container, .carousel-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    h1, h2 {
        font-size: 2rem;
    }
}

/* estilo computador */
@media screen and (min-width: 1024px) {
    .container {
        max-width: 1200px;
        margin: auto;
    }
    h1 {
        font-size: 2.5rem;
    }
}
