/* Reset */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

/* Header */
header {
    background: #4b2e83;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 38px;
    font-weight: 600;
}

header p {
    font-size: 18px;
    margin-top: 12px;
    opacity: 0.9;
}
header p strong {
    font-weight: 600;
}
.cta-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: none;
}
.cta-highlight::after {
    content: "";
    display: block;
    width: 60%;
    height: 2px;
    background: #ffffff;
    margin: 8px auto 0;
    opacity: 0.3;
}
.btn {
    display: inline-block;
    margin-top: 15px;
    background: #ffffff;
    color: #4b2e83;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffffff;
    transition: 0.3s ease;
}

.btn:hover {
    background: transparent;
    color: #ffffff;
}

/* Sections */
section {
    padding: 70px 20px;
    max-width: 1000px;
    margin: auto;
}

h2 {
    color: #4b2e83;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

/* Cards */
.card {
    background: linear-gradient(145deg, #ffffff, #f3f0fb);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 25px;
    border: 2px solid #e6e3f3;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    will-change: transform;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}*/
.card {
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 25px;
    border: 1px solid #ece9f6;
    background: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
/* Alternating subtle background */
.card:nth-child(even) {
    background: #faf9fd;
}
.card.visible {
    opacity: 1;
    transform: translateY(0);
}
.card:hover {
    transform: scale(1.02);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
    border-color: #4b2e83;
}

/* Form */
form input, 
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 14px;
}

form button {
    background: #4b2e83;
    color: white;
    padding: 12px 22px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

form button:hover {
    opacity: 0.9;
}

/* Footer */
footer {
    background: #fafafa;
    color: #666;
    text-align: center;
    padding: 25px;
    border-top: 1px solid #eee;
    font-size: 14px;
}

/* WhatsApp */
.whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    z-index: 9999;
}
.methodology {
    padding: 80px 20px;
    background: #fcfbff;
    text-align: center;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.step {
    max-width: 220px;
    padding: 20px;
}

.step h3 {
    color: #4b2e83;
    margin-bottom: 10px;
}

.arrow {
    font-size: 24px;
    color: #bbb;
}
.process-section {
    padding: 90px 20px;
    text-align: center;
    background: #fcfbff;
}

.process-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.process-box {
    background: #f4f2fb;
    padding: 30px 40px;
    width: 260px;
    color: #4b2e83;
    position: relative;
    clip-path: polygon(
        8% 0%, 
        100% 0%, 
        92% 50%, 
        100% 100%, 
        8% 100%, 
        0% 50%
    );
    transition: 0.3s ease;
}

.process-box h3 {
    margin-bottom: 10px;
}

.process-box p {
    font-size: 14px;
    color: #555;
}

.process-box:hover {
    background: #4b2e83;
    color: white;
}

.process-box:hover p {
    color: #eee;
}
.icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    color: #4b2e83;
}

.icon svg {
    width: 100%;
    height: 100%;
}

.process-box:hover .icon {
    color: white;
}