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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #F5E6FF 0%, #E8D5FF 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transform: translateY(-110px);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    width: 95%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 120px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
}

.logo-section {
    margin-bottom: 30px;
}

.logo {
    width: 150px;
    height: auto;
    opacity: 0.9;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.title-section {
    margin-bottom: 10px;
}

.main-title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    color: #333;
    text-align: center;
}

.highlight-red {
    color: #FF4444;
    font-weight: 900;
}

.highlight-green {
    color: #00CC66;
    font-weight: 900;
}

.image-section {
    margin: 20px 0;
}

.main-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.warning-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.warning-text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    text-align: center;
}

.attention {
    color: #FF4444;
    font-weight: 700;
    font-size: 15px;
}

.warning-text strong {
    font-weight: 700;
    color: #333;
}

.cta-section {
    margin-top: 25px;
}

.cta-button {
    background: linear-gradient(135deg, #00CC66 0%, #00AA55 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 204, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 204, 102, 0.4);
    background: linear-gradient(135deg, #00AA55 0%, #009944 100%);
}

.cta-button:active {
    transform: translateY(0);
}

/* Quiz Header Styles */

.quiz-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.back-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    position: absolute;
    left: 0;
}

.back-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.quiz-logo {
    width: 140px;
    height: auto;
    margin: 0 auto;
}

.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF69B4, #FF1493);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.question-section {
    margin-bottom: 40px;
    text-align: center;
}

.question-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.question-subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.4;
}

.highlight-orange {
    color: #FF4444;
    font-weight: 900;
}

.highlight-red-bg {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 8px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.option-button {
    background: rgba(255, 182, 193, 0.8);
    border: none;
    border-radius: 20px;
    padding: 8px 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
    min-height: 35px;
    width: 100%;
    max-width: none;
}

.option-button:hover {
    background: rgba(255, 182, 193, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
}

.option-button:active {
    transform: translateY(0);
}

.option-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.option-emoji {
    font-size: 48px;
    min-width: 60px;
    padding: 4px 12px 4px 0px;
    text-align: left;
    margin-left: -20px;
}

.option-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.option-arrow {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.option-button:hover .option-arrow {
    opacity: 1;
}

.result-section {
    text-align: center;
    padding: 40px 20px;
}

.result-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.result-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Image Options Styles */
.image-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
    max-width: fit-content;
}

.image-option {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image-option:hover {
    transform: translateY(-3px);
}

/* Unified Container - All Pink Background */
.image-container-unified {
    background: #FF9EC7;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 158, 199, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
    width: 100%;
}

.image-container-unified:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 158, 199, 0.4);
}

.image-container-unified .option-image {
    width: calc(100% - 20px);
    height: 250px;
    object-fit: cover;
    display: block;
    margin: 10px 10px 0 10px;
    border-radius: 20px;
}

.image-container-unified .option-button-integrated {
    background: #FF9EC7;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 100%;
    position: relative;
    min-height: 80px;
}

.image-container-unified .option-button-integrated .option-text {
    font-size: 22px;
    font-weight: 700;
    color: white;
    text-align: center;
    flex: 1;
}

.image-container-unified .option-button-integrated .option-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    width: 24px;
    height: 24px;
}

.image-container-unified .option-button-integrated .option-arrow path {
    stroke: white;
}

.image-container-unified:hover .option-arrow {
    opacity: 1;
}

