* *::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary-color: #0024AA;
    --secondary-color: rgb(239, 123, 28);
    --background-color: #fff;
    --section-divider: #dfe3e8;
    --accent-color: #5900FF;

    --titles: "Montserrat", sans-serif;
    --text: "Manrope", sans-serif;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--background-color);
    color: #222;
    line-height: 1.6;
}

/* KICKERS */ 
.video-section-kicker,
.values-kicker,
.staff-kicker,
.offers-kicker,
.testimonials-kicker,
.faq-kicker {
    text-align: center;
    font-family: var(--text);
    font-size: 1rem;
    font-weight: bold;
    font-style: italic;
    text-transform: none;
    letter-spacing: 3px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.4rem;
}

/* TITLES */
.video-section-title {
    text-align: center;
    font-size: 4.2rem;
    font-family: var(--titles);
    font-style: italic;
    font-weight: bold;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.1;
} 

.section-title, 
.staff-header-global h2, 
.offers-title {
    text-align: center;
    font-family: var(--titles);
    font-size: 2.2rem;
    font-weight: bold;
    font-style: italic;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.coaching-text h2 {
    font-family: var(--titles);
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    text-align: left;
    max-width: 650px;
}

/* 1. HEADER */
.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

header {
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* 1.1 Header Logo */
.logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* 1.2 Header Slogan*/
.slogan {
    grid-column: 2;
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-family: "Cookie";
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
    position: relative;
    padding: 0.2rem 0 0.5rem 0;
    display: inline-block;
    z-index: 1;
    text-align: center;
}

/* 1.3 Header Socials */
.header-socials {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.header-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-socials img {
    width: 35px;
    height: 35px;
}

/* 2. MAIN */
main {
    max-width: 1200px;
    margin: 0.5rem auto;
    padding: 0.5rem;
}

main section {
    margin-bottom: 0.5rem;
}

/* 2.1. Video Section */
.video-section {
    padding: 2rem;
    border-bottom: 1px solid var(--section-divider);
    background: var(--background-color);
}

.video-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin: 0 auto;
}

/* 2.1.1 Video Section Text */
.video-text {
    flex: 1;
}

.video-section-title span {
    color: var(--secondary-color);
}

.video-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: var(--text);
    color: #1a1a1a;
    margin-bottom: 1.3rem;
    text-align: justify;
}

.video-text p .text-highlight {
    color: var(--primary-color);
    font-weight: bold;
    font-style: italic;
}

.btn-catalog-session {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--text);
    font-weight: bold;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    margin: 0 auto;
    text-decoration: none;
}

.btn-catalog-session:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(239, 123, 28, 0.4);
}

/* 2.1.2 Institutional video */
.video-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.2rem;
}

