.main-container {
    background-image: url(assets/img/hero-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-title {
    font-size: 60px !important;
    color: #FF8E38 !important;
}

.subtitle {
    color: #5C5C5C !important;
}

.navbar-btn {
    background-color: #21392A !important;
    color: #fff !important;
    align-self: center;
    height: 60px !important;
    width: 12%;
    font-size: 1rem !important;
    word-spacing: 0.2rem !important;
    font-weight: 550 !important;
}

/* Estilos del stepper */
.stepper-container {
    background-color: #FCE9DB;
    min-height: 100vh;
    padding: 3rem 0;
    padding-top: 6rem;
}

.stepper-main-title {
    color: #22392A;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
}

.stepper-main-subtitle {
    color: #5C5C5C;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.stepper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.stepper-line {
    position: absolute;
    top: 35%;
    left: 25px;
    right: 25px;
    height: 15px;
    background-color: #E0E0E0;
    z-index: 1;
}

.stepper-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #FF8E38;
    width: 0%;
    transition: width 0.3s ease;
}

.stepper-step {
    width: 50px;
    height: 50px;
    background-color: #FFB084;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.stepper-step span {
    transform: rotate(-45deg);
}

.stepper-step.active {
    background-color: #FF8E38;
}

.stepper-step.completed {
    background-color: #FF8E38;
}

.stepper-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    color: #A0A0A0;
    font-weight: 600;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 25px;
}

