:root {
    --primary: #215dd9;
    --primary-light: #4782fb;
    --secondary: #23B18F;
    --accent: #D545A0;
    --high-accent: #E730CA;
    --bg-light: #eeeeee;
    --bg-dark: #0D0D12;
    --bg-gray: #222222;
    --bg-card: #333333;
    --text-light: #eeeeee;
    --text-dark: #222222;
    --border-color: #333333;
    --ice-white: #dddbdb;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

.hero-content, .problem-content, .presentation-content, .solution-content, .benefits-content, .reasons-content, .pricing-content, .author-content {
    max-width: 1150px;
}

.container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.top-menu {
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 70px;
}

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

.logo-img {
    width: 27px;
}

.menu-links {
    display: flex;
    gap: 2rem;
}

.menu-links a {
    font-family: 'Poppins' sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: #7928ca;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.pink-color {
    position: relative;
    color: #E730CA;
    display: inline-block;
}

.pink-color::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: #ef94d6; 
    opacity: 0;
    filter: blur(0.7px);
    text-shadow:
        rgba(247, 155, 222, 0.45) 0px 0px 3px,
        rgba(236, 120, 206, 0.55) 0px 0px 6px;
    animation: textLightBlink 2.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes textLightBlink {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 0.4;
    }

    55% {
        opacity: 0.75;
    }

    70% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .menu-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

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

    .menu-links.active {
        display: flex;
    }
}

section {
    position: relative;
    padding: 5rem 1rem;
    overflow: hidden;
}

.section-content {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.mobile {
    display: none !important;
}

.web {
    display: flex;
}

.subtitle {
    font-size: 18px;
    max-width: 30rem;
    text-align: start;
    line-height: 1.35;
}

.main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
    text-align: start;
}

