/* Variables globales */
:root {
    --primary-color: #f79630;
    --secondary-color: #f79630;
    --text-color: #2b2d42;
    --light-text: #eee;
    --white: #fff;
    --light-bg: #f8f9fa;
    --dark-bg: #2b2d42;
    --green-btn: #f79630;
    --dark-blue: #2b2d42;
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--green-btn);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--green-btn);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: #e58520;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #1d181b;
    padding: 25px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    margin: auto 60%;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--green-btn);
}

.btn-sign-in {
    background: var(--green-btn);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-sign-in:hover {
    background: #e58520;
    color: var(--white);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    padding: 160px 0 250px;
    background-image: url('../images/GWO-EASTAV-BANNER.jpg');
    background-size: cover;
    background-position: top;
    position: relative;
    overflow: hidden;
    height: 90vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #1a1a2e;
    position: relative;
    z-index: 10;
    margin-top: -260px;
}

.hero-text {
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.hero-text h2, strong {
    color: #fff;
}

.hero-image {
    width: 70%;
    max-width: 800px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Testimonial Section with Videos */
.testimonial-section {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.testimonial-title {
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.testimonial-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;
}

.testimonial-divider {
    width: 80px;
    height: 4px;
    background: #f79630;
    margin: 10px auto 30px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-item {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    position: relative;
}

.testimonial-video {
    background-color: #f79630;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-video iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
    display: block;
}

.testimonial-bubble-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #f79630;
    position: absolute;
    bottom: 80px;
    left: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    text-align: left;
    margin-left: 30px;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin: 0;
    color: #1a1a2e;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-author-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

.testimonial-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav-dot.active {
    background-color: #333;
}

/* Illustration Section */
.illustration-section {
    background-color: #000000;
    padding: 80px 0;
    overflow: hidden;
    margin-top: 24px;
}

.illustration-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.illustration-image {
    width: 55%;
    position: relative;
}

.illustration-image-irata {
    margin-top: 24px;
}

.illustration-text {
    width: 40%;
}

.orange-tag {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.illustration-title {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.illustration-text p {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.get-started-btn {
    background: #f79630;
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.get-started-btn:hover {
    background: #e58520;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 150, 48, 0.3);
}

/* Footer */
footer {
    background-color: #000000;
    color: #fff;
    padding: 0 0 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-nav-menu a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-nav-menu a:hover {
    color: #f79630;
}

.footer-logo {
    text-align: center;
    padding: 30px 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #f79630;
    border-color: #f79630;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

.contact-info div {
    display: flex;
   
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Carrusel */
.carousel-container {
    max-width: 533px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-main {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-main img {
    width: 100%;
    object-fit: initial;
    display: block;
}

.carousel-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.carousel-text h3 {
    margin-bottom: 8px;
    font-size: 20px;
    color: #f79630;
}

.carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    width: 100px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail.active {
    border-color: #f79630;
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background-color: rgba(247, 150, 48, 0.8);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header .title-divider {
    width: 80px;
    height: 4px;
    background: #f79630;
    margin: 10px auto 20px;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

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

.feature-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrap {
    width: 100px;
    height: 100px;
    background: #333333;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon {
    color: white;
    font-size: 24px;
    margin-top: -5px;
    margin-left: -5px;
}

.feature-content {
    padding: 0 20px;
}

.feature-content h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.read-more {
    color: #f79630;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #e58520;
    padding-left: 5px;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(247, 150, 48, 0.1);
    z-index: 0;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
}

/* Schedule Section */
.schedule-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.schedule-title {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.schedule-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.schedule-title .divider {
    width: 80px;
    height: 4px;
    background: #f79630;
    margin: 0 auto 20px;
}

.schedule-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.schedule-card {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(247, 150, 48, 0.1) 50%);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.schedule-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.course-date {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.course-date i {
    color: #f79630;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
}

.course-date-text {
    flex: 1;
}

.course-date-text p {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.reserve-btn {
    display: inline-block;
    background: #f79630;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-decoration: none;
    text-align: center;
}

.reserve-btn:hover {
    background: #e58520;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 150, 48, 0.3);
}

.calendar-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    margin-top: 2px;
}

/* Button Section */
.button-section {
    padding: 30px 0;
    text-align: center;
    background-color: #ffffff;
    margin-top: -64px;
    margin-bottom: 64px;
    position: relative;
    z-index: 9999;
}

.button-section.secondary {
    margin-top: -80px;
    margin-bottom: 60px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button-section .btn-outline {
    border: 2px solid #3d3d3d;
    color: #3d3d3d;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #ececec;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-form {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 40px;
}

.contact-info {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 40px;
    background-color: #f8f9fa;
    position: relative;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Required field styles */
.form-label::after {
    content: ' *';
    color: #f79630;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 150, 48, 0.1);
}

.form-control:required {
    border-left: 3px solid #f79630;
}

.form-control:required:valid {
    border-left: 3px solid #00b873;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn:hover {
    background: #131414;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 208, 132, 0.3);
}

.info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 30px;
}


.info-block h4 {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.info-block h4 i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.info-icon {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 16px;
}

.info-text {
    flex: 1;
    line-height: 1.5;
}

.info-text a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.map-wrapper {
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.privacy-note {
    font-size: 13px;
    color: #888;
    margin-top: 20px;
}

/* Decorative elements */
.circle-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 208, 132, 0.05);
    z-index: 0;
}

.circle-1 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: -50px;
}

.circle-2 {
    width: 100px;
    height: 100px;
    top: 50px;
    right: -30px;
}

/* Country phone code dropdown styling */
.phone-input-container {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 30%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.phone-number {
    width: 70%;
}

/* Success message styling */
.success-message {
    display: none;
    background-color: rgba(0, 208, 132, 0.1);
    color: #00b873;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* Icon styles */
.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: var(--primary-color);
}

/* Cookie Consent Styles */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(43, 45, 66, 0.95);
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

#cookie-consent .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

#cookie-consent h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

#cookie-consent p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-consent a {
    color: #f79630;
    text-decoration: underline;
}

#cookie-consent > div:first-child {
    flex: 1 1 60%;
    min-width: 280px;
}

#cookie-consent > div:last-child {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

#cookie-reject, #cookie-customize {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

#cookie-accept {
    background-color: #f79630;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Modal para personalizar cookies */
#cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    overflow-y: auto;
}

#cookie-settings-modal > div {
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

#cookie-settings-modal h3 {
    margin-top: 0;
    color: #2b2d42;
    font-size: 22px;
    margin-bottom: 20px;
}

#cookie-settings-modal p {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-settings-modal label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

#cookie-settings-modal input[type="checkbox"] {
    accent-color: #f79630;
    width: 18px;
    height: 18px;
}

#cookie-settings-modal strong {
    display: block;
    margin-bottom: 5px;
    color: #2b2d42;
}

#cookie-settings-modal span {
    font-size: 13px;
    color: #666;
}

#cookie-settings-modal div:last-child {
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: right;
}

#save-preferences {
    background-color: #f79630;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Modal para descarga de ebook */
#ebook-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    overflow-y: auto;
}

#ebook-modal > div {
    position: relative;
    width: 90%;
    max-width: 500px;
    margin: 100px auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

#close-ebook-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

#ebook-modal h3 {
    margin-top: 0;
    color: #2b2d42;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

#ebook-modal p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

#ebook-success-message {
    display: none;
    background-color: rgba(0, 208, 132, 0.1);
    color: #00b873;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

/* Select2 styles */
.select2-container {
    width: 100% !important;
}

.select2-selection {
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 10px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 5px !important;
}

.select2-selection__arrow {
    height: 43px !important;
}

.flag-icon {
    margin-right: 8px;
}

/* Responsive CSS */
@media (max-width: 1366px) and (min-width: 992px) {
    .hero-video {
        margin-top: -24px;
        width: 60%;
    }
}

@media (max-width: 991px) {
    .hero-content, .about-content, .illustration-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-image, .about-text, .about-image, .illustration-text, .illustration-image {
        width: 100%;
        text-align: center;
    }
    
    .hero-image, .about-image {
        margin-top: 40px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-video {
        width: 80%;
        margin-top: 16px;
    }
    
    .testimonial-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .testimonial-grid {
        gap: 0;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-card {
        flex: 0 0 calc(100% - 30px);
        max-width: calc(100% - 30px);
        margin-bottom: 30px;
    }
    
    .contact-form, .contact-info {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .carousel-main img {
        height: 350px;
    }
    
    .thumbnail {
        width: 70px;
        height: 60px;
    }
    
    .carousel-text {
        font-size: 14px;
    }
    
    .carousel-text h3 {
        font-size: 18px;
    }
}

/* Horizontal Accordion */
.horizontal-accordion-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.horizontal-accordion {
    display: flex;
    width: 100%;
    height: 500px;
    margin: 40px 0;
    gap: 10px;
}

.h-accordion-item {
    position: relative;
    width: 80px;
    height: 100%;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.h-accordion-item.active {
    width: 400px;
    background: #ffffff;
    cursor: default;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.h-accordion-header {
    position: absolute;
    width: 500px;
    height: 80px;
    background: #333333;
    color: #ffffff;
    padding: 20px;
    transform: rotate(-90deg);
    transform-origin: 0 0;
    left: 80px;
    top: 500px;
    display: flex;
    align-items: center;
}

.h-accordion-item.active .h-accordion-header {
    background: #f79630;
    color: #ffffff;
}

.h-accordion-header h3 {
    margin: 0;
    font-size: 18px;
}

.h-accordion-content {
    opacity: 0;
    padding: 20px;
    transition: opacity 0.3s ease-in-out;
    height: 100%;
    overflow: hidden;
}

.h-accordion-item.active .h-accordion-content {
    opacity: 1;
}

.h-accordion-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.h-accordion-text {
    color: #333333;
}

.h-accordion-text ul {
    padding-left: 20px;
    margin: 15px 0;
}

.h-accordion-text li {
    margin: 8px 0;
    position: relative;
}

.h-accordion-text li:before {
    content: "✓";
    color: #f79630;
    margin-right: 8px;
}

.h-accordion-text .btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: #f79630;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.h-accordion-text .btn-primary:hover {
    background: #e58520;
}

@media (max-width: 991px) {
    .horizontal-accordion {
        flex-direction: column;
        height: auto;
    }
    
    .h-accordion-item {
        width: 100%;
        height: 60px;
    }
    
    .h-accordion-item.active {
        width: 100%;
        height: auto;
    }
    
    .h-accordion-header {
        position: relative;
        width: 100%;
        height: 60px;
        transform: none;
        left: 0;
        top: 0;
    }
    
    .h-accordion-content {
        padding: 20px;
    }
}

/* Simple Accordion */
.simple-accordion-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.simple-accordion .section-header h2 {
    color: var(--dark-blue);
}

.simple-accordion .section-header p {
    color: #666;
}

.simple-accordion {
    max-width: 800px;
    margin: 30px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    background-color: var(--white);
    border-bottom: 1px solid #e0e0e0;
    min-height: 100px;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background-color: var(--white);
    color: var(--dark-blue);
    cursor: pointer;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-header.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.accordion-header::after {
    content: '\002B'; /* Unicode character for "+" sign */
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    content: "\2212"; /* Unicode character for "−" sign */
    color: var(--white);
    transform: rotate(180deg);
}

.accordion-content {
    background-color: var(--white);
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content.active {
    padding: 20px 25px;
    max-height: 720px !important;
}

/* Set max-height for all background items */
.accordion-item[class*="item-with-bg"] .accordion-content.active {
    max-height: 450px !important;
}

.accordion-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content ul li {
    font-size: 15px;
    color: #555;
    position: relative;
}

.accordion-content ul li::before {
    content: "\2713"; /* Checkmark */
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

@media (max-width: 767px) {
    .accordion-header {
        font-size: 16px;
        padding: 18px 20px;
    }
    .accordion-header::after {
        font-size: 20px;
    }
    .accordion-content.active {
        padding: 15px 20px;
    }
    .accordion-content p,
    .accordion-content ul li {
        font-size: 14px;
    }
    
    /* Reduce font size for background image items on mobile */
    .accordion-item[class*="item-with-bg"] .accordion-content p,
    .accordion-item[class*="item-with-bg"] .accordion-content ul li {
        font-size: 14px !important;
    }
}

/* Styles for accordion items with background image */
.accordion-item[class*="item-with-bg"] {
    position: relative;
    border-bottom: 4px solid #f79630;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    min-height: 100px;
    background-color: transparent;
    overflow: hidden;
}

.accordion-item[class*="item-with-bg"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: none;
    z-index: 0;
    height: 100%;
}

.accordion-item[class*="item-with-bg"] .accordion-content {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 0 0 8px 8px;
    text-align: center;
    position: relative;
    z-index: 1;
    height: 420px;
    overflow-y: auto;
}

.accordion-item.item-with-bg1::before {
    background-image: url('../images/tabs/1.jpg');
}

.accordion-item.item-with-bg2::before {
    background-image: url('../images/tabs/2.jpg');
}

.accordion-item.item-with-bg3::before {
    background-image: url('../images/tabs/3.jpg');
}

.accordion-item.item-with-bg4::before {
    background-image: url('../images/tabs/4.jpg');
}

.accordion-item.item-with-bg5::before {
    background-image: url('../images/tabs/5.jpg');
}

.accordion-item.item-with-bg6::before {
    background-image: url('../images/tabs/6.jpg');
}

.accordion-item.item-with-bg7::before {
    background-image: url('../images/tabs/7.jpg');
}
.accordion-item.item-with-bg8::before {
    background-image: url('../images/tabs/8.jpg');
}

/* Accordion header styles */
.accordion-item[class*="item-with-bg"] .accordion-header {
    background-color: transparent;
    min-height: 40px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.accordion-item[class*="item-with-bg"] .accordion-header:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.accordion-item[class*="item-with-bg"] .accordion-header.active {
    background-color: rgba(0, 0, 0, 0.4);
}

.accordion-item[class*="item-with-bg"] .accordion-header::after,
.accordion-item[class*="item-with-bg"] .accordion-header.active::after {
    color: #fff;
}

.accordion-item[class*="item-with-bg"] .accordion-header.active::after {
    transform: rotate(180deg);
}

/* Accordion content styles */
.accordion-item[class*="item-with-bg"] .accordion-content {
    background-color: rgba(0, 0, 0, 0.1);
    color: #fff;
    border-radius: 0 0 8px 8px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.accordion-item[class*="item-with-bg"] .accordion-content p,
.accordion-item[class*="item-with-bg"] .accordion-content ul li {
    color: #fff;
    font-size: 22px;
    text-align: left;
}

/* Specific font size for bg6 paragraphs */
.accordion-item.item-with-bg6 .accordion-content p {
    font-size: 18px;
}

.accordion-item[class*="item-with-bg"] .accordion-content ul {
    text-align: left;
    margin: 10px 0 0;
    padding: 0;
    list-style-type: none;
}

.accordion-item[class*="item-with-bg"] .accordion-content ul li::before {
    content: none;
}

.image-container {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.image-container img {
    width: 48%;
    height: auto;
    border-radius: 5px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.schedule-column h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.schedule-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-column ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.schedule-column ul li::before {
    content: '•';
    color: #f79630;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.schedule-column ul li span {
    color: #555;
    margin-right: 10px;
}

.schedule-column ul li a {
    color: #f79630;
    text-decoration: none;
}

.schedule-column ul li a:hover {
    text-decoration: underline;
}

/* Removing old schedule grid styles */
.schedule-grid, .schedule-column, .schedule-column h3, .schedule-column ul, .schedule-column ul li, .schedule-column ul li::before, .schedule-column ul li span, .schedule-column ul li a, .schedule-column ul li a:hover {
    all: unset;
}

/* Tab container styles */
.tabs-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-size: 18px;
    font-weight: 500;
    color: #888;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

.tab-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 3;
    column-gap: 40px;
}

.tab-content ul li {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
    font-size: 16px;
    break-inside: avoid;
}

.tab-content ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.tab-content ul li span {
    color: #555;
    margin-right: 8px;
    white-space: nowrap;
}

.tab-content ul li a {
    color: var(--primary-color);
    text-decoration: none;
}

.tab-content ul li a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .tab-content ul {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .tab-content ul {
        columns: 1;
    }
    .tab-nav {
        justify-content: center;
    }
}

.video-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    display: block;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-container iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .video-container iframe {
        height: 300px;
    }
}

.testimonials-section {
}