@charset "UTF-8";
.calculadora-alimentacion-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  margin-top: 3rem;
  text-align: center;
}

.cal-header {
  text-align: center;
  margin-bottom: 2rem;
}
.cal-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4f6245;
}

.cal-progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
  padding: 0 1rem;
}
.cal-progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #ddd;
  z-index: 1;
}
.cal-progress-bar .cal-step-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.cal-progress-bar .cal-step-indicator.active {
  background: #4f6245;
  border-color: #4f6245;
  color: white;
}
.cal-progress-bar .cal-step-indicator.completed {
  background: #4CAF50;
  border-color: #4CAF50;
  color: white;
}

.cal-form .cal-step {
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}
.cal-form .cal-step.active {
  display: block;
  opacity: 1;
}
.cal-form .cal-step h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #4f6245;
}
.cal-form .cal-field {
  margin-bottom: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.cal-form .cal-field label {
  display: block;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #333;
  text-align: center;
}
.cal-form .cal-field input[type=text],
.cal-form .cal-field input[type=number],
.cal-form .cal-field input[type=email],
.cal-form .cal-field select,
.cal-form .cal-field textarea {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}
.cal-form .cal-field input[type=text]:focus,
.cal-form .cal-field input[type=number]:focus,
.cal-form .cal-field input[type=email]:focus,
.cal-form .cal-field select:focus,
.cal-form .cal-field textarea:focus {
  outline: none;
  border-color: #4f6245;
  box-shadow: 0 0 0 3px rgba(79, 98, 69, 0.1);
}
.cal-form .cal-field.cal-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .cal-form .cal-field.cal-two-columns {
    grid-template-columns: 1fr;
  }
}
.cal-form .cal-field.cal-integrated-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cal-form .cal-field.cal-integrated-info h4 {
  color: #4f6245;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cal-form .cal-field.cal-integrated-info .cal-integrated-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.cal-form .cal-field.cal-integrated-info .cal-integrated-amounts .cal-integrated-item {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.cal-form .cal-field.cal-integrated-info .cal-integrated-amounts .cal-integrated-item strong {
  display: block;
  color: #495057;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.cal-form .cal-field.cal-integrated-info .cal-integrated-amounts .cal-integrated-item span {
  display: block;
  color: #4f6245;
  font-size: 1.1rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .cal-form .cal-field.cal-integrated-info .cal-integrated-amounts {
    grid-template-columns: 1fr;
  }
}
.cal-form .cal-option-cards,
.cal-form .cal-subscription-options,
.cal-form .cal-menu-percentage-options,
.cal-form .cal-format-options,
.cal-form .cal-pet-type-options,
.cal-form .cal-age-stage-options,
.cal-form .cal-puppy-age-options,
.cal-form .cal-gender-options,
.cal-form .cal-condition-options {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-items: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cal-option-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .cal-option-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .cal-option-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.cal-gender-options,
.cal-condition-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .cal-gender-options,
  .cal-condition-options {
    grid-template-columns: 1fr;
  }
}

.cal-condition-options {
  grid-template-columns: 1fr 1fr 1fr;
}