.video-wrapper video {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.video-wrapper video:hover {
    transform: scale(1.02);
}

/* 2.2 Mission-Vision-Values */
.values-section {
    padding: 3rem 2rem;
    text-align: center;
    background: #eef8ff;
    border-top: 1px solid var(--section-divider);
    border-bottom: 1px solid var(--section-divider);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.values-wide-card {
    grid-column: 1 / -1;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 0;
    width: 100%;
    text-align: left;
}

.values-list li {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding-right: 2rem;
    font-family: var(--text);
    font-size: 1.05rem;
    line-height: 1.5;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    transition: color 0.3s ease;
}

.values-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    text-align: justify;
    position: relative;
    overflow: hidden;

    transition:
        transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.3s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: background-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(0, 36, 170, 0.25);
    box-shadow: 0 20px 40px rgba(0, 36, 170, 0.12);
}

.value-card:hover::before {
    background: var(--secondary-color);
}

.value-card:hover .card-icon-header i {
    transform: scale(1.1);
    background: var(--secondary-color);
    color: #ffffff;
}

.value-card:hover .values-list li i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.value-card:hover .values-list li {
    color: #1a1a1a;
}

.card-icon-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(0, 36, 170, 0.06);

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.value-card h3 {
    font-family: var(--titles);
    font-size: 1.4rem;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 1px;
}

.value-card p {
    font-family: var(--text);
    line-height: 1.6;
    font-size: 1.05rem;
    color: #4b5563;
    margin: 0;
}

/*2.3. Staff Section */
.staff-section {
    padding: 3rem 2rem;
    background-color: #ffffff;
    margin: 0 auto;
    border-top: 1px solid var(--section-divider);
}

.staff-header-global {
    text-align: center;
    margin-bottom: 2.5rem;
    width: 100%;
}

.carousel {
    position: relative;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: all;
    position: relative;
}

.carousel-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

/* 2.3.1 Staff Text */
.staff-text {
    flex: 1;
    max-width: 40%;
    text-align: center;
}

.staff-text h3 {
    font-size: 1.4rem;
    font-family: var(--titles);
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.staff-address {
    font-size: 0.95rem;
    font-family: var(--text);
    color: #4b5563;
    margin: 0;
}

.staff-text p {
    font-size: 1rem;
    line-height: 1.4;
    font-family: var(--text);
    text-align: center;
}

.staff-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1.2rem 0 2rem;
}

.staff-socials a {
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.staff-socials a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 15px rgba(4, 0, 255, 0.788);
}

/* 2.3.2 Staff Founder */
.staff-founder-wrapper {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.staff-member.founder .avatar-holder img {
    border-color: var(--secondary-color);
    max-width: 140px;
}

.founder-role {
    font-family: var(--text);
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.founder-name {
    font-size: 1.1rem !important;
    font-weight: bold;
    color: #1a1a1a !important;
}

/* 2.3.3 Staff Pictures */
.staff-members {
    flex: 1.3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    justify-items: center;
    margin: 1.5rem;
}

.staff-member {
    text-align: center;
    width: 100%;
}

.avatar-holder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.8rem;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.avatar-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.staff-member:hover .avatar-holder {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

.staff-member:hover .avatar-holder img {
    transform: scale(1.08);
}

.staff-member p {
    font-size: 0.95rem;
    font-family: var(--text);
    font-weight: 500;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.3;
}

/* 2.3.4 Bullets */
.carousel-bullets {
    text-align: center;
    margin-top: 1rem;
}

.carousel-bullets .bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.carousel-bullets .bullet.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* 2.3.5 Staff Section Mobile */
.staff-section {
    display: block;
}

.staff-section-mobile {
    display: none;
}

/* 2.3.6 Coaching CTA Section */
.coaching-section {
    padding: 2rem;
    max-width: 1200px;
    background:#eef8ff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.coaching-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 1.2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.coaching-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.coaching-text .coaching-kicker {
    font-family: var(--text);
    font-size: 1rem;
    font-weight: bold;
    text-transform: none;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.coaching-text p {
    font-family: var(--text);
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2.4. Academic Programs */
.offers-section {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid var(--section-divider); 
    border-bottom: 1px solid var(--section-divider);
}

.offers-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap
}

/* 2.4.1 Coloured headers */
.offer-block {
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 480px;
    box-sizing: border-box;
    border-radius: 15px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.offer-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 38px rgba(26, 26, 26, 0.15);
}

.offer-block:has(.offer-card.carrera) .btn-apply-degree {
    background-color: var(--secondary-color);
    box-shadow: none;
}

.offer-block:has(.offer-card.carrera) .btn-apply-degree:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(239, 123, 28, 0.30);
}

.offer-block:has(.offer-card.postitulo) .btn-apply-degree {
    background-color: var(--primary-color);
    box-shadow: none;
}

.offer-block:has(.offer-card.postitulo) .btn-apply-degree:hover {
    background-color: var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(17, 0, 255, 0.30);
}

.offer-card.carrera {
    background: var(--secondary-color);
}

.offer-card.postitulo {
    background: var(--primary-color);
}

/* 2.4.2 Card Info */
.offer-card {
    height: auto;
    min-height: 80px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--titles);
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    padding: 1rem 0;
}

.offer-card:hover {
    transform: scale(1.05);
}

.offer-card h3 {
    letter-spacing: 1.5px;
    margin: 0;
    font-size: 1rem;
    font-style: italic;
    text-align: center;
    padding: 0 10px;
    line-height: 1.3;
}

.offer-card::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.offer-info {
    flex-grow: 1;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-top: none;
    color: #1a1a1a;
    padding: 1.5rem 1.2rem 1.5rem;
    text-align: left;
    border-radius: 0 0 15px 15px;
    font-family: var(--text);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.offer-info p {
    margin: 0;
    padding: 0.3rem 0;
}

.offer-info p:first-of-type {
    text-align: center;
    font-weight: bold;
    color: var(--accent-color);
}

.highlight-inline {
    color: var(--secondary-color);
    font-weight: bold;
}

.highlight-inline-alt {
    color: var(--primary-color);
    font-weight: bold;
}

.coming-soon-text {
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    color: var(--primary-color) !important;
    font-size: 1.1rem;
    padding: 1.5rem 0;
}

/* 2.4.3 Buttons */
.offer-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
}

.offer-buttons button,
.offer-buttons a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem;
    font-size: 0.9rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--text);
    font-weight: bold;
    margin: 5px;
    text-align: center;
    text-decoration: none;
}

.btn-download {
    background: #f4f4f5;
    color: #4b5563;
}

.btn-download:hover {
    transform: scale(1.02);
}

.offer-block:has(.offer-card.carrera) .btn-download {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: none;
}

.offer-block:has(.offer-card.carrera) .btn-download:hover {
    background-color: var(--secondary-color);
    box-shadow: 0 6px 14px rgba(239, 123, 28, 0.30);
}

.offer-block:has(.offer-card.postitulo) .btn-download {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.offer-block:has(.offer-card.postitulo) .btn-download:hover {
    background-color: var(--primary-color);
    box-shadow: 0 6px 14px rgba(17, 0, 255, 0.30);
}

.btn-apply-degree {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(239, 123, 28, 0.15);
}

.btn-apply-degree:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(239, 123, 28, 0.3);
}

.btn-apply-post:hover {
    background-color: var(--accent-color);
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(89, 0, 255, 0.3);
}

.btn-apply-course:hover {
    background: #8a7c7ca6;
}

.disabled-btn,
.disabled-btn:hover {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
    pointer-events: none !important;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #1a1a1a;
    line-height: 1.5;
    min-height: 28px;
}

.offer-list li strong {
    font-weight: 700;
    min-width: 80px;
}

.offer-list li span:last-child {
    flex: 1;
}

.offer-list .check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
    flex-shrink: 0;
}