.stepper-label {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.stepper-label.active {
    color: #FF8E38;
}

.step-content {
    background-color: transparent;
    border-radius: 20px;
    padding: 3rem;
    max-width: 1200px;
    margin: 10px auto;
}

.step-title {
    color: #22392A;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: left;
    margin-bottom: 1rem;
}

.step-subtitle {
    color: #5C5C5C;
    font-size: 1.3rem;
    text-align: left;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    color: #22392A;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    margin-left: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #5C5C5C;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-input:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(255, 142, 56, 0.15);
    border: 2px solid #FF8E38;
}

.form-input::placeholder {
    color: #A0A0A0;
    font-weight: 400;
}

.form-input.required {
    border: 2px solid #FF8E38;
}

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

.dietary-options.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.dietary-options.four-columns {
    grid-template-columns: repeat(4, 1fr);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.dietary-option {
    background-color: #FFB084;
    border: none;
    border-radius: 15px;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dietary-option:hover {
    background-color: #FF8E38;
    transform: translateY(-2px);
}

.dietary-option.selected {
    background-color: #FF8E38;
    transform: translateY(-2px);
}

.dietary-option i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.food-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.food-type-option {
    background-color: #f8f9fa;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.food-type-option:hover {
    border-color: #FF8E38;
    transform: translateY(-2px);
}

.food-type-option.selected {
    border-color: #FF8E38;
    background-color: #FFF5EB;
}

.food-type-option h4 {
    color: #22392A;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.food-type-option p {
    color: #5C5C5C;
    font-size: 1rem;
    margin: 0;
}

.plan-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.plan-option {
    background-color: #22392A;
    border: none;
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    color: white;
    min-height: 300px;
}

.plan-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.plan-option.selected {
    background-color: #FF8E38;
    transform: translateY(-5px);
}

.plan-option h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.plan-option ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-option li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.plan-option li i {
    color: #83BB00;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.btn-next {
    background-color: #FF8E38;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    gap: 0.5rem;
    min-width: 180px;
}

.btn-next:hover {
    background-color: #ff7300;
    transform: translateY(-2px);
}

.btn-next::after {
    content: '→';
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.btn-next:hover::after {
    transform: translateX(5px);
}

.btn-prev {
    background-color: transparent;
    color: #FF8E38;
    border: 2px solid #FF8E38;
    border-radius: 30px;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 2rem;
    margin-right: 1rem;
}

.btn-prev:hover {
    background-color: #FF8E38;
    color: white;
}

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.hidden {
    display: none;
}

/* Footer styles */
.footer {
    background-color: #22392A !important;
    padding: 2rem 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

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

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background-color: #B6E11A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22392A;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background 0.3s;
}

.footer-social-icon:hover {
    background-color: #83BB00;
}

.footer-contact {
    color: #B6E11A;
    text-align: right;
    font-size: 1rem;
}

.footer-contact a {
    color: #B6E11A;
    text-decoration: none;
    font-weight: bold;
}

.footer-platforms {
    display: flex;
    gap: 1rem;
}

.footer-delivery-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    color: #fff;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    text-align: left;
}

@media (max-width: 1199.98px) {
    .dietary-options.four-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .stepper-main-title {
        font-size: 1.8rem;
    }

    .stepper-main-subtitle {
        font-size: 1rem;
    }

    .stepper-step {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .stepper-label {
        font-size: 0.8rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .form-input {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .btn-next {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        min-width: 120px;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .step-title[style*="font-size: 2rem"] {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 991.98px) {
    .stepper-main-title {
        font-size: 2rem;
    }

    .stepper-main-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .stepper-header {
        padding: 0 15px;
        max-width: 100%;
    }

    .stepper-line {
        left: 15px;
        right: 15px;
    }

    .stepper-step {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stepper-labels {
        padding: 0 15px;
        max-width: 100%;
    }

    .stepper-label {
        font-size: 0.9rem;
    }

    .step-content {
        padding: 2rem;
        margin: 0 1rem;
        max-width: 100%;
    }

    .step-title {
        font-size: 2rem;
        text-align: center;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-input {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .btn-next {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        min-width: 150px;
    }

    .form-label {
        font-size: 1rem;
        margin-left: 0.2rem;
    }

    .step-title[style*="font-size: 2rem"] {
        font-size: 1.5rem !important;
    }

    .dietary-options.two-columns,
    .dietary-options.four-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .dietary-option {
        min-height: 80px;
        padding: 1rem;
        font-size: 0.9rem;
    }

    .footer-flex {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

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

    .footer-menu ul {
        flex-direction: row;
        gap: 2rem;
    }

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

/* Estilos para la selección de platillos */
.plan-info {
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.plan-info h3 {
    color: #22392A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.plan-restrictions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.restriction-info {
    background-color: #FCE9DB;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.restriction-info h4 {
    color: #22392A;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.restriction-info span {
    color: #FF8E38;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.restriction-info span.count-complete {
    color: #83BB00;
    background-color: rgba(131, 187, 0, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-weight: 700;
}

.day-selection-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.day-selection-card h4 {
    color: #22392A;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
}

.meals-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.meal-selection h5 {
    color: #22392A;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.dish-select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    font-size: 1rem;
    color: #5C5C5C;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dish-select:focus {
    outline: none;
    border-color: #FF8E38;
    box-shadow: 0 4px 15px rgba(255, 142, 56, 0.15);
}

.dish-select:hover {
    border-color: #FF8E38;
}

.dish-select option {
    padding: 0.5rem;
    font-size: 0.9rem;
}

.dish-plan-panel .restriction-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.dish-plan-panel .restriction-info h4 {
    width: 100%;
}

.dish-plan-panel .restriction-info span {
    display: inline-block;
    background-color: rgba(255, 142, 56, 0.12);
    padding: 0.25rem 0.7rem;
    border-radius: 15px;
}

.dish-progress {
    margin-top: 1.25rem;
}

.dish-progress-track {
    height: 10px;
    background-color: #E0E0E0;
    border-radius: 999px;
    overflow: hidden;
}

.dish-progress-fill {
    height: 100%;
    width: 0;
    background-color: #83BB00;
    border-radius: 999px;
    transition: width 0.25s ease;
}

.dish-progress-label {
    text-align: center;
    color: #22392A;
    font-weight: 600;
    margin: 0.75rem 0 0;
}

.dish-picker {
    background-color: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.dish-day-tabs,
.dish-meal-tabs,
.dish-type-filters {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.dish-day-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.dish-day-tab,
.dish-meal-tab,
.dish-chip,
.dish-nav-btn,
.dish-clear-btn,
.dish-overview-jump {
    border: 2px solid #E0E0E0;
    background: #fff;
    color: #22392A;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dish-day-tab {
    flex: 0 0 auto;
}

.dish-day-tab.active,
.dish-meal-tab.active,
.dish-chip.active {
    background-color: #FF8E38;
    border-color: #FF8E38;
    color: #fff;
}

.dish-day-tab.complete:not(.active) {
    border-color: #83BB00;
    color: #22392A;
    background-color: rgba(131, 187, 0, 0.12);
}

.dish-day-check {
    margin-left: 0.25rem;
    color: inherit;
}

.dish-meal-tabs {
    margin-bottom: 1rem;
}

.dish-meal-tab.has-selection:not(.active) {
    border-color: #FF8E38;
}

.dish-toolbar {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.dish-search {
    border-radius: 15px;
    box-shadow: none;
    border: 2px solid #E0E0E0;
}

.dish-selected-banner {
    margin-bottom: 1rem;
}

.dish-selected-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #FFF5EB;
    border: 2px solid #FF8E38;
    border-radius: 16px;
    padding: 0.8rem 1rem;
}

.dish-clear-btn {
    margin-left: auto;
    border-color: #FF6B6B;
    color: #FF6B6B;
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 0.9rem;
}

.dish-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
    background: #f8f9fa;
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 150px;
}

.dish-card:hover:not(:disabled) {
    border-color: #FF8E38;
    transform: translateY(-2px);
}

.dish-card.selected {
    border-color: #FF8E38;
    background-color: #FFF5EB;
    box-shadow: 0 4px 15px rgba(255, 142, 56, 0.18);
}

.dish-card.disabled,
.dish-card:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.dish-card-icon {
    font-size: 1.6rem;
}

.dish-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dish-card-body strong {
    color: #22392A;
    font-size: 1.05rem;
}

.dish-card-desc {
    color: #5C5C5C;
    font-size: 0.9rem;
    line-height: 1.35;
}

.dish-card-type {
    margin-top: auto;
    background-color: rgba(34, 57, 42, 0.08);
    color: #22392A;
    border-radius: 999px;
    padding: 0.15rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.dish-card-full {
    color: #FF6B6B;
    font-size: 0.8rem;
    font-weight: 700;
}

.dish-empty {
    text-align: center;
    color: #5C5C5C;
    margin: 1.5rem 0;
}

.dish-day-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.dish-day-actions-nav {
    display: flex;
    gap: 0.6rem;
    margin-left: auto;
}

.dish-nav-btn-solid {
    background-color: #FF8E38;
    border-color: #FF8E38;
    color: #fff;
}

.dish-nav-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.dish-overview {
    background: #fff;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 0.5rem;
}

.dish-overview summary {
    cursor: pointer;
    font-weight: 700;
    color: #22392A;
}

.dish-overview-days {
    list-style: none;
    padding: 1rem 0 0;
    margin: 0;
}

.dish-overview-days li {
    display: grid;
    grid-template-columns: 90px 1fr 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid #E0E0E0;
    color: #5C5C5C;
}

.dish-overview-jump {
    padding: 0.35rem 0.7rem;
    font-size: 0.85rem;
}

@media (max-width: 767.98px) {
    .dish-toolbar {
        grid-template-columns: 1fr;
    }

    .dish-grid {
        grid-template-columns: 1fr;
    }

    .dish-day-actions,
    .dish-day-actions-nav {
        width: 100%;
    }

    .dish-nav-btn {
        flex: 1;
    }

    .dish-overview-days li {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

/* Responsive para selección de platillos */
@media (max-width: 991.98px) {
    .plan-restrictions {
        grid-template-columns: 1fr;
    }

    .meals-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .day-selection-card {
        padding: 1rem;
    }

    .plan-info {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .plan-info h3 {
        font-size: 1.2rem;
    }

    .restriction-info {
        padding: 1rem;
    }

    .restriction-info h4 {
        font-size: 1rem;
    }

    .restriction-info span {
        font-size: 0.8rem;
    }

    .day-selection-card h4 {
        font-size: 1.1rem;
    }

    .meal-selection h5 {
        font-size: 1rem;
    }

    .dish-select {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* Estilos para la recomendación nutricional */
.recommendation-section {
    background: linear-gradient(135deg, #FFF5EB 0%, #FFE5D0 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #FF8E38;
}

.calorie-info h3 {
    color: #22392A;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.calorie-details {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calorie-details p {
    color: #5C5C5C;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.calorie-details span {
    display: block;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    border-radius: 15px;
}

#calorie-calculation {
    background-color: #FF8E38;
    color: white;
    font-size: 1.1rem;
}

#recommended-package {
    background-color: #83BB00;
    color: white;
    font-size: 1rem;
}

.recommendation-message {
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
}

.recommendation-text {
    color: #22392A;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

/* Estilos para la selección de tipo de comida */
.meal-type-selection {
    margin-bottom: 2rem;
}

.meal-type-selection h3 {
    color: #22392A;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Estilos para la selección de paquetes */
.package-selection h3 {
    color: #22392A;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.package-type-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.package-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package-type-card.package-recommended {
    border-color: #FFD700;
    position: relative;
}

.package-type-card.package-recommended::before {
    content: "RECOMENDADO";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FFD700;
    color: #22392A;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 10;
}

.package-header {
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.package-header h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.package-header p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.calorie-range {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-options {
    padding: 1rem;
}

.package-option {
    background-color: #f8f9fa;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-option:hover {
    border-color: #FF8E38;
    background-color: #FFF5EB;
    transform: translateY(-2px);
}

.package-option.selected {
    border-color: #FF8E38;
    background-color: #FFF5EB;
    box-shadow: 0 4px 15px rgba(255, 142, 56, 0.2);
}

.option-details h5 {
    color: #22392A;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.option-details p {
    color: #5C5C5C;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.price {
    color: #FF8E38;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    background-color: rgba(255, 142, 56, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

/* Responsive para paquetes nutricionales */
@media (max-width: 991.98px) {
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .recommendation-section {
        padding: 1.5rem;
    }

    .package-header {
        padding: 1rem;
    }

    .package-header h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .recommendation-section {
        padding: 1rem;
    }

    .calorie-info h3 {
        font-size: 1.2rem;
    }

    .calorie-details span {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .recommendation-text {
        font-size: 0.9rem;
    }

    .package-selection h3 {
        font-size: 1.1rem;
    }

    .package-header h4 {
        font-size: 1rem;
    }

    .package-header p {
        font-size: 0.8rem;
    }

    .option-details h5 {
        font-size: 1rem;
    }

    .option-details p {
        font-size: 0.8rem;
    }

    .price {
        font-size: 1rem;
    }
}

/* Estilos para el paso 3 - Resumen del plan */
.plan-summary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card,
.nutrition-summary,
.price-summary {
    background-color: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #E0E0E0;
}

.summary-card h3,
.nutrition-summary h3,
.price-summary h3 {
    color: #22392A;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.plan-type {
    margin-bottom: 1rem;
}

.plan-type h4 {
    color: #FF8E38;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.plan-badge {
    background-color: #83BB00;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.plan-description {
    text-align: left;
}

.plan-description p {
    color: #5C5C5C;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.plan-description strong {
    color: #22392A;
}

.nutrition-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.calorie-info {
    text-align: center;
    flex: 1;
}

.calorie-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF8E38;
    margin-bottom: 0.3rem;
}

.calorie-label {
    font-size: 0.9rem;
    color: #5C5C5C;
}

.package-type-info {
    text-align: center;
    flex: 1;
}

.package-type-badge {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #22392A;
    margin-bottom: 0.3rem;
}

.package-type-desc {
    font-size: 0.9rem;
    color: #5C5C5C;
}

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

.price-breakdown {
    margin-bottom: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E0E0E0;
}

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

.price-item.total {
    border-top: 2px solid #FF8E38;
    padding-top: 1rem;
    margin-top: 1rem;
}

.total-price {
    color: #FF8E38;
    font-size: 1.3rem;
}

.price-per-meal {
    background-color: #FFF5EB;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    color: #5C5C5C;
    font-size: 0.9rem;
}

.no-data {
    text-align: center;
    padding: 2rem;
    color: #5C5C5C;
}

.no-data p {
    margin-bottom: 0.5rem;
}

/* Responsive para el paso 3 */
@media (max-width: 767.98px) {
    .nutrition-details {
        flex-direction: column;
        text-align: center;
    }

    .calorie-value {
        font-size: 1.3rem;
    }

    .package-type-badge {
        font-size: 1rem;
    }

    .plan-type h4 {
        font-size: 1.3rem;
    }

    .total-price {
        font-size: 1.1rem;
    }

    .price-item {
        font-size: 0.9rem;
    }
}