/* PROBLEMS / PROCESS / TESTIMONIALS */
.section {
    padding: 80px 40px;
}

.section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.section p {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 18px;
    line-height: 1.6;
}

/* CARDS */
.card-container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
}

.card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* PROBLEMS SECTION */
.problems-section {
    padding: 80px 40px;
    background: #ffffff;
}

.problems-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.problems-section h2 {
    font-size: 42px;
    color: #5AB9B5;
    margin-bottom: 20px;
    font-weight: bold;
}

.problems-section .lead {
    color: #2B3A42;
    font-size: 20px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #5AB9B5;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.problem-item:nth-child(2) {
    border-top-color: #FFB3D9;
}

.problem-item:nth-child(3) {
    border-top-color: #FFD93D;
}

.problem-item:nth-child(4) {
    border-top-color: #B8A9E8;
}

.problem-item:nth-child(5) {
    border-top-color: #5AB9B5;
}

.problem-item:nth-child(6) {
    border-top-color: #FFB3D9;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.problem-item .check-icon {
    color: #5AB9B5;
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.problem-item h3 {
    font-size: 20px;
    color: #6DB5D8;
    margin-bottom: 10px;
}

.problem-item p {
    color: #2B3A42;
    line-height: 1.6;
}

/* PROCESS SECTION */
.process-section {
    background: #E8F4F8;
    padding: 80px 40px;
    text-align: center;
}

.process-section h2 {
    font-size: 42px;
    color: #5AB9B5;
    margin-bottom: 20px;
    font-weight: bold;
}

.process-section .lead {
    color: #2B3A42;
    font-size: 20px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD93D;
    color: #2B3A42;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.process-step i {
    font-size: 2.5rem;
    color: #6DB5D8;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 24px;
    color: #5AB9B5;
    margin-bottom: 15px;
}

.process-step p {
    color: #2B3A42;
    line-height: 1.6;
}

.process-image {
    text-align: center;
    margin-bottom: 50px;
}

.process-image picture {
    display: inline-block;
    max-width: 100%;
}

.process-image img {
    max-width: 40%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
    overflow: hidden;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #5AB9B5;
    font-weight: 600;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #2B3A42;
    margin-bottom: 40px;
}

/* AUTHOR SECTION */
.testimonials-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.testimonials-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5AB9B5, #6DB5D8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(90, 185, 181, 0.3);
}

.testimonials-author-content {
    text-align: left;
}

.testimonials-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.rating-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5AB9B5;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars .star {
    color: #FFD93D;
    font-size: 1.2rem;
}

.rating-stars .star.half {
    position: relative;
    overflow: hidden;
}

.rating-text {
    font-size: 1rem;
    color: #2B3A42;
}

/* MARQUEE WRAPPER */
.testimonials-marquee-wrapper {
    position: relative;
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    overflow: hidden;
}

.testimonials-marquee-blur {
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, white, transparent);
    z-index: 2;
    top: 0;
}

.testimonials-marquee-blur.is-bottom {
    top: auto;
    bottom: 0;
    background: linear-gradient(to top, white, transparent);
}

/* MARQUEE GROUPS */
.testimonials-marquee-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonials-marquee-column {
    animation: marquee-up 30s linear infinite;
}

.testimonials-marquee-group.is-down .testimonials-marquee-column {
    animation: marquee-down 30s linear infinite;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
    background: #E8F4F8;
    padding: 30px 25px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #5AB9B5;
    transition: transform 0.3s ease;
    text-align: left;
    min-height: 200px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-rating .star {
    color: #FFD93D;
    font-size: 1rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2B3A42;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-author strong {
    font-weight: 600;
    color: #5AB9B5;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #2B3A42;
}

/* ANIMATIONS */
@keyframes marquee-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

@keyframes marquee-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

/* BOTÓN CTA */
.testimonials-cta {
    margin-top: 40px;
    text-align: center;
}

.testimonials-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #FFB3D9;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #FFB3D9;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 179, 217, 0.2);
}

.testimonials-cta-button:hover {
    background: #FFB3D9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 179, 217, 0.3);
}

.testimonials-cta-button svg:last-child {
    transition: transform 0.3s ease;
}

.testimonials-cta-button:hover svg:last-child {
    transform: translate(2px, -2px);
}

/* ANIMATIONS */
@keyframes marquee-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

@keyframes marquee-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

/* ABOUT SECTION */
.about-section {
    background: #E8F4F8;
    padding: 80px 40px;
}

.about-section a,
.about-section button {
    outline: 2px solid transparent;
    transition: outline 0.2s ease;
}

.about-section a:focus,
.about-section button:focus {
    outline: 2px solid #5AB9B5;
    outline-offset: 2px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 42px;
    color: #5AB9B5;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.about-content p {
    color: #2B3A42;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #2B3A42;
    font-size: 16px;
    line-height: 1.5;
}

.about-features li:hover {
    will-change: transform;
}

.about-features li i {
    color: #5AB9B5;
    margin-right: 15px;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}
