/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.text-red {
    color: #c6342a;
}

/* Header Styles */
.header {
    background-color: #fff;
    position: relative;
}

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

.logo {
    margin-left: -6%;
}

.logo-img {
    height: 240px;
    width: auto;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0,6rem;
    margin-top: -80px;
    transform: translateX(-100%);
}

.social-link {
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.social-icon {
    height: 24px;
    width: 24px;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    margin-top: -80px;
    transform: translateX(-20%);
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link-primary {
    color: #c6342a;
}

.btn-ebook {
    background-color: #c6342a;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 32px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-ebook:hover {
    background-color: #a82d24;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: -10px;
    transform: translateX(-20%);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    margin-bottom: 4px;
}

.hamburger-line:last-child {
    margin-bottom: 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c6342a;
    z-index: 50;
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
}

.mobile-logo {
    height: 64px;
    width: auto;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

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

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1.5rem;
    gap: 2rem;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-btn-ebook {
    background-color: #fff;
    color: #c6342a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 32px;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    margin: 0 auto;
    transition: background-color 0.3s ease;
}

.mobile-btn-ebook:hover {
    background-color: #f5f5f5;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
}

.mobile-social-link {
    transition: opacity 0.3s ease;
}

.mobile-social-link:hover {
    opacity: 0.8;
}

.mobile-social-icon {
    height: 32px;
    width: 32px;
    filter: brightness(0) invert(1);
}

/* Protege Section */
.protege-section {
    padding: 0;
    background-color: #fff;
}

.protege-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.protege-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 1.5rem;
}

.protege-description {
    font-size: 1.125rem;
    color: #000;
    line-height: 1.6;
}

.protege-image {
    display: flex;
    justify-content: center;
}

.certificate-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.certificate-img:hover {
    transform: scale(1.05);
}

/* eBook Section */
.ebook-section {
    padding: 5rem 0;
    background-color: #fff;
}

.ebook-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ebook-image {
    display: flex;
    justify-content: center;
    order: 2;
}

.ebook-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    transition: transform 0.3s ease;
}

.ebook-img:hover {
    transform: scale(1.05);
}

.ebook-text {
    order: 1;
}

.ebook-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.ebook-description {
    font-size: 1.125rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ebook-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #c6342a;
}

.form-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.form-button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: -30px;
}

.form-submit-btn {
    background-color: #c6342a;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 32px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #a82d24;
}

/* Porque Section */
.porque-section {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.porque-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.circles-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.circle {
    width: 192px;
    height: 192px;
    background-color: #c6342a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-text {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.plus-icon {
    color: #c6342a;
}

.porque-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.problems-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.problem-icon {
    color: #c6342a;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.problem-item p {
    color: #000;
}

.warning-text {
    padding-top: 1rem;
}

.warning-text p {
    color: #c6342a;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Solucion Section */
.solucion-section {
    padding: 5rem 0;
    background-color: #fff;
}

.solucion-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.solucion-header {
    margin-bottom: 2rem;
}

.solucion-logo {
    height: 80px;
    width: auto;
    margin: 0 auto 1.5rem;
}

.solucion-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.solucion-subtitle {
    font-size: 1.125rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.check-icon {
    width: 32px;
    height: 32px;
    background-color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.check-icon svg {
    color: #fff;
}

.check-icon.green {
    background-color: #22c55e;
}

.benefit-item p {
    color: #000;
    font-size: 1.125rem;
}

/* Somos Section */
.somos-section {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.somos-content {
    max-width: 1200px;
    margin: 0 auto;
}

.somos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.somos-intro {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.somos-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.somos-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.somos-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.somos-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.somos-benefit p {
    color: #000;
    font-size: 1.125rem;
}

.testimonial {
    text-align: center;
}

.testimonial-quote {
    font-size: 1.25rem;
    color: #000;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #000;
    font-weight: 700;
    font-style: normal;
}

/* Carrusel Section */
.carrusel-section {
    padding: 5rem 0;
    background-color: #fff;
}

.carrusel-content {
    max-width: 1200px;
    margin: 0 auto;
}

.carrusel-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 3rem;
}

.carousel-container {
    overflow: hidden;
}

.carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.carousel-item:hover {
    background-color: #f3f4f6;
}

.carousel-img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.carousel-item:hover .carousel-img {
    filter: grayscale(0%);
}

/* Testimonio Section */
.testimonio-section {
    padding: 5rem 0;
    background-color: #fff;
}

.testimonio-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}

.testimonial-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: #c6342a;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #fff;
    color: #c6342a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 32px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f5f5f5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: #fff;
    border-top: 8px solid #e5e7eb;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .carousel {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .protege-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ebook-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ebook-image {
        order: 1;
    }
    
    .ebook-text {
        order: 2;
    }
    
    .porque-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .circles-container {
        flex-direction: row;
    }
    
    .somos-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .social-icons {
        gap: 0.6rem;
    }
    
    .social-icon {
        height: 24px;
        width: 24px;
    }
    
    .protege-title {
        font-size: 3rem;
    }
    
    .ebook-title {
        font-size: 2.5rem;
    }
    
    .porque-title {
        font-size: 3rem;
    }
    
    .solucion-title {
        font-size: 3rem;
    }
    
    .somos-title {
        font-size: 3rem;
    }
    
    .carrusel-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .social-icons {
        transform: translateX(0%) !important;
        margin-right: -1rem;
        gap: 1rem;
    }
    
    .social-icon {
        height: 20px;
        width: 20px;
    }
}