* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    z-index: 3;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.email-link {
    cursor: pointer;
    color: white;
    text-decoration: none;
}


html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #015a9e;
    text-transform: uppercase;
    display: flex;
}

.logo-image {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #015a9e;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2e96e5;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #25d366;
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #015a9e;
    margin: 3px 0;
    transition: 0.3s;
}


.hero {
    background: linear-gradient(to bottom, #f9fafb, white);
    padding: 8rem 0 0rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.section-divider {
    position: relative;
    width: 100%;
    height: 110px;
    margin-top: -1px;
    z-index: 2;
}

.divider-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 110px;
}

.divider-path {
    fill: white
}


.video-section {
    padding: 2rem 0;
    position: relative;
}

.video-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.video-header h2 {
    color: #015a9e;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.video-header p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.video-container {
    margin-bottom: 3rem;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
    
    width: 100%;
    padding-top: 56.25%; 
}

.main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    border-radius: 16px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(1, 90, 158, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.play-button:hover {
    background: rgba(1, 90, 158, 1);
    transform: scale(1.1);
}

.play-button svg {
    margin-left: 4px;
}

.video-description {
    margin-top: 2rem;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
}

.hero-subtitle {
    color: #015a9e;
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
}

.hero-logo {
    width: 40%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
    display: block;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #005a9e;
    margin-bottom: 1rem;
}


.cards-container {
  max-width: 1200px; 
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem; 
  display: grid;
}

.cards-container > .cta-button-solid {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
}


.cards-grid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 2.5rem; 
}


.card {
  text-align: left; 
  padding: 1.5rem; 
  border-left-width: 4px; 
  border-left-style: solid;
  border-top-right-radius: 0.5rem;    
  border-bottom-right-radius: 0.5rem;
  
}
.card > * + * {
  margin-top: 1rem; 
}


.professor-card {
  border-color: #005a9e; 
  background-color: rgba(239, 246, 255, 0.5); 
}


.diretor-card {
  border-color: #facc15; 
  background-color: rgba(254, 252, 232, 0.5); 
}


.card h3 {
  font-weight: 700; 
  font-size: 1.25rem; 
  color: #005a9e; 
}


.problem-text {
  color: #374151; 
  line-height: 1.625; 
}


.solution-text {
  color: #1f2937; 
  font-weight: 600; 
}



@media (min-width: 768px) {
  .cards-grid {
    
    grid-template-columns: repeat(2, 1fr);
  }
}

.puzzle-pieces {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.puzzle-piece {
    position: relative;
    border-radius: 0.125rem;
}

.puzzle-piece.red {
    background-color: #ef4444;
}

.puzzle-piece.yellow {
    background-color: #facc15;
}

.puzzle-piece.blue {
    background-color: #3b82f6;
}

.puzzle-piece {
    width: 2rem;
    height: 2rem;
}

.puzzle-piece.large {
    width: 3rem;
    height: 3rem;
}

.puzzle-piece.xlarge {
    width: 4rem;
    height: 4rem;
}

.puzzle-piece.xxlarge {
    width: 5rem;
    height: 5rem;
}

.hero-subtitle-main {
    font-size: 2.5rem;
    font-weight: bold;
    color: #005a9e;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    color: #6b7280;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}


.mission {
    background: #005a9e;
    color: white;
    padding-bottom: 4rem ;
    position: relative;
    overflow: hidden;
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.mission-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
}

.mission-cta {
    text-align: center;
}

.mission-puzzle {
    position: absolute;
    bottom: 0;
    left: -140px;
    display: flex;
    overflow: hidden;
}

.mission-puzzle-image {
    width: 400px;
    height: 210px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
}

.team-puzzle-image, .contact-puzzle-image{    
    width: 400px;
    height: 210px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 8px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 1rem;
    border-radius: 0.5rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-marker {
    color: #4ade80;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cta-button {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background: white;
    color: #005a9e;
}


.identification {
    background: #f3f4f6;
    padding: 4rem 0;
}

.identification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.identification-questions h2 {
    color: #005a9e;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;

}

.check-icon {
    color: #015a9e;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.question-item p {
    color: #005a9e;
    font-size: 1.125rem;
}

.identification-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.identification-answer {
    border-radius: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 40px;
    position: relative;
    background: linear-gradient(135deg, rgb(255, 255, 255), rgb(248, 250, 252));
    padding: 3rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(1, 90, 158, 0.1);
    border-image: initial;
    overflow: hidden;
}

.identification-answer::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 4px;
    background: linear-gradient(90deg, rgb(1, 90, 158), rgb(59, 130, 246));
}
.identification-answer p {
    color: #374151;
    font-size: 1.125rem;
    line-height: 1.75;
}

.identification-answer strong {
    color: #005a9e;
}


.team {
    background: #005a9e;
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.team-puzzle, .contact-puzzle {
    position: absolute;
    top: 0;
    right: -40px;
    display: flex;
}


.team-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.team-title h2 {
    font-size: 2rem;
    font-weight: bold;
}

.team-description p {
    font-size: 1.125rem;
    line-height: 1.75;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    border-image: initial;
    transition: 0.3s;
}

.member-photo {
width: 10rem;
    height: 10rem;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 8px 30px;
    margin: 0px auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    transition: 0.3s;
    border-width: 4px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    border-image: initial;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s;
}

.member-photo:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 12px 40px;
}

.member-photo:hover img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.team-member p {
    color: rgba(255, 255, 255, 0.9);
}
.team-member:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 40px;
    background: rgba(255, 255, 255, 0.15);
}


.course-modules {
    background: #f9fafb;
    padding: 4rem 0;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 450px;
    background: white;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    will-change: transform, opacity, visibility;
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    z-index: 3;
    pointer-events: auto;
}

.carousel-slide.prev {
    transform: translateX(-100%);
    opacity: 0.5;
    visibility: hidden;
    z-index: 2;
}

.carousel-slide.next {
    transform: translateX(100%);
    opacity: 0.5;
    visibility: hidden;
    z-index: 2;
}


.carousel-slide.fade-out {
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.carousel-slide.fade-in {
    opacity: 1;
    transition: opacity 0.4s ease-in;
}

.module {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
    position: relative;
    gap: 3rem;
    background: linear-gradient(135deg, rgb(255, 255, 255), rgb(248, 250, 252));
    padding: 3rem;
}

.module::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 4px;
    background: linear-gradient(90deg, rgb(1, 90, 158), rgb(59, 130, 246));
}

.module-number {
    border: 2px solid #015a9e;
    color: #015a9e;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.module-info h3 {
    color: #005a9e;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.instructor {
    color: #015a9e;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.module-topics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.topic {
    border: 2px solid #015a9e;
    color: #005a9e;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.topic:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: rgba(1, 90, 158, 0.3) 0px 8px 25px;
    background: rgb(1, 90, 158);
}

.topic-description {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #005a9e;
    font-size: 0.8rem;
}
.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.carousel-btn {
    color: white;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(1, 90, 158, 0.3) 0px 6px 20px;
    background: linear-gradient(135deg, rgb(1, 90, 158), rgb(59, 130, 246));
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 50%;
    transition: 0.3s;
}

.carousel-btn:hover {
    transform: translateY(-3px);
    box-shadow: rgba(1, 90, 158, 0.4) 0px 10px 30px;
    background: linear-gradient(135deg, rgb(0, 74, 142), rgb(37, 99, 235));
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.indicator {
    width: 14px;
    height: 14px;
    cursor: pointer;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(1, 90, 158);
    border-image: initial;
    background: transparent;
    transition: 0.3s;
}

.indicator.active {
    transform: scale(1.3);
    box-shadow: rgba(1, 90, 158, 0.5) 0px 0px 10px;
    background: rgb(1, 90, 158);
}

.indicator:hover {
    transform: scale(1.2);
    background: rgb(1, 90, 158);
}

.course-title {
    text-align: center;
    font-size: 2.2rem;
    color: #015a9e;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    padding: 0 1rem;
}


@media (max-width: 1024px) {
    .carousel-container {
        max-width: 900px;
        padding: 0 1.5rem;
    }
    
    .module {
        gap: 2rem;
        padding: 2.5rem;
        min-height: 350px;
    }
    
    .module-info h3 {
        font-size: 1.375rem;
    }
    
    .topic {
        font-size: 0.8rem;
        padding: 0.625rem 0.875rem;
    }
}

@media (max-width: 768px) {
    .course-modules {
        padding: 3rem 0;
    }
    
    .carousel-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .carousel-wrapper {
        min-height: 380px;
        border-radius: 0.75rem;
    }
    
    .module {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
        min-height: 300px;
    }
    
    .module-info h3 {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .instructor {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .module-topics {
        gap: 0.5rem;
    }
    
    .topic {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .module-number {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
        text-align: center;
        display: block;
        width: fit-content;
        margin: 0 auto 1rem;
    }
    
    .carousel-navigation {
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    .course-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .course-modules {
        padding: 2rem 0;
    }
    
    .carousel-container {
        padding: 0 0.5rem;
    }
    
    .carousel-wrapper {
        min-height: 380px;
        border-radius: 0.5rem;
    }
    
    .module {
        padding: 1.5rem;
        min-height: 250px;
        gap: 1rem;
    }
    
    .module-info h3 {
        font-size: 1.125rem;
        margin-bottom: 0.375rem;
    }
    
    .instructor {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .module-topics {
        gap: 0.375rem;
    }
    
    .topic {
        font-size: 0.7rem;
        padding: 0.375rem 0.5rem;
        line-height: 1.2;
    }
    
    .module-number {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .carousel-navigation {
        gap: 0.5rem;
        margin-top: 0.75rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .course-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 360px) {
    .carousel-container {
        padding: 0 0.25rem;
    }
    
    .carousel-wrapper {
        min-height: 340px;
    }
    
    .module {
        padding: 1rem;
        min-height: 220px;
    }
    
    .module-info h3 {
        font-size: 1rem;
    }
    
    .instructor {
        font-size: 0.75rem;
    }
    
    .topic {
        font-size: 0.65rem;
        padding: 0.25rem 0.375rem;
    }
    
    .module-number {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .course-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 320px) {
    .module {
        padding: 0.75rem;
        min-height: 200px;
    }
    
    .module-info h3 {
        font-size: 0.9rem;
    }
    
    .topic {
        font-size: 0.6rem;
        padding: 0.2rem 0.3rem;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
    }
    
    .carousel-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .course-title {
        font-size: 1.1rem;
    }
}


.teachers-testimonials {
    background: #005a9e;
    padding: 4rem 0;
    color: white;
}

.teachers-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 3rem;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.teacher-testimonial {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.teacher-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.teacher-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid #015a9e;
}

.teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.teacher-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #015a9e;
    margin-bottom: 0.5rem;
}

.teacher-role {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
}

.teacher-testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #1f2937;
    font-style: italic;
    position: relative;
}

.teacher-testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: #015a9e;
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.teacher-testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: #015a9e;
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .teachers-testimonials h2 {
        font-size: 2rem;
    }
    
    .teachers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .teacher-testimonial {
        padding: 1.5rem;
    }
    
    .teacher-photo {
        width: 100px;
        height: 100px;
    }
}


.investment-white {
    background: white;
    color: #333;
    padding: 4rem 0;
}

.investment-white h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #005a9e;
}

.investment h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 6xl;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.pricing {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    pointer-events: none;
    z-index: -1;
}

.pricing:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.pricing-info p, .payment-methods h3, .payment-methods ul li {
    color: #005a9e;
}

.pricing-info {
    margin-bottom: 2rem;
}

.normal-price {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.normal-price span {
    font-size: 1.5rem;
    font-weight: bold;
}

.offer-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #facc15;
    margin-bottom: 1rem;
}

.savings {
    font-size: 1.125rem;
    font-style: italic;
}

.payment-methods h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.payment-methods ul {
    list-style: none;
}

.payment-methods li {
    margin-bottom: 0.5rem;
}

.bonus-cta {
    display: flex;
    justify-content: center;
}

.bonuses h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.bonuses ul {
    list-style: none;
}

.bonuses li {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.investment-cta {
    text-align: center;
}

.cta-button-solid {
    background: linear-gradient(135deg, #005a9e, #0073cc);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 90, 158, 0.3);
}

.cta-button-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button-solid:hover {
    background: linear-gradient(135deg, #0073cc, #005a9e);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 90, 158, 0.4);
}

.cta-button-solid:hover::before {
    left: 100%;
    animation: button-shine 0.6s ease;
}

@keyframes button-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.cta-button-outline:hover {
    background: white;
    color: #005a9e;
}


.investment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.investment-card {
    background: rgba(230, 243, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 90, 158, 0.15);
    box-shadow: 0 8px 25px rgba(0, 90, 158, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(0, 90, 158, 0.1));
    border-radius: 20px;
    z-index: -1;
}

.investment-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.investment-card:hover::after {
    opacity: 1;
    animation: shine 1.5s ease-in-out infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.investment-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 90, 158, 0.2);
    border: 1px solid rgba(0, 90, 158, 0.25);
    background: rgba(240, 248, 255, 0.7);
}

.investment-card:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(0, 90, 158, 0.15));
}

.investment-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.investment-card-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #005a9e;
    text-align: center;
}

.investment-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.investment-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.3rem;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.investment-card:hover .original-price {
    color: #ff6b6b;
    transform: scale(0.95);
}

.offer-price-container {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
}

.price-circle {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.price-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.investment-card:hover .price-circle {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.investment-card:hover .price-circle::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.price-text {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 1.3rem;
    font-weight: bold;
}

.cash-price {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
}

.investment-logo {
    text-align: center;
    margin-top: auto;
    margin-bottom: 1rem;
}

.investment-logo-image {
    width: 5rem;
    height: auto;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.investment-card:hover .investment-logo-image {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 90, 158, 0.3));
}

.investment-logo-text {
    font-size: 0.8rem;
    font-weight: bold;
    color: #005a9e;
}

.investment-card-cta {
    margin-top: auto;
}

.investment-bonuses {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin: 0 auto 2rem;
    max-width: 600px;
    text-align: center;
}

.investment-bonuses h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.investment-bonuses ul {
    list-style: none;
}

.investment-bonuses li {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.investment-timer {
    text-align: center;
    margin-top: 2rem;
}

.timer-message {
    font-size: 1.25rem;
    margin-right: 1rem;
}

.timer-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #facc15;
}


@media (max-width: 768px) {
    .investment-white h2 {
        font-size: 2rem;
    }
    
    .investment-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .investment-card {
        min-height: 350px;
        padding: 1.5rem;
    }
    
    .investment-card-subtitle {
        font-size: 1.1rem;
    }
    
    .price-circle {
        width: 100px;
        height: 100px;
    }
    
    .price-value {
        font-size: 1.3rem;
    }
    
    .cta-button-solid {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    .bonuses-section h2 {
        font-size: 2rem;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-item {
        padding: 1.5rem;
    }
    
    .bonus-icon {
        font-size: 2.5rem;
    }
}


.faq {
    background: #f3f4f6;
    padding: 4rem 0;
}

.faq h2 {
    color: #005a9e;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 4xl;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid rgb(1, 90, 158);
}

.faq-item h3 {
    color: #005a9e;
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #374151;
    line-height: 1.75;
}


.contact {
    background: #005a9e;
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.contact-puzzle {
    position: absolute;
    top: 0rem;
    right: -38px;
    display: flex;
}

.contact-puzzle-image{
    width: 400px!important;
    height: 240px!important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-brand {
    margin-bottom: 8rem;
}

.brand-text {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.brand-values {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-details h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: .5rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.social-media {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-media h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    background: white;
    color: #005a9e!important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}
.social-icon a{
    color: #005a9e!important;
}

.social-icon:hover {
    transform: scale(1.1);
}

.contact-image {
    display: flex;
    justify-content: center;
}

.contact-photo {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1d5db, #9ca3af);
}
.contact-photo-container {
    position: relative;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.contact-photo-svg {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}


.teachers-testimonials {
    padding: 4rem 0;
}

.teachers-testimonials .course-switch {
    text-align: center;
    margin-bottom: 3rem;
}


.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-carousel .carousel-wrapper {
    position: relative;
    overflow: hidden;
    background: none !important;
    box-shadow: none !important;
    
    display: flex;
    width: 100%;
}


.testimonials-carousel .carousel-slide {
    position: absolute;  
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);  
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);  
    visibility: hidden;
    will-change: transform, opacity, visibility;
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
    display: flex;  
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;  
    padding: 20px;  
}
.testimonials-carousel .carousel-slide.active {
    opacity: 1;
    transform: translateX(0);  
    visibility: visible;
    z-index: 3;
    pointer-events: auto;
}

.testimonials-carousel .carousel-slide.prev {
    transform: translateX(-100%);  
    opacity: 0.5;
    visibility: hidden;
    z-index: 2;
}

.testimonials-carousel .carousel-slide.next {
    transform: translateX(100%);  
    opacity: 0.5;
    visibility: hidden;
    z-index: 2;
}




.testimonials-carousel .testimonial {
    flex: 0 0 calc(33.333% - 14px);
    padding: 0;
    max-width: calc(33.333% - 14px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonials-carousel .testimonial::before {
    height: 0px;
    display: none!important;
}

.testimonials-carousel .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonials-carousel .testimonial-video {
    position: relative;
    width: 100%;
}

.testimonials-carousel .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; 
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.testimonials-carousel .testimonial-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-carousel .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.testimonials-carousel .video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.testimonials-carousel .play-button {
    width: 60px;
    height: 60px;
    background: rgba(1, 90, 158, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.testimonials-carousel .play-button:hover {
    background: rgba(1, 90, 158, 1);
    transform: scale(1.1);
}

.testimonials-carousel .play-button svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.testimonials-carousel .testimonial-info {
    padding: 1.5rem;
    text-align: center;
}

.testimonials-carousel .testimonial-info h3 {
    color: #015a9e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonials-carousel .testimonial-info p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}


.testimonials-carousel .carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}


.testimonials-carousel .indicator {
    border-color: rgb(129 200 255);
}

.testimonials-carousel .indicator.active {
    box-shadow: rgb(178 222 255 / 50%) 0px 0px 10px;
    background: rgb(217 238 255);
}

.testimonials-carousel .indicator:hover {
    background: rgb(48 166 255)
}


@media (max-width: 1024px) {
    .testimonials-carousel .testimonial {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .testimonials-carousel .testimonial-video {
        height: 200px;
    }
    
    .testimonials-carousel .testimonial-name {
        font-size: 14px;
    }
    
    .testimonials-carousel .testimonial-description {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 0 15px;
    }
    
    .testimonials-carousel .carousel-wrapper {
        margin: 0;
    }
    
    .testimonials-carousel .carousel-slide {
        padding: 0;
    }
    
    .testimonials-carousel .carousel-slide.active {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .testimonials-carousel .testimonial {
        flex: 0 0 100%;
        max-width: 400px; 
        width: 100%;
    }
    
    .testimonials-carousel .testimonial-video {
        height: 250px;
    }
    
    .testimonials-carousel .carousel-navigation {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .testimonials-carousel .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel .testimonial {
        max-width: 100%; 
    }
    
    .testimonials-carousel .testimonial-video {
        height: 200px;
    }
    
    .testimonials-carousel .play-button {
        width: 50px;
        height: 50px;
    }
    
    .testimonials-carousel .play-button svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonials-carousel .testimonial-info h3 {
        font-size: 1.1rem;
    }
    
    .testimonials-carousel .testimonial-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel .play-button {
        width: 50px;
        height: 50px;
    }
    
    .testimonials-carousel .play-button svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonials-carousel .testimonial-info h3 {
        font-size: 1.1rem;
    }
    
    .testimonials-carousel .testimonial-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .video-section {
        padding: 3rem 0;
    }
    
    .video-header h2 {
        font-size: 2rem;
    }
    
    .video-header p {
        font-size: 1rem;
    }
    
    .video-wrapper {
        max-width: 100%;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-features {
        gap: 2rem;
    }
    
    .feature-item {
        min-width: 100px;
    }
    .hero-logo{
        width: 100%;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mission-content,
    .identification-content,
    .team-intro,
    .investment-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-members {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .module {
        grid-template-columns: 1fr;
    }
    
    .member-photo {
        width: 8rem;
        height: 8rem;
    }
    
    .contact-photo {
        width: 15rem;
        height: 15rem;
    }
    
    .puzzle-piece.xlarge {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .puzzle-piece.xxlarge {
        width: 3rem;
        height: 3rem;
    }
    
    
    .mission-puzzle {
        position: absolute;
        left: -90px;
        bottom: 0;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .mission-puzzle-image {
        width: 300px;
        height: 158px;
    }
    
    .team-puzzle {
        position: absolute;
        right: -30px;
        top: 0;
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .team-puzzle-image {
        width: 300px;
        height: 158px;
    }
    
    .contact-puzzle {
        position: absolute;
        right: -40px;
        top: 0;
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .contact-puzzle-image {
        width: 300px !important;
        height: 180px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .video-section {
        padding: 2rem 0;
    }
    
    .video-header h2 {
        font-size: 1.8rem;
    }
    
    .video-header p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button svg {
        width: 24px;
        height: 24px;
    }
    
    .video-features {
        gap: 1.5rem;
    }
    
    .feature-item {
        min-width: 80px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .member-photo {
        width: 6rem;
        height: 6rem;
    }
    
    .contact-photo {
        width: 12rem;
        height: 12rem;
    }
    
    
    .carousel-container {
        padding: 0 15px;
    }
    
    .module {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .module-info h3 {
        font-size: 1.25rem;
    }
    
    .carousel-navigation {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    
    .mission-puzzle-image {
        width: 250px;
        height: 132px;
    }
    
    .team-puzzle-image {
        width: 250px;
        height: 132px;
    }
    
    .contact-puzzle-image {
        width: 250px !important;
        height: 150px !important;
    }
}

@media (max-width: 360px) {
    
    .mission-puzzle-image {
        width: 200px;
        height: 105px;
    }
    
    .team-puzzle-image {
        width: 200px;
        height: 105px;
    }
    
    .contact-puzzle-image {
        width: 200px !important;
        height: 120px !important;
    }
}
.course-title {
    text-align: center;
    font-size: 2.2rem;
    color: #015a9e;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}


.investment-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #005a9e;
    padding: 14px 22px;
    font-size: 1.2rem;
    font-weight: bold;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
}


.bonuses-section {
    background: #005a9e;
    color: white;
    padding: 4rem 0;
}

.bonuses-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.bonus-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.bonus-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.timer-message {
    color: #ffffff;
    font-weight: 600;
}

.timer-value {
    font-size: 2rem;
    font-family: 'Courier New', Courier, monospace;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 8px;
    margin: 0 8px;
    letter-spacing: 2px;
    font-weight: bold;
    border: 2px solid #ffffff;
}

@media (max-width: 600px) {
    .investment-timer {
        flex-direction: column;
        font-size: 1rem;
        padding: 10px 6px;
    }
    .timer-value {
        font-size: 1.2rem;
        padding: 3px 8px;
    }
}


.course-switch {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.course-switch::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    background: linear-gradient(135deg, rgb(1, 90, 158), rgb(59, 130, 246));
    border-radius: 25px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.course-switch.switched::before {
    transform: translateX(100%);
}

.teachers-testimonials > .course-switch {
    background: linear-gradient(135deg, rgb(46, 92, 167), rgb(59, 130, 246));
}

.teachers-testimonials > .course-switch::before {
    background: white;
}

.teachers-testimonials > .course-switch > .switch-btn {
    color: rgb(46, 92, 167)!important
}

.switch-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.switch-btn {
    color: white;
}

.switch-btn:hover:not(.active) {
    color: #015a9e;
}


.testimonials-carousel.active {
    display: block;
}

.modules-carousel {
    display: none;
}

.modules-carousel.active {
    display: block;
}


.testimonial {
    display: flex;
    align-items: center;
    min-height: 400px;
    gap: 1rem;
    background: linear-gradient(135deg, rgb(255, 255, 255), rgb(248, 250, 252));
    padding: 3rem;
    position: relative;
    flex-direction: column;
}

.testimonial::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 4px;
    background: linear-gradient(90deg, rgb(1, 90, 158), rgb(59, 130, 246));
}

.testimonial-video {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
}

.testimonial-video .video-wrapper {
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

.testimonial-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

.testimonial-info {
    text-align: center;
}

.testimonial-info h3 {
    color: #015a9e;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.testimonial-info p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.customer-rights {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #005a9e;
    text-align: justify;
}


@media (max-width: 768px) {
    .course-switch {
        max-width: 350px;
        padding: 0.4rem;
    }
    
    .switch-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .testimonial {
        gap: 2rem;
        padding: 2rem;
    }
    
    .testimonial-video .video-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .course-switch {
        max-width: 300px;
        padding: 0.3rem;
    }
    
    .switch-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .testimonial {
        padding: 1.5rem;
        min-height: 350px;
    }
    
    .testimonial-info h3 {
        font-size: 1.3rem;
    }
    
    .testimonial-info p {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .course-switch {
        max-width: 280px;
    }
    
    .switch-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .testimonial {
        padding: 1rem;
        min-height: 300px;
    }
    
    .testimonial-info h3 {
        font-size: 1.2rem;
    }
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #30f77a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}


@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}

/* Floating CTA Button Mobile */
.cta-float-mobile {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #005a9e, #0073cc);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 90, 158, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    white-space: nowrap;
    animation: cta-pulse 2s infinite;
    display: none;
}

.cta-float-mobile:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 90, 158, 0.5);
    background: linear-gradient(135deg, #0073cc, #005a9e);
}

@keyframes cta-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 90, 158, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 90, 158, 0.8);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 90, 158, 0.4);
    }
}

/* Show mobile CTA button only on mobile devices */
@media (max-width: 768px) {
    .cta-float-mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .cta-float-mobile {
        bottom: 15px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .cta-float-mobile {
        bottom: 20px;
        padding: 10px 18px;
        font-size: 13px;
    }
}


@media (max-width: 768px) {
    .section-divider {
        height: 80px;
    }
    
    .divider-svg {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .section-divider {
        height: 60px;
    }
    
    .divider-svg {
        height: 60px;
    }
}


.wavy-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.wavy-line {
    position: absolute;
    width: 120%;
    height: 300px;
    opacity: 0.4;
}

.line-1 {
    top: 15%;
    left: -10%;
    transform: rotate(-3deg);
    opacity: 0.6;
}

.line-2 {
    top: 45%;
    left: -5%;
    transform: rotate(2deg);
    opacity: 0.4;
}

.line-3 {
    top: 70%;
    left: -8%;
    transform: rotate(-1.5deg);
    opacity: 0
}


.video-section {
    position: relative;
    z-index: 2;
}


.video-wrapper::before,
.video-wrapper::after {
    content: '';
    position: absolute;
    top: -15px;
    bottom: -15px;
    width: 30px;
    background: linear-gradient(to bottom, transparent 0%, rgba(1, 90, 158, 0.15) 50%, transparent 100%);
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
}

.video-wrapper::before {
    left: -15px;
    transform: rotate(-3deg);
}

.video-wrapper::after {
    right: -15px;
    transform: rotate(3deg);
}


@media (max-width: 768px) {
    .wavy-lines {
        height: 300px;
        top: 27rem;
    }
    
    .wavy-line {
        height: 150px;
    }
    
    .line-1 {
        top: 15%;
    }
    
    .line-2 {
        top: 35%;
    }
    
    .line-3 {
        top: 55%;
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .wavy-lines {
        height: 250px;
        top: 25rem;
    }
    
    .wavy-line {
        height: 120px;
    }
    
    .line-1 {
        top: 10%;
    }
    
    .line-2 {
        top: 30%;
    }
    
    .line-3 {
        top: 50%;
        opacity: 0.5;
    }
}


.contact {
    background: linear-gradient(135deg, #015a9e 0%, #2e96e5 100%);
    background-image: url('../img/back-desk.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    padding: 6.5rem 0;
    position: relative;
    overflow: hidden;
}


@media (max-width: 1024px) {
    .contact {
        background-image: url('../img/back-mobile.png');
    }
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 90, 158, 0.3) 0%, rgba(46, 150, 229, 0.3) 100%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    gap: 3rem;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-direction: column;
    margin-right: 3rem;
}

.contact-info {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.contact-item p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
}

.social-media {
    margin-top: 2rem;
}

.social-media h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-puzzle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-puzzle-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.customer-rights {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    line-height: 1.6;
}

.customer-rights p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.customer-rights strong {
    color: white;
    font-weight: 600;
}


@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-right: 0;
        align-items: center;
    }
    
    .contact-details h2 {
        font-size: 2rem;
    }
    
    .contact-puzzle-image {
        max-width: 200px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .customer-rights {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-details h2 {
        font-size: 1.8rem;
    }
    .contact-item  {
        align-items: center!important;
    }
    .contact-item p {
        font-size: 1rem;
    }
    
    .cards-container > .cta-button-solid {
    width: 100%;
    }
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .customer-rights {
        padding: 1rem;
    }
}