.offer-list .check::after {
    content: "✓";
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.btn-apply-degree,
.btn-download {
    text-decoration: none;
}

/* 2.5. TESTIMONIALS */
.testimonials-section {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #eef8ff;
    border-top: 1px solid var(--section-divider); 
    border-bottom: 1px solid var(--section-divider);
}

.testimonials-fade {
    max-width: 1250px; 
    width: 95%;        
    margin: 3rem auto 0 auto;
}

.testimonial {
    display: none; 
}

.testimonial.active {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #ffffff;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.testimonial-image {
    flex-basis: 30%;
    flex-shrink: 0;
    margin: 0; 
}

.testimonial-image img {
    width: 100%;          
    height: 100%;
    object-fit: cover;
    border-radius: 0;     
    border: none;         
}

.testimonial-content {
    flex-basis: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding: 3.5rem 4rem;
}

.testimonial-content p {
    font-family: var(--text);
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.2rem;
    font-style: italic;
    text-align: justify;
}

.testimonial-content strong {
    font-size: 1.1rem;
    color: #2d3748;
    font-family: var(--titles);
}

.testimonial-content span {
    font-size: 0.95rem;
    color: #718096;
    margin-top: 0.2rem;
    font-family: var(--text);
}

.testimonial-content strong,
.testimonial-content span {
    display: block;
    width: 100%;
    text-align: left;
    font-weight: 500;
    color: black;
}

/* 2.6 FAQ */
.faq-section {
    padding: 3rem 2rem;
    text-align: center;
    background:#ffffff;
    border-top: 1px solid #e5e7eb;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    transition:
        transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 102, 0, 0.2);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.08);
}

.faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: background-color 0.3s ease;
}

.faq-item:hover::before {
    background: var(--secondary-color);
}

.faq-question {
    width: 100%;
    border: none;
    background: #ffffff;
    padding: 1.3rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-family: var(--titles);
    font-size: 1.05rem;
    font-weight: bold;
    color: #1a1a1a;
}

.faq-question span i {
    font-size: 1.3rem;
    color: var(--primary-color);
    background: rgba(0, 36, 170, 0.06);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.faq-question > i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    text-align: left;
    font-family: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    color: black;
}

.faq-answer p {
    margin: 0;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1.2rem;
    margin: 0;
}

.faq-answer li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.faq-answer li i {
    flex-shrink: 0;
    margin-top: 0.3rem;
}

/* 3. FOOTER */
footer {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    font-family: var(--text);
}

.footer-info {
    text-align: left;
}

p {
    margin: 0.3rem;
}

.footer-info a,
.footer-info a:visited {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
}

.footer-info a:hover {
    color: var(--primary-color);
}

.footer-images {
    display: flex;
    gap: 1.5rem;
}

.footer-images img {
    height: 90px;
    width: auto;
}

/* 4. BACK TO TOP */
.custom-top-btn {
    width: 30px;
    height: 30px;

    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-top-btn:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    background-color: #1322f3e8;
}

/* 5. WHATSAPP BUTTON */
.wsp-float-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);

    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wsp-float-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    background-color: #20ba5a;
}

.floating-actions {
    position: fixed;
    right: 30px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

body.footer-visible .floating-actions {
    position: absolute;
    bottom: 120px;
}