.cal-subscription-options,
.cal-format-options,
.cal-menu-percentage-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .cal-subscription-options,
  .cal-format-options,
  .cal-menu-percentage-options {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .cal-subscription-options,
  .cal-format-options,
  .cal-menu-percentage-options {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .cal-format-options {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .cal-format-options {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.cal-option-card {
  background: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cal-option-card:hover {
  border-color: #4f6245;
}
.cal-option-card.selected {
  border-color: #4f6245;
  background: rgba(79, 98, 69, 0.1);
}
.cal-option-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  display: block;
}
.cal-option-card span {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
  width: 100%;
}
.cal-option-card small {
  color: #666;
  font-size: 0.875rem;
  text-align: center;
  width: 100%;
}

.cal-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto 0 auto;
  padding: 1rem 0 0 0;
  width: 100%;
  max-width: 500px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  position: static;
  backdrop-filter: none;
}
.cal-navigation button {
  flex: 1;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  min-width: 120px;
  max-width: 200px;
  transition: all 0.3s ease;
}
.cal-navigation button.cal-prev-btn {
  background: #f5f5f5;
  color: #333;
}
.cal-navigation button.cal-prev-btn:hover {
  background: rgb(219.5, 219.5, 219.5);
}
.cal-navigation button.cal-next-btn, .cal-navigation button.cal-calculate-btn, .cal-navigation button.cal-continue-to-cart-btn {
  background: #4f6245;
  color: white;
}
.cal-navigation button.cal-next-btn:hover, .cal-navigation button.cal-calculate-btn:hover, .cal-navigation button.cal-continue-to-cart-btn:hover {
  background: rgb(54.874251497, 68.0718562874, 47.9281437126);
}
.cal-navigation button.cal-next-btn:disabled, .cal-navigation button.cal-calculate-btn:disabled, .cal-navigation button.cal-continue-to-cart-btn:disabled {
  background: #ddd;
  cursor: not-allowed;
}
.cal-navigation button.cal-ver-productos-btn {
  background: #28a745 !important;
  border-color: #28a745 !important;
  color: white !important;
}
.cal-navigation button.cal-ver-productos-btn:hover {
  background: rgb(30.1449275362, 125.8550724638, 52) !important;
  border-color: rgb(30.1449275362, 125.8550724638, 52) !important;
}
.cal-navigation button.cal-ver-productos-btn:disabled {
  background: #6c757d !important;
  border-color: #6c757d !important;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .cal-navigation {
    max-width: 100%;
    border-radius: 0;
    padding: 1rem 0 0 0;
    background: none;
    box-shadow: none;
    transform: none;
  }
  .cal-navigation button {
    min-width: auto;
    max-width: none;
  }
}

.cal-results {
  text-align: center;
  margin-top: 2rem;
}
.cal-results .cal-results-content {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.cal-results .cal-results-content .cal-result-text {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.cal-results .cal-results-content .cal-result-text .cal-pet-name {
  font-weight: bold;
  color: #4f6245;
}
.cal-results .cal-results-content .cal-result-text .cal-monthly-amount {
  font-weight: bold;
  color: #4f6245;
}
.cal-results .cal-results-content .cal-daily-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4f6245;
  margin-bottom: 2rem;
}

.cal-product-selection {
  margin-top: 2rem;
  animation: fadeIn 0.3s ease-in-out;
}
.cal-product-selection .cal-selection-summary {
  position: sticky;
  top: 7rem;
  z-index: 90;
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.cal-product-selection .cal-selection-summary .cal-summary-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.cal-product-selection .cal-selection-summary .cal-summary-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 1rem;
}
.cal-product-selection .cal-selection-summary .cal-summary-row span:first-child {
  color: #333;
}
.cal-product-selection .cal-selection-summary .cal-summary-row span:last-child {
  font-weight: bold;
  color: #4f6245;
}
.cal-product-selection .cal-selection-summary .cal-progress-container {
  flex: 1;
  min-width: 100px;
  max-width: 200px;
  height: 8px;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: visible;
  margin: 0;
  position: relative;
}
.cal-product-selection .cal-selection-summary .cal-progress-container .cal-progress-bar-selection {
  height: 100%;
  background: #4f6245;
  transition: width 0.3s ease;
  border-radius: 4px;
}
.cal-product-selection .cal-selection-summary .cal-progress-container .cal-progress-text {
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}
.cal-product-selection .cal-selection-summary .cal-summary-help {
  margin-top: 1rem;
  color: #4f6245;
  font-weight: 500;
  text-align: center;
  width: 100%;
}
.cal-product-selection .cal-selection-summary .cal-progress-details {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  width: 100%;
  font-style: italic;
}
.cal-product-selection .cal-selection-summary .cal-summary-actions {
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}
.cal-product-selection .cal-selection-summary.is-sticky {
  position: fixed;
  top: 7rem;
  left: 0;
  right: 0;
  width: 100vw;
  border-radius: 0;
  min-height: 64px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
  z-index: 1000;
}
.cal-product-selection .cal-selection-summary.is-sticky .cal-summary-content {
  gap: 2rem;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.cal-product-selection .cal-selection-summary.is-sticky .cal-sticky-main {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}
.cal-product-selection .cal-selection-summary.is-sticky .cal-sticky-main .cal-sticky-amount {
  font-size: 1.2rem;
  font-weight: bold;
  color: #4f6245;
}
.cal-product-selection .cal-selection-summary.is-sticky .cal-sticky-main .cal-sticky-products {
  font-size: 1rem;
  color: #666;
}
.cal-product-selection .cal-selection-summary.is-sticky .cal-sticky-main .cal-sticky-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}
.cal-product-selection .cal-selection-summary.is-sticky .cal-sticky-main .cal-sticky-remaining {
  font-size: 0.9rem;
  color: #f44336;
  font-weight: 500;
}
.cal-product-selection .cal-selection-summary.is-sticky .cal-sticky-main .cal-sticky-complete {
  font-size: 0.9rem;
  color: #4CAF50;
  font-weight: 500;
}
.cal-product-selection .cal-selection-summary.is-sticky .cal-progress-container {
  max-width: 200px;
  flex-shrink: 0;
}
.cal-product-selection .cal-selection-summary.is-sticky .cal-sticky-status {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4f6245;
  white-space: nowrap;
  flex-shrink: 0;
}
.cal-product-selection .cal-selection-summary.is-sticky .cal-summary-help,
.cal-product-selection .cal-selection-summary.is-sticky .cal-summary-actions {
  display: none;
}
@media (max-width: 768px) {
  .cal-product-selection .cal-selection-summary.is-sticky {
    min-height: 56px;
    padding: 0 1rem;
  }
  .cal-product-selection .cal-selection-summary.is-sticky .cal-summary-content {
    gap: 1rem;
  }
  .cal-product-selection .cal-selection-summary.is-sticky .cal-summary-row {
    font-size: 0.9rem;
  }
}
.cal-product-selection .cal-product-tables .cal-product-table {
  margin-bottom: 2rem;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.cal-product-selection .cal-product-tables .cal-product-table h4 {
  color: #4f6245;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
}
.cal-product-selection .cal-product-tables .cal-products-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.cal-product-selection .cal-product-tables .cal-products-table th, .cal-product-selection .cal-product-tables .cal-products-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.cal-product-selection .cal-product-tables .cal-products-table th {
  background: #f5f5f5;
  font-weight: bold;
  color: #333;
}
.cal-product-selection .cal-product-tables .cal-products-table .format-header {
  background: #f5f5f5;
}
.cal-product-selection .cal-product-tables .cal-products-table .format-header.recommended-format {
  background: rgba(79, 98, 69, 0.1);
  border-left: 4px solid #4f6245;
}
.cal-product-selection .cal-product-tables .cal-products-table .format-header td {
  padding: 1rem;
}
.cal-product-selection .cal-product-tables .cal-products-table .format-header td h4 {
  color: #4f6245;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}
.cal-product-selection .cal-product-tables .cal-products-table .format-header td .format-info {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}
.cal-product-selection .cal-product-tables .cal-products-table .format-header td .format-info .format-price {
  font-weight: bold;
  color: #4f6245;
}
.cal-product-selection .cal-product-tables .cal-products-table .product-info h4 {
  margin: 0;
  color: #333;
  font-size: 1rem;
}
.cal-product-selection .cal-product-tables .cal-products-table .product-info p {
  margin: 0.25rem 0 0;
  color: #666;
  font-size: 0.9rem;
}
.cal-product-selection .cal-product-tables .cal-products-table .quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cal-product-selection .cal-product-tables .cal-products-table .quantity-selector button {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cal-product-selection .cal-product-tables .cal-products-table .quantity-selector button:hover {
  background: rgb(232.25, 232.25, 232.25);
}
.cal-product-selection .cal-product-tables .cal-products-table .quantity-selector input {
  width: 60px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.25rem;
}
.cal-product-selection .cal-product-tables .cal-products-table .product-total {
  font-weight: bold;
  color: #4f6245;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .calculadora-alimentacion-container {
    padding: 1rem;
  }
  .cal-field.cal-two-columns {
    grid-template-columns: 1fr;
  }
  .cal-option-cards {
    grid-template-columns: 1fr;
  }
  .cal-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  .cal-navigation button {
    width: 100%;
  }
}
.cal-step-6 .cal-field {
  margin-bottom: 2rem;
}
.cal-step-6 .cal-field:last-of-type {
  margin-bottom: 0;
}
.cal-step-6 .cal-field h3 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #4f6245;
}
.cal-step-6 .cal-option-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .cal-step-6 .cal-option-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .cal-step-6 .cal-option-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.cal-step-6 .cal-option-cards .cal-option-card {
  background: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cal-step-6 .cal-option-cards .cal-option-card:hover {
  border-color: #4f6245;
  transform: translateY(-2px);
}
.cal-step-6 .cal-option-cards .cal-option-card.selected {
  border-color: #4f6245;
  background: rgba(79, 98, 69, 0.05);
}
.cal-step-6 .cal-option-cards .cal-option-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}
.cal-step-6 .cal-option-cards .cal-option-card span {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}
.cal-step-6 .cal-option-cards .cal-option-card small {
  display: block;
  color: #666;
  font-size: 0.875rem;
}

.cal-pet-type-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cal-age-stage-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cal-puppy-age-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cal-activity-options {
  margin-bottom: 2rem;
}

.activity-options-dog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  justify-items: center;
  margin: 0 auto;
}

/* Opciones específicas para perros */
.dog-only {
  transition: all 0.3s ease;
}

.dog-only.hidden {
  display: none !important;
}

/* Mejoras en las cards de opciones */
.cal-option-card {
  background: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cal-option-card:hover {
  border-color: #4f6245;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.cal-option-card.selected {
  border-color: #4f6245;
  background: rgba(76, 175, 80, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.cal-option-card.selected::before {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4f6245;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.cal-option-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.cal-option-card:hover img {
  transform: scale(1.1);
}

.cal-option-card span {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 1.1rem;
}

.cal-option-card small {
  display: block;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Estilos para el campo de peso */
.cal-field input[type=number] {
  font-size: 1.1rem;
  padding: 1rem;
  text-align: center;
}

.cal-field small {
  display: block;
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.875rem;
  font-style: italic;
}

/* Mejoras en los resultados */
.cal-percentage-info {
  display: block;
  margin-top: 0.5rem;
  color: #4f6245;
  font-weight: 500;
  font-size: 0.9rem;
}

.cal-amounts .cal-daily .value,
.cal-amounts .cal-monthly .value {
  font-size: 2rem;
  font-weight: bold;
  color: #4f6245;
  margin: 0.5rem 0;
}

/* Responsive para las nuevas opciones */
@media (max-width: 768px) {
  .cal-pet-type-options,
  .cal-age-stage-options,
  .cal-puppy-age-options,
  .activity-options-dog {
    grid-template-columns: 1fr;
  }
  .cal-option-card {
    padding: 1rem;
  }
  .cal-option-card span {
    font-size: 1rem;
  }
  .cal-option-card small {
    font-size: 0.8rem;
  }
}
/* Animaciones para los pasos condicionales */
#puppy-age-step,
#activity-step {
  animation: fadeIn 0.5s ease-in-out;
}

/* Estilos para validación */
.cal-field.is-invalid {
  border-color: #F44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.cal-field.is-invalid input,
.cal-field.is-invalid select {
  border-color: #F44336;
}

/* Mejoras en la navegación */
.cal-navigation button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Estilos para el debug */
.boscos-debug-bar {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100vw;
  z-index: 9999;
  background: #c0392b;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.7rem 0;
  letter-spacing: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

/* Mejoras en el progreso */
.cal-progress-bar .cal-step-indicator {
  transition: all 0.3s ease;
}

.cal-progress-bar .cal-step-indicator.completed {
  background: #4f6245;
  border-color: #4f6245;
  color: white;
  transform: scale(1.1);
}

/* Mejoras en la accesibilidad */
.cal-option-card:focus {
  outline: 2px solid #4f6245;
  outline-offset: 2px;
}

/* Estilos para el resumen */
.cal-results-content {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cal-results-content h3 {
  color: #4f6245;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.cal-amounts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .cal-amounts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .cal-amounts {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.cal-amounts .cal-daily,
.cal-amounts .cal-monthly {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.cal-amounts .cal-daily .label,
.cal-amounts .cal-monthly .label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
}

.cal-amounts .cal-daily .value,
.cal-amounts .cal-monthly .value {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #4f6245;
  margin: 0.5rem 0;
}

/* Estilos para el formato recomendado */
.cal-format-recommendation {
  background: linear-gradient(135deg, #e8f5e8 0%, #f1f8f1 100%);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  text-align: center;
  border: 1px solid #c8e6c9;
}

.cal-format-recommendation h4 {
  color: #2e7d32;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.cal-recommended-format {
  font-size: 2rem;
  font-weight: bold;
  color: #2e7d32;
  margin: 0.5rem 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cal-format-explanation {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* Estilos para las acciones */
.cal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cal-actions button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cal-food-selection-btn {
  background: #4f6245;
  color: white;
}

.cal-food-selection-btn:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.cal-auto-complete-btn {
  background: #2196F3;
  color: white;
}

.cal-auto-complete-btn:hover {
  background: #1976d2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.cal-restart-btn {
  background: #f5f5f5;
  color: #333;
  border: 2px solid #ddd;
}

.cal-restart-btn:hover {
  background: #e0e0e0;
  border-color: #bbb;
  transform: translateY(-2px);
}

/* Responsive para las acciones */
@media (max-width: 768px) {
  .cal-actions {
    flex-direction: column;
    align-items: center;
  }
  .cal-actions button {
    width: 100%;
    max-width: 300px;
  }
  .cal-amounts {
    grid-template-columns: 1fr;
  }
  .cal-results-content {
    padding: 1.5rem;
  }
  .cal-amounts .cal-daily .value,
  .cal-amounts .cal-monthly .value {
    font-size: 1.5rem;
  }
  .cal-recommended-format {
    font-size: 1.5rem;
  }
}
.cal-format-selector {
  margin: 2rem 0 1rem 0;
}
.cal-format-selector h4 {
  margin-bottom: 1rem;
  color: #4f6245;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
}
.cal-format-selector .cal-format-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .cal-format-selector .cal-format-options {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.cal-format-selector .format-btn {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  position: relative;
  outline: none;
}
.cal-format-selector .format-btn.selected, .cal-format-selector .format-btn.recommended {
  border-color: #4f6245;
  background: #4f6245;
  color: #4f6245;
}
.cal-format-selector .format-btn.recommended::after {
  content: "★";
  color: #4f6245;
  font-size: 1.2em;
  position: absolute;
  top: 8px;
  right: 12px;
}
.cal-format-selector .format-btn:hover {
  border-color: #4f6245;
  background: rgba(79, 98, 69, 0.12);
  color: #4f6245;
}

/* Estilos para las opciones recomendadas */
.cal-option-card.recommended {
  border-color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
  position: relative;
}

.cal-option-card.recommended::after {
  content: "★";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4CAF50;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/*# sourceMappingURL=boscos-calculator.css.map */
