@font-face {
    font-family: 'SF Pro Rounded';
    src: url('../fonts/sf-pro-rounded.ttf') format('truetype');
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    min-height: 100dvh;
    overflow-x: hidden !important;
}

/* Loading Screen */
#loading {
    position: fixed;
    inset: 0;
    background: #FFFFFF;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s ease;
}

.loading-logo {
    max-width: 400px;
    height: auto;
    opacity: 0;
    animation: fadeInZoom 1s ease forwards;
    animation-delay: 0.3s;
}

/* App Container */
.app {
    opacity: 0;
    transition: opacity 1s ease;
}

.app-ready {
    opacity: 1;
}

.hero-section {
    background:
        linear-gradient(119.28deg, #FFFFFF 7.28%, #4EDAFF 118.25%);
    min-height: 100dvh;
    position: relative;
}

/* Navigation styles */
.navigation {
    position: relative;
    width: 100%;
    height: 80px;
    padding: 20px;
}

.back-home-link {
    margin-bottom: 2rem;
    margin-left: 84px;
    border-radius: 200px;
    border-width: 4px;
    opacity: 1;
    border: 4px solid rgba(161, 235, 255, 1);
    padding: 8px 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-home-link a {
    display: block;
    text-decoration: none;
    line-height: 0;
}

.back-home-link img {
    display: block;
    transition: all 0.3s ease;
}

.back-home-link:hover {
    transform: scale(1.1);
    box-shadow: 8px 8px 8px 0px rgba(136, 230, 255, 1);
    background: linear-gradient(299.28deg, #FFFFFF -18.25%, #4EDAFF 92.72%);
}

.back-home-link:hover img {
    filter: brightness(1.1);
}

.logo-image {
    height: 97px;
    width: 237px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Duck and Cloud decorations */
.duck {
    position: absolute;
}

.duck-top-right {
    top: 0;
    right: 0;
    rotate: 180deg;
}

.duck-bottom-left {
    bottom: -120px;
    left: 30px;
}

.duck-top-left {
    left: -0.5%;
    top: 15%;
}

/* Cloud decoration */
.cloud-bottom {
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
    width: 110%;
}

/* Main container */
.container {
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 50px;
    text-align: center;
}

/* Page header styles */
.page-header {
    margin-bottom: 40px;
    margin-top: 40px;
}

.main-title {
    font-size: 70px;
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 700;
    font-style: Bold;
    color: #165566;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.subtitle {
    font-family: 'Chewy';
    font-size: 50.29px;
    color: #3D95AC;
    font-weight: 400;
    margin-bottom: 30px;
}

.description {
    font-size: 24px;
    font-family: 'Figtree';
    font-weight: 500;
    color: #3D95AC;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section */
.pricing-section {
    font-family: "figtree", sans-serif;
    width: 847px;
    margin: 0 auto;
    margin-bottom: 220px;
}

/* Header styling */
.header-wrapper {
    margin-bottom: 8px;
}

.table-header {
    background: #00B6E6;
    border-radius: 16px;
    display: flex;
    padding: 0;
    overflow: hidden;
}

.header-cell {
    flex: 1;
    padding: 18px 20px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
}

.header-cell-price {
    flex: 1;
    padding: 18px 20px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-align: right;
}

/* Category sections */
.category-section {
    border-radius: 16px;
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid;
}

.category-section:last-child {
    margin-bottom: 0;
}

/* Arte section */
.arte-section {
    background: #e0f9ff;
    border-color: #88D0E3;
}

/* Rig section */
.rig-section {
    background: #ffedff;
    border-color: #9B6D9B;
}

/* Addon section */
.addon-section {
    background: #fff8d6;
    border-color: #AA9946;
}

/* Table rows */
.table-row {
    display: flex;
    align-items: center;
    height: 57px;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row-art {
    border-bottom: 1px solid #88D0E3;
}

.table-row-rig {
    border-bottom: 1px solid #9B6D9B;
}

.table-row-addon {
    border-bottom: 1px solid #AA9946;
}

/* Cells */
.category-cell,
.service-cell,
.price-cell {
    flex: 1;
    padding: 16px 20px;
    font-size: 14px;
}

.category-cell {
    text-align: left;
    font-weight: 700;
    font-style: bold;
}

.service-cell {
    text-align: left;
    font-weight: 500;
    font-size: 16px;
}

.price-cell {
    text-align: center;
    display: flex;
    justify-content: flex-end;
    padding-right: 24px;
}

/* Category colors */
.arte-category {
    color: #2e9bb8;
}

.rig-category {
    color: #9b6d9b;
}

.addon-category {
    color: #aa9946;
}

/* Service type colors */
.arte-section .service-cell {
    color: #3d95ac;
}

.rig-section .service-cell {
    color: #9b6d9b;
}

.addon-section .service-cell {
    color: #aa9946;
}

/* Price tags */
.price-tag {
    color: white;
    padding: 4px 16px 4px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
}

.arte-price {
    background: #2bb9de;
}

.rig-price {
    background: #e3348d;
}

.addon-price {
    background: #eaa940;
}

/* Prices References Section*/
.price-reference-title {
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: 700;
    font-size: 80px;
    font-style: bold;
    color: #662F4B;
    margin-bottom: 20px;
    margin-top: 51px;
    letter-spacing: 0%;
    text-align: center;
}

.price-reference-image {
    position: relative;
    justify-self: center;
    padding-top: 40px;
}

/* Base styles for all price circles */
.price-reference-fb,
.price-reference-sketch-color,
.price-reference-sketch {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'SF Pro Rounded', sans-serif;
    font-weight: bold;
    font-size: 68px;
    font-style: bold;
    color: white;
    text-align: center;
    text-wrap: wrap;
    z-index: 10;
}

/* Full Body Illustration - $85 (Top Left Purple) */
.price-reference-fb {
    background: #efe3ff;
    color: #9747FF;
    left: -110px;
    top: 120px;
}

/* Sketch Color Full Body - $30 (Top Right Pink) */
.price-reference-sketch-color {
    background: #fbe1ee;
    color: #EC4899;
    right: -120px;
    top: 340px;
}

/* Sketch Full Body - $20 (Bottom Left Blue) */
.price-reference-sketch {
    background: #d8f3fa;
    color: #0EA5E9;
    left: -140px;
    bottom: 5px;
}

/* Price labels styling */
.price-label {
    font-size: 14px;
    font-weight: 600;
    font-family: 'SF Pro Rounded', sans-serif;
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 8px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.price-label-fb {
    background: #9747FF;
    color: #ffffff;
}

.price-label-sketch-color {
    background: #E3348D;
    color: #ffffff;
}

.price-label-sketch {
    background: #00B6E6;
    color: #ffffff;
}

/* Decorative element Duck*/
.duck-top-right-2 {
    z-index: 1;
    right: 0%;
    top: 100%;
    width: 409px;
    height: 750px;
}

.duck-top-left-2 {
    top: 225%;
    z-index: 2;
    left: 0;
    width: 326px;
    height: 626px;
}

.duck-top-right-3 {
    top: 267%;
    z-index: 2;
    right: 0;
    width: 295px;
    height: 515px;
}

.duck-top-right-4 {
    top: 277%;
    z-index: 2;
    right: -2%;
    width: 295px;
    height: 515px;
}

/* Prices References Table*/
.pricing-reference-table {
    font-family: "figtree", sans-serif;
    width: 847px;
    margin: 0 auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Sketch section */
.sketch-section {
    background: #e0f9ff;
    border-color: #88D0E3;
}

/* Sketch section */
.sketch-color-section {
    background: #FFEDFF;
    border-color: #9B6D9B;
}

/* Sketch section */
.ilustration-section {
    background: #fff8d6;
    border-color: #AA9946;
}

/* Sketch section */
.twitch-section {
    background: #EBFFE9;
    border-color: #69AE69;
}

/* Table Rows - Pricing Reference*/
.table-row-sketch {
    border-bottom: 1px solid #88D0E3;
}

.table-row-sketch-color {
    border-bottom: 1px solid #9B6D9B;
}

.table-row-ilustration {
    border-bottom: 1px solid #AA9946;
}

.table-row-twitch {
    border-bottom: 1px solid #69AE69;
}

/* Category Colors - Pricing Reference*/
.sketch-category {
    color: #2e9bb8;
}

.sketch-color-category {
    color: #9B6D9B;
}

.ilustration-category {
    color: #aa9946;
}

.twitch-category {
    color: #69AE69;
}

/* Service type colors - Pricing Reference */
.sketch-section .service-cell {
    color: #3d95ac;
}

.sketch-color-section .service-cell {
    color: #9B6D9B;
}

.ilustration-section .service-cell {
    color: #aa9946;
}

.twitch-section .service-cell {
    color: #69AE69;
}

/* Price tags - Pricing Reference */
.sketch-price {
    background: #2bb9de;
}

.sketch-color-price {
    background: #E3348D;
}

.ilustration-price {
    background: #eaa940;
}

.twitch-price {
    background: #69AE69;
}

/* Service Description Section - Base Styles (PC) */
.services-description-title {
    font-family: 'Chewy';
    color: #662F4B;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    text-align: center;
    margin-bottom: 3rem;
}

.service-description-title {
    font-family: 'SF Pro Rounded';
    font-style: bold;
    font-weight: 700;
    color: #662F4B;
    margin-bottom: 24px;
    font-size: 24px;
}

ul {
    color: #662F4B;
    font-style: normal;
    font-family: 'SF Pro Rounded';
    font-size: 18px;
}

.commission-process {
    margin: 0 auto 2rem auto;
    max-width: 800px;
    padding: 1rem;
}

.important-details {
    margin: 0 auto 2rem auto;
    max-width: 800px;
    padding: 1rem;
}

.important-details li {
    margin-bottom: 20px;
    font-size: 18px;
}

.rigging-bundle {
    margin: 0 auto 2rem auto;
    max-width: 800px;
    padding: 1rem;
}

.include-bundle {
    width: auto;
    font-weight: 700;
    font-family: 'SF Pro Rounded', sans-serif;
    font-size: 18px;
    font-style: bold;
    padding: 8px 24px;
    border-radius: 24px;
    margin-top: 16px;
    margin-bottom: 16px;
    line-height: 100%;
    background: #ffffff;
    color: #C86C9B;
    border: solid 2px #C86C9B;
    display: inline-block;
}

.note {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    font-weight: 700;
    font-family: 'SF Pro Rounded', sans-serif;
    font-style: bold;
    padding: 24px 32px;
    border-radius: 24px;
    line-height: 120%;
    background: #FFEEF6;
    color: #C86C9B;
    border: solid 1px #D2A3D2;
}

.note p {
    color: #662F4B;
    font-style: normal;
    font-weight: 400;
    margin-top: 1rem;
    font-size: 16px;
}

.note span {
    font-family: 'SF Pro Rounded';
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    color: #662F4B;
}

.thanks {
    margin-top: 1rem;
}

/* Necessary programs section */
.necessary-programs {
    background-image: url('../assets/fondo_de_patos.png');
    text-align: center;
    min-height: 100dvh;
    padding-bottom: 25rem;
    background-size: cover;
}

.necessary-programs-title {
    font-family: 'Chewy', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    text-align: center;
    color: #662F4B;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.necessary-programs-list {
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
    font-family: 'SF Pro Rounded', sans-serif;
    font-style: medium;
    padding: 48px 32px 32px 48px;
    border-radius: 24px;
    line-height: 120%;
    background: #ffffff;
    color: #662F4B;
    text-align: left;
}

.necessary-programs-list li {
    margin-bottom: 32px;
}

.relleno-blanco {
    height: 80px;
    width: 100%;
    margin-top: -4px;
}

.programs-cloud {
    width: 100%;
    rotate: 180deg;
    margin-top: -8px;
}

/* Important Section */
.important {
    position: relative;
}

.bg-3blues img {
    margin-top: -20rem;
    width: 2000px;
    height: 1750px;
}

.important-list {
    width: 1200px;
    min-height: 650px;
    padding: 48px 32px 32px 48px;
    border-radius: 24px;
    margin-top: -5rem;
    background: #ffffff;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.important-list-title {
    font-family: 'Chewy', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 62px;
    color: #F48600;
    margin-bottom: 3rem;
    margin-top: 1rem;
    text-align: center;
}

.important-list ul {
    list-style: none;
    color: #F48600;
    font-family: 'Chewy';
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    padding: 0;
}

.important-list li {
    margin-bottom: 30px;
}

.circle-alert {
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-services-link {
    color: #E3348D;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-services-link:hover {
    color: #38bdf8;
}

/* Prices bottom section */
.prices-bottom {
    background: linear-gradient(119.28deg, #FFFFFF 7.28%, #4EDAFF 118.25%);
    min-height: 100vh;
    margin-top: -18rem;
    text-align: center;
    position: absolute;
    z-index: -1;
    width: 100%;
    left: 0;
    right: 0;
}

.contenido {
    position: relative;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.prices-bottom-title {
    font-family: 'Chewy', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    color: #165566;
    margin-top: 20rem;
    margin-bottom: 2rem;
}

.cartel-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.cartel {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.contact-btn {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contact-btn a {
    background: #E3348D;
    color: #fff;
    font-weight: bold;
    font-family: 'SF Pro Rounded';
    font-style: 700;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 16px;
    display: inline-block;
    font-size: 18px;
}

.contact-btn:hover a {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 158, 0.4);
}

.mail {
    margin-bottom: -0.2rem;
    margin-right: 0.8rem;
}

.info {
    font-family: 'SF Pro Rounded';
    font-weight: 500;
    font-size: 20px;
    margin-top: 3rem;
    color: #3D95AC;
}

.info a {
    color: #E3348D;
    font-weight: 700;
}

.other-services {
    font-family: 'Chewy', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #4195AC;
    margin: 4rem 0 2rem;
}

.services-menu {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.services-menu a {
    font-family: 'Chewy', sans-serif;
    font-size: 24px;
    color: #5AC1DD;
    text-decoration: none;
}

.services-menu a.active {
    font-weight: bold;
    color: #165566;
}

.services-menu a:hover {
    font-weight: bold;
    color: #165566;
}

.follow {
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: 'Chewy', sans-serif;
    font-size: 20px;
    color: #3D95AC;
}

.character-right {
    position: absolute;
    width: 200px;
    right: 140px;
    bottom: 0;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon img {
    width: 24px;
    height: 24px;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.social-icon::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 4px;
    left: 12px;
    background: rgba(201, 250, 255, 1);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.social-icon:hover {
    transform: scale(1.2) !important;
    box-shadow: 8px 8px 8px 0px rgba(136, 230, 255, 1);
    background: linear-gradient(299.28deg, #FFFFFF -18.25%, #4EDAFF 92.72%);
    rotate: -15deg;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover img {
    color: #ffffff;
    transform: scale(1.1);
}

/* Tablet Styles* */
@media (min-width: 481px) and (max-width: 884px) {
    .logo-image {
        height: 97px;
        width: 237px;
        margin-top: 2rem;
    }

    .container {
        padding-top: 10px;
    }

    .main-title {
        font-size: 46px;
    }

    .subtitle {
        font-size: 30px;
    }

    .duck-bottom-left {
        bottom: -80px;
        left: 30px;
        width: 320px;
        height: 320px;
    }

    /* Cloud decoration */
    .cloud-bottom {
        bottom: -1px;
    }

    /* Pricing Section -Table*/
    .pricing-section {
        width: 90%;
    }

    .table-header th,
    .table-row td {
        font-size: 12px;
        padding: 12px 15px;
    }

    .header-cell,
    .header-cell-price,
    .category-cell,
    .service-cell,
    .price-cell {
        padding: 12px 8px;
        font-size: 12px;
    }

    .service-cell {
        font-size: 14px;
    }

    .price-tag {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Prices references*/
    .price-reference-title {
        font-size: 55px;
    }

    /* Base styles for all price circles */
    .price-reference-fb,
    .price-reference-sketch-color,
    .price-reference-sketch {
        width: 200px;
        height: 200px;
        font-size: 48px;
    }

    /* Full Body Illustration - $85 (Top Left Purple) */
    .price-reference-fb {
        left: -50px;
        top: 170px;
    }

    /* Sketch Color Full Body - $30 (Top Right Pink) */
    .price-reference-sketch-color {
        right: -60px;
        top: 370px;
    }

    /* Sketch Full Body - $20 (Bottom Left Blue) */
    .price-reference-sketch {
        left: -60px;
        bottom: 20px;
    }

    /* Price labels styling */
    .price-label {
        font-size: 12px;
        padding: 7px 7px;
    }

    .pricing-reference-table {
        width: 90%;
    }

    /* Decorative element Duck - price reference*/
    .duck-top-right-2 {
        width: 250px;
        height: 360px;
    }

    .duck-top-left-2 {
        top: 235%;
        z-index: 2;
        left: 0;
        width: 240px;
        height: 350px;
    }

    .duck-top-right-3 {
        top: 275%;
        z-index: 2;
        right: 0;
        width: 240px;
        height: 350px;
    }

    .duck-top-right-4 {
        top: 285%;
        z-index: 2;
        right: -2%;
        width: 240px;
        height: 350px;
    }

    /* Service Description Section */
    .services-description {
        padding: 0 40px 0 40px;
    }

    .services-description-title {
        font-family: 'Chewy';
        color: #662F4B;
        font-weight: 400;
        font-style: normal;
        font-size: 55px;
        text-align: center;
    }

    .service-description-title {
        font-family: 'SF Pro Rounded';
        font-style: bold;
        font-weight: 700;
        color: #662F4B;
        margin-bottom: 16px;
    }

    ul {
        color: #662F4B;
        font-style: normal;
        font-family: 'SF Pro Rounded';
        font-size: 16px;
    }

    .commission-process {
        margin: 0 30px 0 30px;
        padding-top: 140px;
    }

    .important-details {
        margin: 30px 30px 30px 30px;
    }

    .important-details li {
        margin-bottom: 16px;
        font-size: 16px;
    }

    .rigging-bundle {
        margin: 30px 30px 30px 30px;
    }

    .include-bundle {
        width: 99px;
        font-weight: 700;
        font-family: 'SF Pro Rounded', sans-serif;
        font-size: 16px;
        font-style: bold;
        padding: 4px 16px 4px 16px;
        border-radius: 24px;
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 100%;
        background: #ffffff;
        color: #C86C9B;
        border: solid 2px #C86C9B;
    }

    .note {
        width: 950px;
        font-weight: 700;
        font-family: 'SF Pro Rounded', sans-serif;
        font-size: 16px;
        font-style: bold;
        padding: 8px 16px 8px 16px;
        border-radius: 24px;
        line-height: 100%;
        background: #FFEEF6;
        color: #C86C9B;
        border: solid 1px #D2A3D2;
    }

    .note p {
        color: #662F4B;
        font-style: normal;
        font-weight: 400;
        margin-top: 1rem;
    }

    span {
        font-family: 'SF Pro Rounded';
        font-weight: 700;
        font-style: Bold;
        font-size: 18px;
        color: #662F4B;
    }

    .thanks {
        margin-top: 1rem;
    }

    /* Necessary programs section*/
    .necessary-programs {
        min-height: 100dvh !important;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .necessary-programs-title {
        font-size: 55px;
        text-align: center;
        margin-top: 2rem;
    }

    .necessary-programs-list {
        min-width: 450px;
        max-width: 900px;
        font-weight: 500;
        font-family: 'SF Pro Rounded', sans-serif;
        padding: 48px 32px 32px 48px;
        border-radius: 24px;
        margin: 20px 20px 20px 20px;
    }

    .necessary-programs-list li {
        margin-bottom: 24px;
    }

    /* Important Section*/
    .important {
        position: relative;
    }

    .bg-3blues img {
        margin-left: -6rem;
        margin-top: -22rem;
        width: 1200px;
        height: 1000px;
    }

    .important-list {
        width: 660px;
        min-height: 560px;
        padding: 32px 16px 16px 32px;
        margin-top: -6rem;
    }

    .important-list-title {
        font-size: 60px;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .important-list ul {
        font-size: 20px;
        font-weight: 400;
    }

    .important-list li {
        margin-bottom: 30px;
    }

    .circle-alert {
        margin-bottom: -2%;
    }

    /* Prices bottom section - Tablet*/
    /* Social Icons*/
    .social-icons {
        gap: 15px;
    }

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

    .social-icon img {
        width: 22px;
        height: 22px;
    }

    /* Character decoration- prices bottom*/
    .character-right {
        width: 200px;
        left: 0;
        bottom: 0;
    }

    ::-webkit-scrollbar {
        display: none;
    }
}

/* Mobile Styles*/
@media (max-width: 480px) {
    .loading-logo {
        max-width: 250px;
        justify-self: center !important;
    }

    .logo-image {
        height: 60px;
        width: 140px;
        position: absolute;
    }

    .container {
        margin-top: -60px;
        padding-bottom: 0;
    }

    .hero-section {
        padding: 20px 10px;
    }

    .main-title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 22px;
    }

    .description {
        font-size: 16px;
    }

    /* Back button*/
    .back-home-link {
        margin-bottom: 2rem;
        margin-left: 4px;
        border-radius: 200px;
        border-width: 4px;
        opacity: 1;
        border: 4px solid rgba(161, 235, 255, 1);
        padding: 4px 4px;
    }

    /* Duck and Cloud decorations */
    .duck-top-right {
        top: 0;
        right: 0;
        rotate: 180deg;
        width: 140px;
        height: 140px;
    }

    .duck-bottom-left {
        bottom: -40px;
        left: 10px;
        width: 160px;
        height: 160px;
    }

    .duck-top-left {
        left: 0;
        top: 12%;
        width: 94px;
        height: 194px;
    }

    /* Cloud decoration */
    .cloud-bottom {
        bottom: -2px;
        width: 100%;
    }

    /*Pricing table*/
    .pricing-section {
        width: 100%;
    }

    .header-cell,
    .header-cell-price,
    .category-cell,
    .service-cell,
    .price-cell {
        padding: 12px 8px;
        font-size: 12px;
    }

    .service-cell {
        font-size: 14px;
    }

    .price-tag {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Prices references*/
    .price-reference-title {
        font-size: 35px;
    }

    .price-reference-image img {
        height: 450px;
        width: 310px;
    }

    /* Base styles for all price circles */
    .price-reference-fb,
    .price-reference-sketch-color,
    .price-reference-sketch {
        width: 125px;
        height: 125px;
        font-size: 38px;
    }

    /* Full Body Illustration - $85 (Top Left Purple) */
    .price-reference-fb {
        left: -25px;
        top: 105px;
    }

    /* Sketch Color Full Body - $30 (Top Right Pink) */
    .price-reference-sketch-color {
        right: -32px;
        top: 235px;
    }

    /* Sketch Full Body - $20 (Bottom Left Blue) */
    .price-reference-sketch {
        left: -30px;
        bottom: 10px;
    }

    /* Price labels styling */
    .price-label {
        font-size: 10px;
        padding: 6px 4px;
        width: 100px;
    }

    .pricing-reference-table {
        width: 95%;
    }

    /* Decorative elements Ducks*/
    .duck-top-right-2 {
        width: 150px;
        height: 250px;
        top: 102%;
    }

    .duck-top-left-2 {
        top: 225%;
        z-index: 2;
        left: 0;
        width: 140px;
        height: 250px;
    }

    .duck-top-right-3 {
        display: none;
    }

    .duck-top-right-4 {
        top: 277%;
        z-index: 2;
        right: 0;
        width: 140px;
        height: 250px;
    }

    .relleno-blanco {
        height: 50px;
        width: 680px;
        margin-top: -2px;
    }

    .programs-cloud {
        width: 680px;
        rotate: 180deg;
        margin-top: -5px;
    }

    /* Service Description Section */
    .services-description-title {
        font-family: 'Chewy';
        color: #662F4B;
        font-weight: 400;
        font-style: normal;
        font-size: 35px;
        text-align: center;
    }

    .service-description-title {
        font-family: 'SF Pro Rounded';
        font-style: bold;
        font-weight: 700;
        color: #662F4B;
        margin-bottom: 16px;
    }

    ul {
        color: #662F4B;
        font-style: normal;
        font-family: 'SF Pro Rounded';
        font-size: 16px;
    }

    .commission-process {
        margin: 0 30px 0 30px;
        padding-top: 140px;
    }

    .important-details {
        margin: 30px 30px 30px 30px;
    }

    .important-details li {
        margin-bottom: 16px;
        font-size: 16px;
    }

    .rigging-bundle {
        margin: 30px 30px 30px 30px;
    }

    .include-bundle {
        width: 99px;
        font-weight: 700;
        font-family: 'SF Pro Rounded', sans-serif;
        font-size: 16px;
        font-style: bold;
        padding: 4px 16px 4px 16px;
        border-radius: 24px;
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 100%;
        background: #ffffff;
        color: #C86C9B;
        border: solid 2px #C86C9B;
    }

    .note {
        min-width: 250px;
        font-weight: 700;
        font-family: 'SF Pro Rounded', sans-serif;
        font-size: 16px;
        font-style: bold;
        padding: 8px 16px 8px 16px;
        border-radius: 24px;
        margin: 10px 10px 10px 10px;
        line-height: 100%;
        background: #FFEEF6;
        color: #C86C9B;
        border: solid 1px #D2A3D2;
    }

    .note p {
        color: #662F4B;
        font-style: normal;
        font-weight: 400;
        margin-top: 1rem;
    }

    span {
        font-family: 'SF Pro Rounded';
        font-weight: 700;
        font-style: Bold;
        font-size: 18px;
        color: #662F4B;
    }

    .thanks {
        margin-top: 1rem;
    }

    /* Necessary programs section*/
    .necessary-programs {
        background-image: url('../assets/fondo_de_patos.png');
        padding-bottom: 10rem;
    }

    .necessary-programs-title {
        font-family: 'Chewy', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 35px;
        text-align: center;
        color: #662F4B;
        margin-top: 2rem;
    }

    .necessary-programs-list {
        min-width: 250px;
        max-width: 600px;
        font-weight: 500;
        font-family: 'SF Pro Rounded', sans-serif;
        font-size: 16px;
        font-style: medium;
        padding: 32px 16px 16px 32px;
        border-radius: 24px;
        margin: 10px 10px 10px 10px;
        line-height: 100%;
        background: #ffffff;
        color: #662F4B;
    }

    .necessary-programs-list li {
        margin-bottom: 24px;
    }

    /* Important Section*/
    .important {
        position: relative;
    }

    .bg-3blues img {
        margin-left: -6rem;
        margin-top: -8rem;
        width: 700px;
        height: 1000px;
    }

    .important-list {
        width: 360px;
        min-height: 550px;
        padding: 32px 16px 16px 32px;
        margin: 0px 1rem 1rem 0px;
    }

    .important-list-title {
        font-size: 44px;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .important-list ul {
        font-size: 20px;
        font-weight: 400;
    }

    .important-list li {
        margin-bottom: 30px;
    }

    .circle-alert {
        margin-bottom: -2%;
    }

    /* Prices bottom section */
    .prices-bottom {
        background: linear-gradient(119.28deg, #FFFFFF 7.28%, #4EDAFF 118.25%);
        min-height: 100dvh;
        margin-top: -10rem;
        text-align: center;
        position: absolute;
        z-index: -1;
    }

    .contenido {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem;
    }

    .prices-bottom-title {
        font-family: 'Chewy', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 30px;
        color: #165566;
        margin-top: 8rem;
    }

    /* Cartel */
    .cartel-container {
        margin-top: 1rem;
    }

    .cartel {
        width: 140px;
        height: 115px;
        display: block;
        margin: 0 auto;
        transition: transform 0.3s ease;
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    }

    /* Prices bottom - Button */
    .contact-btn {
        margin-top: 1.5rem;
    }

    .contact-btn a {
        background: #E3348D;
        color: #fff;
        font-weight: bold;
        font-family: 'SF Pro Rounded';
        font-style: 700;
        text-decoration: none;
        padding: 10px 22px;
        border-radius: 16px;
        display: inline-block;
    }

    .mail {
        margin-bottom: -0.4rem;
        margin-right: 0.4rem;
    }

    /* Info text */
    .info {
        font-family: 'SF Pro Rounded';
        font-weight: 500;
        font-size: 16px;
        margin-top: 1rem;
        color: #3D95AC;
    }

    .info a {
        color: #E3348D;
        font-weight: 700;
    }

    /* Other Services */
    .other-services {
        font-family: 'Chewy', sans-serif;
        font-size: 28px;
        font-weight: 400;
        color: #4195AC;
        margin: 3rem 0 1rem;
    }

    /* Services Menu */
    .services-menu {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .services-menu a {
        font-family: 'Chewy', sans-serif;
        font-size: 20px;
        color: #5AC1DD;
        text-decoration: none;
    }

    .services-menu a.active {
        font-weight: bold;
        color: #165566;
    }

    .services-menu a:hover {
        font-weight: bold;
        color: #165566;
    }

    /* Follow */
    .follow {
        margin-bottom: 1rem;
        font-weight: 400;
        font-family: 'Chewy', sans-serif;
        font-size: 16px;
        color: #3D95AC;
    }

    /* Social Media*/
    .social-icons {
        gap: 12px;
    }

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

    .social-icon img {
        width: 20px;
        height: 20px;
    }

    /* Character decoration- prices bottom*/
    .character-right {
        display:none;
    }

    ::-webkit-scrollbar {
        display: none;
    }
}

/* Animaciones de Scroll */
.show-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.show-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInZoom {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Custom Scroll Bar*/
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: #E8F7FC;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #4EDAFF;
    border-radius: 10px;
    border: 3px solid #E8F7FC;
}

::-webkit-scrollbar-thumb:hover {
    background: #36B5E8;
}

/* Language switcher */
.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 60px;
    background-color: #c8f0d4;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-switcher.english {
    background-color: #b3d9ff;
}

.flag-container {
    position: absolute;
    width: 48px;
    height: 48px;
    top: 6px;
    left: 6px;
    transition: transform 0.3s ease;
    border-radius: 50%;
    overflow: hidden;
}

.language-switcher.english .flag-container {
    transform: translateX(60px);
}

.flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}