.hero {
    background: #fbf6ff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px 48px;
    padding-bottom: 0px;
    overflow: hidden;
}

.hero-texto {
    max-width: 550px;
    padding-top: 0px;
}

.gradient {
    background: linear-gradient(90deg, #a855f7, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-img {
    height: 500px;
    align-self: flex-end;
    flex-shrink: 0;
    object-fit: contain;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #FF6B35;
}

.hero p {
    font-size: 18px;
    color: #808080;
    margin-bottom: 32px;
}

.features {
    padding: 64px 48px;
    text-align: center;
    background: white;
}

.features h2 {
    font-size: 35px;
    margin-bottom: 8px;
}

.features p {
    color: #808080;
    max-width: 500px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    text-align: left;
    border: 1.5px solid #E5E7EB;
}

.feature-card i {
    display: block;
    margin-bottom: 16px;
}

.feature-card svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #808080;
    max-width: 550px;
}

.por-que {
    display: flex;
    gap: 64px;
    align-items: center;
    padding: 60px 48px;
    background: linear-gradient(135deg, #f0eeff 0%, #e8fdf5 100%);
}

.por-que-img {
    width: 500px;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 1;
    max-width: 45%;
}

.por-que-contenido h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 20px;
}

.por-que-contenido p {
    color: #808080; 
    margin-bottom: 32px;
    line-height: 1.6;
}

.por-que-list {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.por-que-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.por-que-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.por-que-item p {
    font-size: 15px;
    color: #808080;
    line-height: 1.5;
}

.numero {
    width: 50px;
    height: 50px;
    font-size: 16px;
}

.contacto {
    padding: 45px 48px;
    text-align: center;
    background: white;
}

.contacto h2 {
    font-size: 40px;
    margin-bottom: 8px;
}

.contacto p {
    color: #808080;
    margin-bottom: 32px;
}

.contacto form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 32px auto 0;
    background: white;
}

.contacto input, 
.contacto textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

.contacto textarea {
    height: 120px;
    resize: vertical;
}

.contacto button {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    background: #6f2e98;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 14px;
    cursor: pointer;
    width: 100%;
    margin-top: 4px;
    align-self: flex-end;
    transition: all 0.2s;
}

.contacto button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.icono-morado  { color: #6f2e98; }
.icono-verde   { color: #059669; }
.icono-naranja { color: #d97706; }
.icono-rosa    { color: #ec4899; }