General
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: #333;
    background-color: #f7f7f7;
}



#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color:  rgba(22, 1, 58, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(5px); 
}

.header-container {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    padding: 0 30px;
    width: 100%;
}


.header-container > * {
    margin-right: 15px; 
}


.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    padding: 8px 12px;
    transition: color 0.3s ease;
    font-family: 'Arial';
}

.nav-menu a:hover {
    color: #e4c510; 
}





#navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0px 0;
}




/* Logo */
.logo img {
    max-width: 400px;
    display: block;
    margin: 0 auto 20px;
}
.logo img:hover {
    transform: scale(1.1); 
    opacity: 1; 
}


.intro {
    padding: 80px 0; 
    text-align: center;
    background-color: rgba(49, 40, 100, 0.8);
    
    position: relative; 
}


.intro h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d6b71e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}
.intro p {
    font-size: 1.0em;
    margin-bottom: 10px;
    color: #ffff;
}


.intro-text {
    margin-top: 5px;
    text-align: center;
    position: relative;
    padding: 50px 20px; 
    
    z-index: 2;
}


.intro-text h3 {
    font-size: 1.8em;
    color: #fffbfb;
    margin-bottom: 20px;
    font-weight: 600;  
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}   



.fondo {
    background-image: url(../img/picture1.jpeg);
    height: 100vh;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 200% 200%; 
    filter: blur(2px);
    position: fixed;
    width: 100%; 
    z-index: -2; 
}



.intro-text .btn-create {
    background-color: #ff4e60;
    color: #ffffff;
    padding: 10px 10px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
    z-index: 2; 
    position: relative; 
    top: 45px; 
    left: 1%;
}


.intro-text .btn-create:hover {
    background-color: #e4c510; 
    transition: background-color 0.3s ease;
}

#seccion-contenedora {
    background-color: #fff;
    padding: 30px 20px; 
    margin-top: -26px; 
    box-sizing: border-box; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); 
}



.text-content {
    font-size: 1.8em;
    color: #2f005b;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}


.text-content h2 {
    font-size: 1.0em;
    color: #e4c510;
    margin-bottom: 20px;
    font-weight: 70;
    text-align: center;
    padding: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#plan {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 20px;
    margin-top: 20px;
}


#planes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 20px;
}


.plan {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    text-align: center;
    flex: 1 1 calc(33.333% - 30px);
    height: 450px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: cascadeEffect 0.6s forwards;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan h3 {
    color: #280246; 
    margin-bottom: 20px; 
    font-size: 28px; 
}

.plan h2 {
    color: #0bd412;
    margin-bottom: 20px;
    font-size: 28px;
    flex-shrink: 0; 
}


.plan ul {
    list-style: none;
    margin-bottom: 20px;
    color: #1a003a;
    font-size: 18px;
    flex-grow: 1; 
    padding-left: 30px;
}


.plan ul li {
    position: relative;
    margin-bottom: 10px;
    font-size: 18px;
}

.plan ul li::before {
    content: "✔"; 
    color: #7a1e9c; 
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    margin-left: -30px; 
}


.plan button {
    background-color: #ff4e60;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0; 
}


.plan:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 222, 185, 0.2);
}


.plan button:hover {
    background-color: #eee127;
    transform: scale(1.1);
}


@keyframes cascadeEffect {
    0% {
        opacity: 5;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.plan:nth-child(1) {
    animation-delay: 0.2s;
}
.plan:nth-child(2) {
    animation-delay: 0.4s;
}
.plan:nth-child(3) {
    animation-delay: 0.6s;
}
.plan:nth-child(4) {
    animation-delay: 0.8s;
}
.plan:nth-child(5) {
    animation-delay: 1s;
}
.plan:nth-child(6) {
    animation-delay: 1.2s;
}




#servicios {
    background-color: #ebecef; 
    font-size: 1.8em;
    color: #2f005b; 
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
    padding: 40px 0;
}
#tittle-text p{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}
.title-text h2 {
    font-size: 1.2em;
    color: #e4c510; 
    margin-bottom: 15px;
    font-weight: 400    ;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}


.container-text {
    margin: 0 auto;
    width: 80%; 
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}



.talk-expert .btn-create {
    background-color: #ff4e60; 
    color: #ffffff;
    padding: 10px 10px;
    font-size: 0.6em;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 30px;
    text-transform: uppercase; 
    font-weight: bold;
    z-index: 2; 
    position: relative; 
    top: 20px; 
    left: 1%; 
}


.talk-expert .btn-create:hover {
    background-color: #e4c510; 
    transition: background-color 0.3s ease;
}
.card {
    background-color: #ffffff; 
    border-radius: 15px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    width: 30%; 
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
}

.img {
    width: 150px;
    height: 150px; 
    border: 5px solid #fff; 
    border-radius: 50%; 
    margin-right: 20px;
    object-fit: cover; 
}

.contenido-text {
    color: #180038; 
}

.contenido-text h3 {
    font-size: 24px; 
    margin-bottom: 10px;
    color: #19033b; 
}

.contenido-text p {
    font-size: 16px;
    line-height: 1.6; 
    color: #555; 
}

.contenido-text ul {
    list-style-type: none; 
    padding-left: 0;
}

.contenido-text ul p {
    font-size: 16px;
    color: #676363; 
    margin-bottom: 10px; 
}





#contacto {
    padding: 30px;
    display: flex;
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    background-color: rgba(49, 40, 100, 0.8); 
    height: 50px;
    margin-top: -40px; 
}


.contact-container {
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
}


.image-Sii img {
    width: 150px; 
    height: auto; 
    margin-right: 20px; 
  
}

#atentamente {
    text-align: center; 
    background-color: rgba(49, 40, 100, 0.8); 
    margin-bottom: -60px; 
}


#atentamente p {
    font-size: 14px; 
    color: rgb(255, 255, 255); 
   
}

#atentamente h3{

    font-size: 20px; 
    color: rgb(247, 98, 98); 
    
}

#footer{
    color:#ffff
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

.whatsapp-contact {
    position: fixed;
    bottom: 20px;
    right: 20px; 
    background-color: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #25d366;
    font-size: 22px; 
    font-weight: bold;
}

.whatsapp-icon {
    width: 60px;
    height: 60px; 
    border-radius: 50%;
    background-color: #fff;
    padding: 10px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-link:hover .whatsapp-icon {
    background-color: #25d366;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128c7e; 
}