/* Info Content Styles */
.info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.info-text-section {
    background: rgba(200, 255, 200, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(100, 200, 100, 0.2);
}

.info-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.info-text:last-child {
    margin-bottom: 0;
}

.highlight-bold {
    font-weight: 700;
    color: #333;
}

.before-after-section {
    margin: 30px 0;
}

.carousel-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 300px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-dots {
    text-align: center;
    padding: 15px 0 0 0;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.dot.active, .dot:hover {
    background-color: #FF69B4;
    border-color: #FF69B4;
}

.before-after-caption {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin: 0;
}

.continue-button {
    background: linear-gradient(135deg, #00CC66 0%, #00AA55 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 204, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 400px;
    margin-top: 30px;
}

.continue-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 204, 102, 0.4);
    background: linear-gradient(135deg, #00AA55 0%, #009944 100%);
}

/* Checkbox Options Styles */
.checkbox-options {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-option {
    background: rgba(255, 182, 193, 0.8);
    border: none;
    border-radius: 20px;
    padding: 8px 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
    min-height: 35px;
    width: 100%;
}

.checkbox-option:hover {
    background: rgba(255, 182, 193, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
}

.checkbox-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.checkbox-wrapper {
    position: relative;
    margin-left: 20px;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-label {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid #FF69B4;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-input:checked + .checkbox-label {
    background-color: #FF69B4;
    border-color: #FF69B4;
}

.checkbox-input:checked + .checkbox-label:after {
    display: block;
}

.checkbox-continue {
    margin-top: 20px;
    max-width: 400px;
    align-self: center;
}

.checkbox-continue.disabled {
    background: #ccc !important;
    pointer-events: none;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

/* Simple Option Button Styles */
.simple-option-button {
    background: rgba(255, 182, 193, 0.8);
    border: none;
    border-radius: 20px;
    padding: 20px 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
    min-height: 65px;
    width: 100%;
    max-width: none;
    margin-bottom: 12px;
}

.simple-option-button:hover {
    background: rgba(255, 182, 193, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
}

.simple-option-button:active {
    transform: translateY(0);
}

.simple-option-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    flex: 1;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 480px) {
    body {
        padding: 5px;
    }
    
    .container {
        max-width: none;
        width: 98%;
        padding: 80px 20px;
        margin: 5px;
    }
    
    .main-title {
        font-size: 20px;
    }
    
    .logo {
        width: 120px;
    }
    
    .main-image {
        max-width: 300px;
    }
    
    .warning-text {
        font-size: 13px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 15px 30px;
    }
    

    
    .quiz-header {
        margin-bottom: 25px;
    }
    
    .quiz-logo {
        width: 110px;
    }
    
    .question-title {
        font-size: 22px;
    }
    
    .question-subtitle {
        font-size: 14px;
        margin-top: 8px;
    }
    
    .option-button {
        padding: 6px 40px;
        min-height: 30px;
        max-width: none;
    }
    
    .option-emoji {
        font-size: 40px;
        min-width: 50px;
        padding: 2px 8px 2px 0px;
        margin-left: -15px;
    }
    
    .option-text {
        font-size: 16px;
    }
    
    .progress-container {
        margin-bottom: 30px;
    }
    
    .question-section {
        margin-bottom: 30px;
    }
    
    .image-options {
        gap: 15px;
    }
    
    .image-container-unified .option-image {
        height: 200px;
        margin: 8px 8px 0 8px;
    }
    
    .image-container-unified .option-button-integrated {
        padding: 20px 22px;
        min-height: 65px;
    }
    
    .image-container-unified .option-button-integrated .option-text {
        font-size: 18px;
    }
    
    .image-container-unified .option-button-integrated .option-arrow {
        right: 20px;
        width: 22px;
        height: 22px;
    }
    
    .info-content {
        max-width: 600px;
    }
    
    .info-text-section {
        padding: 20px;
    }
    
    .info-text {
        font-size: 14px;
    }
    
    .carousel-container {
        max-width: 350px;
    }
    
    .carousel-track {
        height: 250px;
    }
    
    .dot {
        height: 10px;
        width: 10px;
    }
    
    .continue-button {
        font-size: 16px;
        padding: 15px 30px;
    }
    
    .checkbox-options {
        max-width: 600px;
    }
    
    .checkbox-option {
        padding: 6px 40px;
        min-height: 30px;
    }
    
    .checkbox-label {
        width: 20px;
        height: 20px;
    }
    
    .checkbox-label:after {
        left: 5px;
        top: 2px;
        width: 5px;
        height: 10px;
        border-width: 0 2px 2px 0;
    }
    
    .simple-option-button {
        padding: 16px 40px;
        min-height: 55px;
    }
    
    .simple-option-text {
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .main-title {
        font-size: 18px;
    }
    
    .main-image {
        max-width: 250px;
    }
    
    .question-title {
        font-size: 20px;
    }
    
    .question-subtitle {
        font-size: 13px;
    }
    
    .option-text {
        font-size: 15px;
    }
    
    .image-options {
        gap: 12px;
    }
    
    .image-container-unified .option-image {
        height: 170px;
        margin: 6px 6px 0 6px;
    }
    
    .image-container-unified .option-button-integrated {
        padding: 18px 20px;
        min-height: 55px;
    }
    
    .image-container-unified .option-button-integrated .option-text {
        font-size: 17px;
    }
    
    .image-container-unified .option-button-integrated .option-arrow {
        right: 18px;
        width: 20px;
        height: 20px;
    }
}

/* Height Selector Styles */
.height-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 350px;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 20px 0;
}

.unit-toggle {
    display: flex;
    background: rgba(255, 182, 193, 0.4);
    border-radius: 25px;
    padding: 4px;
    gap: 3px;
}

.unit-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
}

.unit-btn.active {
    background: #FF69B4;
    color: white;
    box-shadow: 0 2px 6px rgba(255, 105, 180, 0.3);
}

.unit-btn:hover:not(.active) {
    background: rgba(255, 105, 180, 0.15);
    color: #FF69B4;
}

.height-display {
    text-align: center;
    margin: 20px 0;
}

.height-value {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.height-unit {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-left: 3px;
}

.height-slider-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    min-height: 120px;
}

.ruler-background {
    position: absolute;
    width: 500%;
    height: 120px;
    top: -60px;
    left: -200%;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.ruler-line {
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.ruler-line.major {
    width: 1px;
    height: 80px;
    top: 20px;
    background: rgba(0, 0, 0, 0.4);
}

.ruler-line.minor {
    width: 1px;
    height: 35px;
    top: 42px;
    background: rgba(0, 0, 0, 0.15);
}

.ruler-line.medium {
    width: 1px;
    height: 55px;
    top: 32px;
    background: rgba(0, 0, 0, 0.25);
}

.ruler-line.micro {
    width: 1px;
    height: 20px;
    top: 50px;
    background: rgba(0, 0, 0, 0.1);
}

.height-slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.height-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FF69B4;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(255, 105, 180, 0.4);
    transition: all 0.2s ease;
    position: relative;
}

.height-slider::-webkit-slider-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.5);
}

.height-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FF69B4;
    cursor: pointer;
    border: none;
    box-shadow: 0 3px 8px rgba(255, 105, 180, 0.4);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    margin-top: 8px;
}

.slider-instruction {
    font-size: 13px;
    color: #aaa;
    font-style: italic;
    margin: 10px 0 0 0;
    font-weight: 400;
}

.height-continue {
    margin-top: 25px;
}

/* Mobile styles for height selector */
@media (max-width: 480px) {
    .height-selector {
        gap: 25px;
        max-width: 100%;
    }
    
    .height-value {
        font-size: 40px;
    }
    
    .height-unit {
        font-size: 20px;
    }
    
    .unit-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .height-slider {
        height: 6px;
    }
    
    .height-slider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
    }
    
    .slider-labels {
        font-size: 11px;
    }
    
    .slider-instruction {
        font-size: 12px;
    }
}

/* Loading Screen Styles */

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
}

.loading-text-section {
    text-align: center;
    margin-bottom: 20px;
}

.loading-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.progress-percentage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.percentage-bar {
    width: 200px;
    height: 8px;
    background-color: rgba(255, 192, 203, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.percentage-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF69B4, #FF1493);
    border-radius: 10px;
    transition: width 2s ease;
}

.percentage-text {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

.testimonial-section {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
}

.loading-carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-carousel-track {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.loading-carousel-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.loading-carousel-slide.active {
    display: block;
    opacity: 1;
}

.loading-carousel-img {
    width: 100%;
    max-width: 550px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

.loading-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    width: 100%;
}

.loading-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 105, 180, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.loading-dot.active, .loading-dot:hover {
    background-color: #FF69B4;
    transform: scale(1.2);
}

/* Estilos responsivos para loading */
@media (max-width: 480px) {
    .loading-content {
        gap: 30px;
        padding: 15px 0;
    }

    .loading-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .percentage-bar {
        width: 180px;
        height: 6px;
    }

    .percentage-text {
        font-size: 14px;
    }

    .loading-carousel-container {
        padding: 25px;
        margin: 0 15px;
        max-width: 480px;
    }

    .loading-carousel-img {
        height: 450px;
        max-width: 420px;
    }

    .loading-carousel-dots {
        margin-top: 20px;
        gap: 10px;
    }

    .loading-dot {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 360px) {
    .loading-subtitle {
        font-size: 16px;
    }

    .percentage-bar {
        width: 160px;
    }

    .loading-carousel-container {
        max-width: 420px;
        padding: 20px;
        margin: 0 10px;
    }

    .loading-carousel-img {
        height: 380px;
        max-width: 360px;
    }

    .loading-carousel-dots {
        margin-top: 18px;
        gap: 8px;
    }

    .loading-dot {
        width: 12px;
        height: 12px;
    }
}

/* Analysis Screen Styles */

.analysis-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
    max-width: 600px;
    margin: 0 auto;
}

.imc-section {
    background: rgba(255, 200, 150, 0.8);
    border-radius: 10px;
    padding: 15px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.imc-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.imc-value {
    background: #FF4444;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
}

.analysis-title-section {
    text-align: center;
    margin: 10px 0;
}

.analysis-title {
    background: #00CC66;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.analysis-message {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.weight-chart-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 5;
    overflow: visible;
    max-width: 550px;
    margin: 0 auto;
}

.weight-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.weight-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.weight-indicator.current .weight-value {
    background: linear-gradient(135deg, #F87171 0%, #DC2626 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 
        0 4px 12px rgba(239, 68, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.weight-indicator.target .weight-value {
    background: linear-gradient(135deg, #FDE047 0%, #EAB308 100%);
    color: #713F12;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 
        0 4px 12px rgba(250, 204, 21, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.weight-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.chart-container {
    margin: 25px 0;
    text-align: center;
    position: relative;
    height: 320px;
    background: transparent;
    border-radius: 18px;
    overflow: visible;
    width: 100%;
    z-index: 10;
}

#weightChart {
    max-width: 100%;
    height: 320px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 15;
}



.before-after-analysis {
    text-align: center;
    margin: 20px 0;
}

.analysis-before-after-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.analysis-continue {
    margin-top: 20px;
}

/* Estilos responsivos para analysis */
@media (max-width: 480px) {
    .analysis-content {
        gap: 20px;
        padding: 15px;
    }

    .imc-section {
        padding: 12px 15px;
    }

    .imc-label {
        font-size: 14px;
    }

    .imc-value {
        font-size: 14px;
        padding: 3px 10px;
    }

    .analysis-title {
        font-size: 16px;
        padding: 8px 16px;
    }

    .analysis-message {
        font-size: 14px;
    }

    .chart-container {
        height: 280px;
        margin: 20px 0;
    }

    #weightChart {
        height: 280px;
    }

    .weight-chart-section {
        padding: 20px;
    }

    .weight-indicators {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }


}

@media (max-width: 360px) {
    .analysis-title {
        font-size: 14px;
        padding: 6px 12px;
    }

    .analysis-message {
        font-size: 13px;
    }

        .weight-chart-section {
        padding: 12px;
    }

 
}

/* Estilos para a tela de oferta */
.offer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
    max-width: 800px;
    margin: 0 auto;
}

.offer-header {
    text-align: center;
    margin-bottom: 20px;
}

.title-container {
    background: transparent;
    border-radius: 15px;
    padding: 5px 20px;
    margin-bottom: 10px;
}

.offer-title {
    font-size: 28px !important;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

.title-emoji {
    font-size: 32px !important;
    margin-right: 5px;
}

.title-text {
    color: black;
    font-size: 24px !important;
    font-weight: 600;
}

.title-highlight {
    color: #22c55e;
    font-size: inherit;
    font-weight: inherit;
}

.title-ready {
    color: black;
    font-size: 24px !important;
    font-weight: 600;
}

.offer-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.benefits-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #f3e5f5 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #81c784;
}

.benefits-list {
    margin-bottom: 25px;
}

.benefit-item {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    padding-left: 5px;
}

.exclusive-bonuses {
    background: linear-gradient(135deg, #fff9c4 0%, #ffeaa7 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #f39c12;
}

.bonuses-title {
    font-size: 18px;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 15px;
    text-align: center;
}

.bonus-item {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    padding-left: 5px;
}

.bonus-item:nth-child(even) {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonials-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 25px;
}

.testimonials-header-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-carousel {
    position: relative;
    margin-bottom: 25px;
}

.testimonials-track {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

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

.testimonial-dot.active,
.testimonial-dot:hover {
    background: #e53e3e;
    transform: scale(1.2);
}

.mentor-profile-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffeaa7 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e74c3c;
}

.mentor-header {
    text-align: center;
    margin-bottom: 20px;
}

.mentor-header-title {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mentor-photo-container {
    text-align: center;
    margin: 20px 0;
}

.mentor-photo {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.mentor-name-card {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
}

.mentor-name {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.mentor-specialty {
    color: #2c3e50;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.mentor-achievements {
    background: linear-gradient(135deg, #e8f5e8 0%, #d5f4e6 100%);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

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

.achievement-item:last-child {
    margin-bottom: 0;
}

.achievement-icon {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.achievement-text {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.4;
}

.mentor-testimonials {
    margin: 20px 0;
}

.mentor-testimonial {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    flex-shrink: 0;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-stars {
    color: #f1c40f;
    font-size: 14px;
    margin-bottom: 5px;
}

.testimonial-author {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 3px 0;
}

.testimonial-time {
    color: #7f8c8d;
    font-size: 12px;
    margin: 0 0 8px 0;
}

.testimonial-text {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.protocol-complete {
    background: linear-gradient(135deg, #e8f5e8 0%, #d5f4e6 100%);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.protocol-title {
    color: #27ae60;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-align: center;
}

.protocol-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.protocol-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.protocol-check {
    color: #27ae60;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.protocol-text {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.4;
}

.bonus-list {
    margin: 20px 0;
}

.bonus-item-card {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-icon {
    font-size: 16px;
}

.bonus-text {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
}

.value-section {
    background: linear-gradient(135deg, #e1bee7 0%, #f8bbd9 100%);
    border-radius: 15px;
    padding: 12px 16px;
    text-align: center;
    margin: 15px 0;
}

.promo-text {
    color: #2c3e50;
    font-size: 12px;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.final-price-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.price-label {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
}

.old-price-small {
    color: #7f8c8d;
    font-size: 12px;
    text-decoration: line-through;
}

.bonus-label {
    background: #27ae60;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6px;
}

.current-price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 3px;
}

.currency {
    color: #27ae60;
    font-size: 18px;
    font-weight: 700;
}

.price-value {
    color: #27ae60;
    font-size: 28px;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button-final {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.cta-button-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button-final:hover::before {
    left: 100%;
}

.cta-button-final:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(39, 174, 96, 0.5);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
        transform: scale(1);
    }
}

.rating-stars {
    color: #f1c40f;
    font-size: 14px;
    margin-top: 2px;
}

.mentor-section {
    background: transparent;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
}

.guarantee-badge-section {
    margin-bottom: 30px;
}

.guarantee-badge-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.guarantee-badge-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.guarantee-text-large {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-description h4 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.guarantee-description p {
    color: #34495e;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 12px 0;
    text-align: center;
}

.faq-section {
    background: transparent;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.faq-title {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: center;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 10px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #27ae60;
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: #27ae60;
}

.faq-arrow.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.faq-answer.open {
    max-height: 200px;
    padding: 0 15px 15px 15px;
}

.faq-answer p {
    color: #34495e;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.countdown-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    color: white;
}

.countdown-timer {
    text-align: center;
    margin-bottom: 15px;
}

.countdown-text {
    font-size: 14px;
    margin: 0 0 5px 0;
}

#countdown {
    font-weight: 700;
    font-size: 16px;
    color: #f1c40f;
}

.countdown-warning {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

.final-cta-button {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    position: relative;
    overflow: hidden;
    animation: finalButtonGlow 3s ease-in-out infinite;
}

.final-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s;
}

.final-cta-button:hover::before {
    left: 100%;
}

.final-cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
    animation: none;
}

@keyframes finalButtonGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(39, 174, 96, 0.5), 0 0 30px rgba(39, 174, 96, 0.3);
        transform: scale(1.01);
    }
}

.pricing-section {
    background: linear-gradient(135deg, #e1bee7 0%, #f8bbd9 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-original {
    margin-bottom: 20px;
}

.original-price {
    font-size: 20px;
    text-decoration: line-through;
    color: #e74c3c;
    display: block;
    margin-bottom: 5px;
}

.savings-text {
    font-size: 14px;
    color: #8e44ad;
    font-weight: bold;
}

.pricing-current {
    margin-bottom: 25px;
}

.current-label {
    font-size: 14px;
    color: #e2e8f0;
    display: block;
    margin-bottom: 8px;
}

.current-price {
    font-size: 36px;
    font-weight: 900;
    color: #2ecc71;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.buy-button {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.6);
}

.buy-button:active {
    transform: translateY(-1px);
}

.extra-info {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item {
    color: #2c3e50;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.guarantee-section {
    margin-top: 20px;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

.guarantee-text {
    font-size: 14px;
    color: #e2e8f0;
    display: block;
    margin-bottom: 5px;
}

.guarantee-days {
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
}

/* Responsividade para a tela de oferta */
@media (max-width: 480px) {
    .offer-content {
        gap: 20px;
        padding: 15px;
    }

    .title-container {
        padding: 5px 15px;
        margin-bottom: 10px;
    }

    .title-text {
        font-size: 20px !important;
        color: black;
    }

    .title-highlight {
        font-size: inherit;
        color: #22c55e;
        font-weight: inherit;
    }

    .title-ready {
        font-size: 20px !important;
        color: black;
    }

    .title-emoji {
        font-size: 24px !important;
        margin-right: 3px;
    }

    .offer-subtitle {
        font-size: 14px;
    }

    .benefits-section {
        padding: 20px;
    }

    .exclusive-bonuses {
        padding: 20px;
    }

    .benefit-item {
        font-size: 14px;
    }

    .bonus-item {
        font-size: 13px;
    }

    .testimonials-section {
        padding: 20px;
    }

    .testimonials-track {
        height: 300px;
    }

    .mentor-images {
        gap: 15px;
    }

    .mentor-section {
        padding: 20px;
    }

    .guarantee-badge-img {
        width: 100px;
        height: 100px;
    }

    .faq-section {
        padding: 15px;
    }

    .faq-question {
        font-size: 13px;
    }

    .countdown-section {
        padding: 15px;
    }

    .final-cta-button {
        padding: 12px 20px;
        font-size: 12px;
    }

    .mentor-profile-section {
        padding: 20px;
    }

    .mentor-photo {
        max-width: 250px;
    }

    .mentor-name {
        font-size: 18px;
    }

    .mentor-specialty {
        font-size: 13px;
    }

    .achievement-text {
        font-size: 13px;
    }

    .mentor-testimonial {
        padding: 12px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .protocol-text {
        font-size: 13px;
    }

    .bonus-text {
        font-size: 13px;
    }

    .price-value {
        font-size: 24px;
    }

    .currency {
        font-size: 16px;
    }

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

    .pricing-section {
        padding: 25px;
    }

    .current-price {
        font-size: 28px;
    }

    .buy-button {
        padding: 15px 25px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .title-container {
        padding: 5px 12px;
    }

    .title-text {
        font-size: 18px !important;
        color: black;
    }

    .title-highlight {
        font-size: inherit;
        color: #22c55e;
        font-weight: inherit;
    }

    .title-ready {
        font-size: 18px !important;
        color: black;
    }

    .title-emoji {
        font-size: 22px !important;
        margin-right: 2px;
    }

    .testimonials-track {
        height: 250px;
    }

    .mentor-images {
        gap: 12px;
    }

    .mentor-section {
        padding: 15px;
    }

    .guarantee-badge-img {
        width: 80px;
        height: 80px;
    }

    .faq-section {
        padding: 12px;
    }

    .faq-question {
        font-size: 12px;
        padding: 12px 0;
    }

    .countdown-section {
        padding: 12px;
    }

    .countdown-text {
        font-size: 12px;
    }

    .final-cta-button {
        padding: 10px 15px;
        font-size: 11px;
    }

    .mentor-profile-section {
        padding: 15px;
    }

    .mentor-photo {
        max-width: 200px;
    }

    .mentor-name {
        font-size: 16px;
    }

    .mentor-specialty {
        font-size: 12px;
    }

    .achievement-text {
        font-size: 12px;
    }

    .mentor-testimonial {
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }

    .avatar-img {
        width: 40px;
        height: 40px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    .protocol-text {
        font-size: 12px;
    }

    .bonus-text {
        font-size: 12px;
    }

    .price-value {
        font-size: 20px;
    }

    .currency {
        font-size: 14px;
    }

    .cta-button-final {
        padding: 12px 16px;
        font-size: 13px;
    }

    .rating-stars {
        font-size: 12px;
    }

    .current-price {
        font-size: 24px;
    }
}  