@import url('https://cdnjs.cloudflare.com/ajax/libs/line-awesome/1.3.0/line-awesome/css/line-awesome.min.css');

:root{
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --font-family: 'Inter', sans-serif;
    --brand-primary: #57007b;
    --text-heading: #1a202c;
    --text-body: #4a5568;
    --text-body-2: #718096;
    --text-card: #2d3748;
    --color-border-card: #e7daed;
    --color-border-bottom: #cbd5e0;
    
    --text-ux-1: #28272e;
    --text-ux-2: #60c6f2;
    --text-ux-3: #ff7da9;
    --text-ux-4: #51e8d3;
    --text-ux-5: #fbdd88;
    --text-ux-6: #c8487e;
    
    --bg-section: #f7f7fa;
    --text-font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0px;
}
.top-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    border: #ddd solid 1px;
    box-shadow: 0 1px 20px rgba(0,0,0,0.2);
}
.logo{
    font-size: 28px;
    font-weight: 600;
}
.top-nav-center{
    display: flex;
    font-size: 20px;
    gap: 60px;   
}
.btn-nav{
    background: linear-gradient(to right, #6a00c9, #4a71e9);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 6px;
    font-size: 20px;
}
.main-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-container-text{
    padding: 200px 100px 100px 150px;

}
.main-container-text-first-line{
    font-size: 70px;
    margin: 16px 0;
}
.main-container-text-second-line{
    font-size: 80px;
    margin: 10px 0;
}
.main-container-text-third-line{
    font-size: 25px;
    margin: 10px 0;
    color: #808080;
    word-spacing: 8px;
}
.gradiente-negrilla{
    background: linear-gradient(to right, #6a00c9, #4a71e9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.negrilla{
    font-weight: 900;
    font-family: var(--font-family);
}

.text-emphasis {
    font-weight: 900;
    font-family: var(--font-family);
}

.main-img{
    border-radius: 20px;
    margin: 20px 100px 0px 0px;
}
.main-container-btn{
    background: #4a71e9;
    color: white;
    padding: 22px 34px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    width: fit-content;
}
.text-behind-container{
    text-align: center;
    font-size: 43px;
    color: black;
    line-height: 0.7;
}

.testimonial-section {
    padding: 60px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-section h2 {
    color: var(--text-heading);
    text-align: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 35px;
    max-width: 400px;
}

.testimonial-section p {
    color: var(--text-body-2);
    text-align: center;
    font-family: var(--font-family);
    font-weight: 400;
    max-width: 470px;
    line-height: 30px;
    
}

.testimonial-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.testimonial-card {
    padding: 20px;
}

.testimonial-card img {
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card--featured img {
    width: 120px;
    height: 120px;
    padding: 20px;
    opacity: 1;
}

.testimonial-card h3 {
    font-family: var(--font-family);
    margin: 0;
    font-size: 16px;
}

.testimonial-card--featured h3 {
    color: var(--brand-primary);
}

.testimonial-card p {
    color: var(--text-heading);
    font-family: var(--font-family);
    margin: 0;
    font-size: 14px;
}

.testimonial-card--muted img {
    width: 100px;
    height: 100px;
    padding: 10px;
    opacity: 0.5;
}

.testimonial-card--muted h3 {
    opacity: 0.4;
    font-weight: normal;
    font-size: medium;
    margin: 0;
    font-size: 15px;
}

.testimonial-card--muted p {
    opacity: 0.2;
    margin: 0;
    font-size: 14px;
}

.arrow-icon {
    font-size: 48px;
    color: var(--brand-primary);
}

.arrow-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    margin-left: clamp(50% - 40vw);
    padding-inline: clamp(60px, 1.2vw, 20px);
    box-sizing: border-box;
}

.rating-star{
    color: #ffcc00;
    font-size: 25px;
}

.section-design-development {
    padding: 60px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--color-border-bottom);
    background-color: var(--bg-section);
}

.section-design-development h2 {
    color: var(--text-heading);
    text-align: center;
    font-family: var(--text-font-primary);
    font-weight: 400;
    font-size: 35px;
    max-width: 400px;
}

.section-design-development p {
    color: var(--text-body);
    text-align: center;
}

.design-development {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px;
}

.card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border: 1px solid var(--color-border-card);
    padding: 50px 30px;
    box-sizing: border-box;
}

.card i {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    padding: 12px;
    object-fit: contain;
    font-size: 30px;
}

.card i.las.la-check {
    color: #b4d60c;
    background: linear-gradient(to top right, #f8a66b, #fee360);
}

.card i.las.la-rocket {
    color: #ffffff;
    background-color: #28272e;
}

.card i.las.la-lock {
    color: #d9ab2e;
    background: linear-gradient(to top right, #74137b, #e4597f);
}

.card i.las.la-heartbeat {
    color: #ffffff;
    background: linear-gradient(to top right, #ff409a, #ff91ad);
}

.card i.las.la-code {
    color: #6f81fe;
    background: linear-gradient(to top right, #52a3f4, #64d2f2);
}

.card i.las.la-shield-alt {
    color: #2fab96;
    background: linear-gradient(to top right, #2be79f, #62e8ea);
}

.card h3 {
    color: var(--text-heading);
    font-family: var(--text-font-primary);
    font-weight: 600;
    font-size: 18px;
    max-width: 400px;
    margin-top: 0px;
}

.card p {
    margin: 0;
    line-height: 1.5;
    font-family: var(--text-font-primary);
    color: var(--text-body);
    text-align: justify;
    font-size: 14px;
    max-width: 430px;
}

.text-UX-1 {
    color: var(--text-ux-1);
    font-weight: normal;
}

.text-UX-2 {
    color: var(--text-ux-2);
    font-weight: normal;
}

.text-UX-3 {
    color: var(--text-ux-3);
    font-weight: normal;
}

.text-UX-4 {
    color: var(--text-ux-4);
    font-weight: normal;
}

.text-UX-5 {
    color: var(--text-ux-5);
    font-weight: normal;
}

.text-UX-6 {
    color: var(--text-ux-6);
    font-weight: normal;
}

.style-bold {
    font-weight: 900;
    font-family: var(--text-font-primary);
}

.featured-section {
    padding: 60px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.featured-section h2 {
    color: var(--text-heading);
    text-align: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 35px;
    max-width: 400px;
}

.featured-resources-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.featured-resource-card {
    display: flex;
    flex-direction: column;
    width: 220px;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border-bottom);
    align-items: flex-end;
}

.featured-resource-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    align-self: stretch;
}

.featured-resource-card__text {
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--text-heading);
    margin: 0;
    line-height: 22px;
    align-self: flex-start;
}

.featured-resource-card__link {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
    display: inline-flex; 
    align-items: center;
    gap: 6px;
}

.featured-resource-card__link:hover {
    text-decoration: underline;
}

/*Estilos para el footer*/
.footer{
    display: flex;
    justify-content: space-around;
    margin: 0px;
    background-color: rgb(247,247,250);
    padding: 20px 50px;
    font-family: Inter, sans-serif;
    border: 1px solid rgb(225, 225, 230);
}
.footer-subtext{
    font-size:14px;
    color: #94A3B8;
}
.footer-social{
    display: flex;
    gap: 10px;
    margin-top: 200px;
}
.icon-footer{
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 10px;
    
}
.copyright{
    font-family: Inter, sans-serif;
    text-align: center;
    color: #94A3B8;
    font-size: 13px;
    margin: 0px;
    line-height: 3px;
}