.text-gradient-pink {
    background: linear-gradient(135deg, #ffffff, #FFCCEE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

}

.text-gradient-high-pink {
    background: linear-gradient(178deg, #ffffff, #F44BD9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 42px;
}

.title-gradient.hero-title.mobile {
    margin-top: 3rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;   
}

.pb-3 {
    padding-bottom: 2.6rem;   
}

.cta-button {
    background: linear-gradient(135deg, #E730AA, #F44BD9);
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    padding: 1rem 2rem;
    border: 2px solid rgba(223, 139, 235, 0.2);
    border-radius: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0px -27px 80px 0px rgba(231, 48, 202, 0.22), 
        0px -9.855px 29.201px 0px rgba(231, 48, 202, 0.15), 
        0px -4.785px 14.177px 0px rgba(231, 48, 202, 0.12), 
        0px -2.346px 6.95px 0px rgba(231, 48, 202, 0.10), 
        0px -0.927px 2.748px 0px rgba(231, 48, 202, 0.07);
    display: inline-flex;
    align-items: center;
}

.cta-button:hover {
    transform: scale(1.02);
    background-color: var(--accent);
    box-shadow: 
        0px -30px 90px 0px rgba(231, 48, 202, 0.3),
        0px -12px 36px 0px rgba(231, 48, 202, 0.22),
        0px -6px 18px 0px rgba(231, 48, 202, 0.18),
        0px -3px 9px 0px rgba(231, 48, 202, 0.15),
        0px -1.2px 3.6px 0px rgba(231, 48, 202, 0.1);
    filter: brightness(1.05);
}

.secondary-button {
    background-color: var(--secondary);
    color: var(--text-dark);
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.secondary-button span {
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.arrow {
    margin-left: 0.5rem;
}

.full-width {
    width: 100%;
    justify-content: center;
}

.flex-center {
    width: 100%;
    display: flex;
    justify-content: center;
}

.icon-wrapper {
    background-color: var(--primary);
    height: 42px;
    width: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 1.2rem;
}

.icon {
    font-size: 16px;
}

.hero {
    background-image: url(./assets/images/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
}

.hero-content > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    max-width: 35rem;
}

.cta-container {
    margin: 3.5rem 0;
    display: flex;
}

.cta-container-center {
    margin: 3.5rem 0;
    display: flex;
    justify-content: center;
}


@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.me-preview {
    position: relative;
}

.image-hero {
    position: relative;
}

.me {
    width: 560px;
    margin-right: -30px;
}

.color-wheel {
    position: absolute;
    width: 135px;
    right: -6%;
    top: 1rem;
    animation: spin 3s linear infinite;
    transform-origin: center center;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 0.75rem;
    border-radius: 0.7rem;
    font-weight: 500;
    transform: rotate(12deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    line-height: normal;
}

.problem {
    width: 100%;
    display: flex;
    justify-content: center;
}

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

.text-problem {
    font-size: 22px;
    text-align: center;
    max-width: 70rem;
}

.card-offset {
    transform: translateY(1.5rem);
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cards .row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.card {
    display: flex;
    flex-direction: column;
    background-color: #1B1B2B;
    padding: 2rem;
    border: 3px solid #28284B;
    border-radius: 20px;    
    width: 350px;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.card-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./assets/images/gradient-1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./assets/images/gradient-2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./assets/images/gradient-3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./assets/images/gradient-4.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./assets/images/gradient-5.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(./assets/images/gradient-6.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.card header img {
    width: 35px;
}

.card header p {
    font-weight: 500;
    color: white;
    font-size: 22px;
    line-height: 1.2;
}

.card main p {
    font-size: 14px;
    color: #C2C2C2;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.quote {
    text-align: center;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    max-width: 49rem;
    margin: 0 auto;
    line-height: normal;
}

.highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -2%;
    width: 105%;
    height: 30%;
    background-color: var(--primary);
    z-index: -1;
    opacity: 0.4;
}

.presentation {
    width: 100%;
    display: flex;
    justify-content: center;
}

.presentation-content {
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    gap: 6rem;
    display: flex;
    flex-direction: column;
}

.presentation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.no-solution-gap {
    margin-top: -1.5rem;
}

.presentation-image {
    width: 460px;
}

.title-presentation {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    max-width: 36rem;
    margin-bottom: 1rem;
}

.text-presentation {
    color: #B8B8B8;
    line-height: 1.4;
    text-align: left;
    font-size: 18px;
    max-width: 30rem;
}

.text-pricing,  .text-author {
    font-size: 18px;
    max-width: 29rem;
}

.text-solution {
    color: #B8B8B8;
    line-height: 1.4;
    text-align: center;
    font-size: 20px;
    margin-top: 1.5rem;
    max-width: 69rem;
}

/* Solution Section */
.solution {
    width: 100%;
    display: flex;
    justify-content: center;
}

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

.solution-text {
    text-align: left;
    color: var(--text-dark);
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.feature:nth-child(1) p {
    color: var(--secondary);
    font-weight: bold;
}

.feature:nth-child(2) p {
    color: var(--primary);
    font-weight: bold;
}

.feature:nth-child(3) p {
    color: var(--accent);
    font-weight: bold;
}

.book-showcase {
    display: flex;
    justify-content: center;
}

.book-display {
    background: var(--primary);
    padding: 4px;
    border-radius: 0.5rem;
    transform: rotate(3deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 260px;
}

.book-inner-display {
    background-color: var(--bg-dark);
    border-radius: 0.5rem;
    padding: 1rem;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.book-placeholder {
    width: 100%;
    height: 8rem;
    background-color: var(--bg-card);
    margin: 1rem 0;
    border-radius: 0.25rem;
}

.book-edition {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.book-updated {
    color: #888;
    font-size: 0.75rem;
}

.book-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-weight: 600;
    transform: rotate(-6deg);
    font-size: 0.875rem;
}

.learning-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.learning-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.learning-item p {
    color: var(--text-dark);
}

.check-icon {
    background-color: var(--primary);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bonus-box {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    margin-top: 2.5rem;
}

.bonus-label {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 1.5rem;
    font-weight: bold;
}

.bonus-included {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    margin-top: 1.5rem;
}

.bonus-included span {
    margin-right: 0.5rem;
}

.bonus-included p {
    font-weight: bold;
    margin: 0;
}

.author-content {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
}

.author-image {
    position: relative;
}

.author-avatar {
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.author-placeholder {
    width: 13rem;
    height: 13rem;
    background-color: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.author-badge {
    position: absolute;
    bottom: 1rem;
    right: 0.5rem;
    background-color: var(--secondary);
    color: var(--text-dark);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-text {
    max-width: 800px;
}

.author-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: normal;
}

.author-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    background-color: var(--bg-card);
    padding: 1rem;
    border-radius: 0.5rem;
}

.stat-value {
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.stat-value:nth-child(1) {
    color: var(--secondary);
}

.stat-item:nth-child(2) .stat-value {
    color: var(--accent);
}

.stat-item:nth-child(3) .stat-value {
    color: var(--primary);
}

.stat-item:nth-child(4) .stat-value {
    color: var(--secondary);
}

.stat-desc {
    font-size: 0.875rem;
    margin: 0;
    line-height: normal;
}

.pricing {
    background-image: url(./assets/images/background-stars.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; 
    background: linear-gradient(to top, #0D0D12 0%, rgba(13, 13, 18, 0.8) 30%, rgba(13, 13, 18, 0.5) 60%, rgba(13, 13, 18, 0) 100%);
    z-index: 1;
    pointer-events: none; 
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-dark);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.title-pricing, .title-author {
    line-height: 1.2;
    text-align: left;
}

.price {
    padding-top: 2rem;
}

.pricing-content {
    padding: 2rem;
    text-align: center;
}

.price .installment {
    font-size: 42px;
    font-weight: 700;
}

.price .installment span {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.4;
}

.at-sight {
    font-size: 24px;
    line-height: 1;
}

.book {
    display: flex;
    justify-content: end;
}

.price-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
}

.current-price span {
    color: var(--secondary);
}

.discount-badge {
    position: absolute;
    right: -4rem;
    top: -0.5rem;
    background-color: var(--accent);
    color: var(--text-dark);
    transform: rotate(12deg);
    padding: 0.25rem 1rem;
    font-weight: bold;
    font-size: 0.875rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.features-list li span {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.secure-buy {
    margin-top: 1.5rem;
    color: #888;
    font-size: 0.875rem;
}

.guarantee {
    background-color: var(--bg-card);
    padding: 1.5rem;
    text-align: center;
}

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

.guarantee-icon {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.guarantee-content p {
    margin: 0;
}

.w-100 {
    width: 100%;
}

.text-start {
    text-align: start !important;
}

footer {
    background-color: #131321;
    padding: 2.5rem 1rem;
    color: #595963;
}

.footer-content {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    opacity: 0.4;
}

.footer-text {
    text-align: center;
}

.footer-logo p {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.copyright {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

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

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    animation: scale-in 0.3s ease-out;
    display: none;
}

.benefits {
    width: 100%;
    display: flex;
    justify-content: center;
}

.benefits-content {
    display: flex;
    gap: 8rem;
}

.benefits-content .column span {
    font-size: 18px;
}

.img-benefits {
    width: 95%;
    margin-left: -7px;
    margin-top: 2rem;
}

.column {
    width: 50%;
}

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

.title-benefits {
    line-height: 1.1;
    padding-bottom: 1rem;
    text-align: left;
}

.numeration-benefits {
    font-size: 30px !important;
    font-weight: 600;
    background: linear-gradient(178deg, #ffffff, #F44BD9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle-benefits {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.text-benefits {
    font-size: 18px;
    color: #B8B8B8;
}

.benefits-articles > article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.benefit-card {
    display: flex;
    flex-direction: column;
    background-color: #1B1B2B;
    border: 3px solid #28284B;
    border-radius: 1rem;
    padding: 1.2rem;
    gap: 1rem;
    width: 30%;
}

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

.numeration-container {
    width: 100%;
    display: flex;
    justify-content: end;
}

.numeration {
    background-color: #44204A;
    color: white;
    padding: 4px;
    border-radius: 30px;
    height: 30px;
    width: 30px;
    display: flex;
    font-size: 14px;
    font-weight: 200;
    justify-content: center;
    align-items: center;
}

.text-container {
    display: flex;
    flex-direction: column;    
}

.text-center {
    text-align: center;
}

.level {
    font-size: 13px !important;
    font-weight: 600;
    margin-top: 8px;
}

.level-text {
    font-size: 12px !important;
}

.captions {
    display: flex;
    flex-direction: column;
}

.captions span {
    font-size: 12px !important;
    color: #5F5F5F;
} 

.separator {
    background-color: #1B1B2B;
    margin: 0;
    height: 2px;
    width: 100%;
}

.salary {
    font-size: 36px !important;
    font-weight: 600;
}

.reasons {
    width: 100%;
    display: flex;
    justify-content: center;
}

.reasons-content {
    padding: 5rem 0;
}

.reasons-cards {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.reasons-card {
    background-color: #1B1B2B;
    border: 3px solid #28284B;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 230px;
    height: 230px;
    margin-top: 40px;
}

.reasons-card2 {
    background-color: #0D0D12;
    border: 1px solid white;
    border-radius: 1rem; 
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 230px;
    height: 230px;
    margin-top: 0;
}

.reasons-card span, .reasons-card2 span {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 600;
}

.reasons-card h4, .reasons-card2 h4 {
    font-size: 1.2rem;
}

.reasons-card p, .reasons-card2 p {
    font-size: 14px;
    font-weight: 200;
    line-height: 1.4;
    margin-top: -10px;
}

.pricing-content {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.pricing-content .column {
    text-align: left;
}

.pricing-content .column img {
    width: 380px;
    height: fit-content;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.author {
    width: 100%;
    display: flex;
    justify-content: center;
}

.leticia {
    width: 350px;
}

.mw-33 {
    max-width: 33rem !important;
}

.author-content .column p {
    padding-bottom: 1rem;
    max-width: 600px;
}

.author-leticia {
    display: flex;
    justify-content: end;
    align-items: end;
    flex-direction: column;
}

.icon-instagram, .icon-arrow, .icon-behance {
    width: 20px;
    height: 20px;
    margin-right: 1px;
    filter: brightness(0) invert(1);
}

.icon-behance {
    width: 22px;
    filter: brightness(0) invert(1);
}

.behance-button {
    width: 50px;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    margin-right: 2.2rem;
}

.sm-btn {
    background-color: #15151F;
    border: 3px solid #262647;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sm-btn:hover {
    background-color: #1a1a2e;
    border-color: #3a3a5a;
    transform: translateY(-2px);
}

.instagram-button {
    gap: 8px;
    color: white;
}

.instagram-button span {
    font-family: Poppins, sans-serif;
    font-size: 16px;
}

.thanks-container {
    background-image: url(./assets/images/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    height: auto;
    text-align: center; 
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-message {
    max-width: 500px; 
    margin: 10px auto; 
    font-size: 18px;
}

.font-40 {
    font-size: 40px
}

@keyframes scale-in {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.footer-logo img {
    width: 40px;
}

.footer-text {
    color: #595963;
}

@media (max-width: 800px) {
    .hero {
        background-image: url(./assets/images/background-mobile.png);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .hero-content {
        flex-direction: column !important;
    }

    .hero-title {
        margin-top: 0;
        text-align: left;
        font-size: 40px;
        max-width: 17rem;
    }

    .mb-0 {
        margin-bottom: 0 !important;
    }

    .cards .row, .card {
        width: 100%;
    }
    
    .subtitle {
        font-size: 17px;
        text-align: start;
        line-height: 1.3;
    }

    .cta-container {
        margin: 2rem 0 3.5rem 0;
    }

    .cta-button {
        font-size: 15px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    section {
        padding: 3rem 1.3rem !important;
    }

    .footer-logo img {
        width: 35px;
        opacity: 0.7;
    }

    .footer-text {
        font-size: 14px;
        text-align: center;
    }

    .main-title {
        font-size: 2.4rem;
        width: 100%;
        zoom: 1.2;
    }

    .me {
        width: 110%;
        left: -24px;
        position: relative;
        margin-top: 1.8rem;
    }

    .me-preview {
        display: flex;
        flex-direction: column;
    }

    .color-wheel {
        width: 115px;
        top: 2rem;
    }

    .cards {
        gap: 1.5rem;
    }

    .cards .row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card header img {
        width: 30px;
    }

    .pricing-content {
        padding: 0; 
    }

    .benefits-content {
        flex-direction: column;
        width: 100%;
        gap: 4rem;
    }

    .img-benefits {
        width: 102%;
        margin: 2rem 0 0 -4px;
    }

    .text-gradient-high-pink { 
        font-size: 33px;
        text-align: center;
    }

    .pb-1 {
        padding-bottom: 0;
    }

    .mobile {
        display: flex !important;
    }

    .web {
        display: none;
    }

    .reasons-cards {
        flex-direction: column;
        gap: 1.5rem;
    }

    .reasons-title, .title-benefits, .solution-title, .problem-title {
        text-align: left;
    }

    .reasons-card {
        margin: 0;
    }

    .reasons-card p, .reasons-card2 p {
        font-size: 16px;
    }

    .reasons-card, .reasons-card2 {
        width: 100%;
        height: fit-content;
    }

    .first-presentation {
        margin-top: 2rem;
    }

    .first-presentation-text, .second-presentation-text {
        margin-top: 2rem;
    }

    .first-image-presentation {
        margin-top: 1rem;
    }

    .author-leticia {
        justify-content: center;
        align-items: center;
    }

    .social-media {
        margin: 20px 0 0 0;
    }

    .title-pricing {
        text-align: left;
    }

    .text-problem {
        font-size: 17px;
        text-align: start;
    }

    .pricing-content {
        flex-direction: column;
        gap: 4rem;
        width: 100%;
    }

    .pricing-content .column img {
        width: 100%;
        height: fit-content;
    }
    
    .book {
        flex-direction: column;
    }

    .column {
        width: 100%;
    }

    .problem, .reasons-content {
        padding-top: 2rem !important;
    }

    .book-img {
        margin-bottom: 2rem;
    }

    .author {
        padding-top: 1rem !important;
    }

    .pricing-content .column p {
        margin-top: 1rem;
    }

    .at-sight {
        margin-top: 5px !important;
    }

    .presentation, .pricing {
        padding-top: 1rem !important;
    }

    .presentation-image {
        width: 100%;
    }

    .presentation-row {
        flex-direction: column;
    }

    .title-presentation {
        font-size: 28px;
        text-align: start;
    }

    .solution-content {
        align-items: center;
    }

    .solution-text {
        flex: 1;
    }

    .benefits-cards {
        flex-direction: column;
    }

    .benefit-card {
        width: 100%;
    }

    .salary {
        font-size: 45px !important;
    }

    .level {
        font-size: 16px !important;
    }
    
    .level-text { 
        font-size: 15px !important;
    }

    .numeration {
        background-color: #44204A;
        color: white;
        padding: 4px;
        height: 40px;
        width: 40px;
        font-size: 17px;
    }

    .author-content {
        flex-direction: column;
        gap: 2.5rem;
        width: 100%;
    }

    .author-text {
        flex: 2;
    }

    .footer-content {
        flex-direction: column;
        justify-content: center;
    }
}

@media (min-width: 800px) and (max-width: 1100px) {
    .main-title {
        font-size: 2.5rem !important;
        width: 100% !important;
        zoom: 1.1 !important;
    }

    .hero-title {
        max-width: 19rem;
    }

    .subtitle {
        max-width: 24rem;
    }

    .title-presentation {
        font-size: 29px; 
    }

    .hero-content, .problem-content, .presentation-content, .solution-content, .benefits-content, .reasons-content, .pricing-content, .author-content {
        max-width: 900px;
    }

    .presentation-image {
        width: 410px;
    }

    .presentation-row {
        gap: 3rem;
    }

    .text-gradient-high-pink { 
        font-size: 35px;
    }

    .cta-button {
        font-size: 14px;
    }

    .text-problem {
        font-size: 20px;
    }
}

@media (min-width: 1101px) and (max-width: 1275px) {
    .main-title {
        font-size: 3.2rem !important;
        width: 100% !important;
    }

    .hero-title {
        max-width: 21rem;
    }

    .title-presentation {
        font-size: 29px; 
    }

    .subtitle {
        max-width: 25rem;
    }

    .hero-content, .problem-content, .presentation-content, .solution-content, .benefits-content, .reasons-content, .pricing-content, .author-content {
        max-width: 1000px;
    }

    .presentation-image {
        width: 410px;
    }

    .presentation-row {
        gap: 4rem;
    }

    .text-gradient-high-pink { 
        font-size: 34px;
    }

    .cta-button {
        font-size: 17px;
    }

    .text-problem {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 7rem 2rem;
    }

    .learning-points {
        grid-template-columns: repeat(2, 1fr);
    }
}
