:root {
    --naturgy-blue: #004a87;
    --naturgy-orange: #f37021;
    --light-gray: #f8f8f8;
    --medium-gray: #f5f4f2;
    --naturgy-accept: #168659;
    --naturgy-danger: #d32839;
}


@font-face {
  font-family: "FSEmeric";
    src:url("fonts/FSEmericWeb-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: "FSEmeric";
    src: url("fonts/FSEmericWeb-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Natman';
    src: url('fonts/Natman-Regular.eot');
    src: url('fonts/Natman-Regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/Natman-Regular.woff2') format('woff2'),
         url('fonts/Natman-Regular.woff') format('woff'),
         url('fonts/Natman-Regular.ttf')  format('truetype'),
         url('fonts/Natman-Regular.svg#Natman') format('svg');
}

body {
    font-family: 'FSEmeric';
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow-x: hidden;
    color: var(--naturgy-blue);
}

.text-naturgy-blue {
    color: var(--naturgy-blue);
}

.artefactos-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.actions-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    
}


.btn-primary, .btn-secondary, .btn-download {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    min-width: 220px;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--naturgy-orange);
    color: white;
}
.btn-primary i {
    margin-right: 10px;
}

.btn-primary:hover {
    background-color: #e86012;
    /*box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);*/
    /*transform: translateY(-2px);*/
}

.btn-back {
    background-color: white;
    color: var(--naturgy-blue);
    border: 2px solid var(--naturgy-blue);
}

.btn-secondary:hover {
    background-color: #f0f8ff;
    /*box-shadow: 0 5px 15px rgba(0, 74, 135, 0.2);
    transform: translateY(-2px);*/
}

.btn-download {
    background-color: var(--naturgy-blue);
    color: white;
}

.btn-download:hover {
    background-color: #003a6a;
    box-shadow: 0 5px 15px rgba(0, 74, 135, 0.3);
    transform: translateY(-2px);
}

.btn-primary i, .btn-secondary i, .btn-download i {
    margin-right: 10px;
}

/* Estilos del Preloader Minimalista */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}

.preloader-logo {
    width: 150px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
    animation: subtle-pulse 2.5s infinite alternate;
}

.alert-danger{
        text-align: center;
    background: #ffe9e9;
    color: #fc6363;
    font-size: 12px;
}


@keyframes subtle-pulse {
    0% {
        opacity: 0.9;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.preloader-bar-container {
    width: 250px;
    height: 4px;
    background-color: #f0f0f0;
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background-color: var(--naturgy-orange);
    border-radius: 2px;
    position: relative;
    transition: width 0.4s ease-out;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250px); }
}

.preloader-text {
    color: var(--naturgy-blue);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Animación de puntos para indicar carga */
.preloader-dots {
    display: inline-block;
    width: 20px;
    text-align: left;
}

@keyframes dots {
    0% { content: ""; }
    25% { content: "."; }
    50% { content: ".."; }
    75% { content: "..."; }
    100% { content: ""; }
}

.preloader-dots::after {
    content: "";
    animation: dots 1.5s infinite;
}

/* CSS para el indicador de progreso */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin: 50px auto 40px;
    width: 90%;
    max-width: 700px;
    position: relative;
    padding: 0 10px;
}

.progress{
    border-radius: 50px;
    box-shadow: inset 1px 1px 6px hsl(0deg 0% 0% / 30%);
    
}

.bar-1 {
    border-radius: 50px;
    background-color: var(--naturgy-orange);
    
    height: 11px;
    margin: 5px;
}

.bar-2{
    border-radius: 50px;
    background-color: var(--naturgy-orange);
    
    height: 11px;
    margin: 5px;
}

.bar-3{
    border-radius: 50px;
    background-color: var(--naturgy-orange);
    
    height: 11px;
    margin: 5px;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 10px;
    border-radius: 100px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.progress-bar-indicator {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background-color: var(--naturgy-accept);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.5s ease;
}

.step {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.step.active {
    background-color: var(--naturgy-blue);
    color: white;
    box-shadow: 0 0 0 4px rgba(123, 149, 131, 0.2);
}

.step.completed {
    background-color: var(--naturgy-accept);
    color: white;
}

.step-label {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.7rem;
    color: #666;
    font-weight: normal;
}

.step.active .step-label {
    color: var(--naturgy-blue);
    font-weight: bold;
}

.navbar {
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
    background-color: white;
    width: 100%;
}

.navbar-brand img {
    height: 40px;
}

.navbar .website {
    color: var(--naturgy-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.navbar .website .home-icon {
    margin-right: 8px;
    font-size: 1.2em;
}

.content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

h1, h2, h3 {
    color: var(--naturgy-blue);
    text-align: center;
    margin: 60px 30px;
}

.option-card {
    background-color: var(--light-gray);
    border-radius: 35px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1; /* Asegurar que sea visible por defecto */
}

.option-card.active img {
    opacity: 0.7 !important;
}

.option-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.option-card .option-title {
    color: var(--naturgy-blue);
    font-weight: normal;
    text-align: center;
}

.btn-continue {
    background-color: var(--naturgy-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    background-color: #e56012;
    color: white;
}

.btn-back {
    background-color: #FFF !important;
    color: var(--naturgy-blue) !important;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid var(--naturgy-blue) !important;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color:var(--naturgy-blue);
    color: white;
}

footer {
    text-align: left;
    padding: 15px 0;
    color: #666;
    font-size: 0.8em;
    border-top: 1px solid #e0e0e0;
    width: 100%;
    background-color: #fff;
}

/* Slider styles */
.slider-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto 40px;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;  
    background: #d3d3d3;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%; 
    background: var(--naturgy-orange);
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--naturgy-orange);
    cursor: pointer;
}

.people-counter {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.people-counter .number {
    font-size: 5em;
    color: var(--naturgy-blue);
    font-weight: bold;
    line-height: 1;
}

.people-counter .label {
    color: var(--naturgy-blue);
    font-size: 1.2em;
}

/* Appliance selection styles */
.appliance-container {
    display: flex;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    padding: 20px;
}

.appliance-selector {
    flex: 1;
    padding: 20px;
}

.appliance-list {
    flex: 1;
    padding: 20px;
    border-left: 1px solid #eee;
}

.appliance-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.appliance-item img {
    max-width: 150px;
    margin-bottom: 15px;
}

.usage-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.usage-option {
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.usage-option.active {
    background-color: var(--naturgy-orange);
    color: white;
    border-color: var(--naturgy-orange);
}

.btn-add {
    background-color: #aaa;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    border: none;
    display: inline-block;
    margin-top: 15px;
}

.appliance-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.appliance-info {
    flex: 1;
}

.appliance-name {
    color: var(--naturgy-orange);
    font-weight: bold;
}

.usage-tag {
    font-size: 0.8em;
    color: #666;
}

.consumption {
    color: var(--naturgy-orange);
    font-weight: bold;
    flex: 0 0 130px;
    text-align: right;
}

.remove-btn {
    color: var(--naturgy-orange);
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}

/* Results page styles - REDISEÑADO */
.results-container {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.results-list {
    flex: 1;
    padding: 25px;
    background: #f9f9f9;
}

.results-summary {
    flex: 1.2;
    padding: 30px;
    background: white;
}

.cost-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.cost-label {
    color: #495057;
    font-size: 1em;
    margin-bottom: 10px;
}

.cost-value {
    color: var(--naturgy-blue);
    font-size: 3.5em;
    font-weight: bold;
    line-height: 1;
    margin: 10px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.consumption-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--naturgy-blue);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.consumption-value {
    color: white;
    font-size: 1.1em;
    font-weight: bold;
}

.consumption-unit {
    color: white;
    font-size: 1.2em;
}

.category-ranges {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.category {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-current {
    background-color: var(--naturgy-orange);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(243, 112, 33, 0.3);
}

.category-label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.category-range {
    font-size: 0.85em;
}

.consumption-chart {
    margin-top: 30px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.chart-title {
    font-weight: bold;
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.1em;
    text-align: center;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    height: 200px;
    margin-bottom: 15px;
    padding: 0 10px;
}

.chart-bar {
    flex: 1;
    margin: 0 15px;
    border-radius: 8px 8px 0 0;
    position: relative;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.chart-bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.chart-bar.bar-1 {
    height: 70%;
    background: linear-gradient(to top, var(--naturgy-orange), #ff9f50);
}

.chart-bar.bar-2 {
    height: 50%;
    background: linear-gradient(to top, var(--naturgy-blue), #6d9eeb);
}

.chart-bar.bar-3 {
    height: 90%;
    background: linear-gradient(to top, #6c757d, #adb5bd);
}

.bar-percentage {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #495057;
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.chart-label {
    text-align: center;
    color: #495057;
    font-weight: bold;
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-label .icon {
    margin-bottom: 5px;
    font-size: 1.2em;
}

.consumption-percentages {
    margin-top: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.percentages-title {
    font-weight: bold;
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.1em;
    text-align: center;
}

.percentage-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.percentage-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.percentage-value {
    background: var(--naturgy-orange);
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 50px;
    text-align: center;
}

.percentage-label {
    flex: 1;
    margin-left: 15px;
    color: #495057;
    display: flex;
    align-items: center;
}

.percentage-label .icon {
    margin-right: 10px;
    color: #6c757d;
}

.appliance-list-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.appliance-list-item:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.appliance-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.usage-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    background: #e9ecef;
    font-size: 0.75em;
    color: #495057;
    margin-top: 5px;
}

/* Carrusel vertical de artefactos */
.appliance-carousel {
    position: relative;
    min-height: 400px;
    margin-bottom: 20px;
}

.carousel-items {
    position: relative;
    width: 100%;
}

.arrow-nav {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.arrow-btn {
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    cursor: pointer;
    color: #aaa;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.arrow-btn:hover {
    color: var(--naturgy-orange);
    border-color: var(--naturgy-orange);
    transform: scale(1.1);
}

/* Tooltip styles */
.usage-option {
    position: relative;
}

.usage-option .tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.8);
    color: white;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    width: 200px;
    font-size: 0.8em;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.usage-option .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0,0,0,0.8) transparent transparent transparent;
}

.usage-option:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/* Screen containers */
.screen {
    display: none;
    width: 100%;
    
}

.screen.active {
    display: block;
}

/* Estilos para los selectores de calorías */
.kcal-selector {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    position: relative;
}

.kcal-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.95rem;
    color: var(--naturgy-blue);
    background-color: #fff;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23004a87" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 30px;
}

.kcal-select:focus {
    border-color: var(--naturgy-orange);
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.15);
    outline: none;
}

.kcal-select:hover {
    border-color: #ccc;
}

.kcal-select option {
    padding: 10px;
}

/* Estilo para el botón de agregar cuando está deshabilitado */
.btn-add.disabled,
.btn-add[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #aaa;
}

/* Estilos para la notificación */
.notification {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(243, 112, 33, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 100;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.notification.error {
    background-color: rgba(220, 53, 69, 0.9);
}

/* Estilos para la pantalla de selección de zona */

#screen0 .option-card i {
    color: var(--naturgy-blue);
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}
#screen0 h1, #screen0 .option-card{
    opacity: 1;
}
#screen0 .option-card:hover i,
#screen0 .option-card.active i {
    
    color: var(--naturgy-blue);
}

#screen0 .option-card {
    position: relative;
    overflow: hidden;
}

#screen0 .option-card svg {
    fill: var(--naturgy-blue);
}



/*
#screen0 .option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--naturgy-orange);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
     
}
*/
#screen0 .option-card.active::before,
#screen0 .option-card:hover::before {
    
}

/* Animación para destacar la zona seleccionada */
@keyframes pulseZone {
    0% {
        opacity: 1;
    }
    70% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

#screen0 .option-card.active {
   /* animation: pulseZone 1s infinite;*/
    color:red;
}


/* Estilos para selector de zona fría */
.cold-zone-selector {
    background-color: rgba(240, 249, 255, 0.5);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    width: 90%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cold-zone-selector h3 {
    color: var(--naturgy-blue);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.cold-zone-option {
    background-color: var(--light-gray);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 15px;
}

.cold-zone-option:hover, .cold-zone-option.active {
    border-color: var(--naturgy-orange);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.cold-zone-option .fa-snowflake {
    color: #4dabf7;
}

.cold-zone-option .fa-sun {
    color: #fcc419;
}

.cold-zone-option .option-title {
    color: var(--naturgy-orange);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cold-zone-option p {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Estilos para el indicador de zona fría en resultados */
.cold-zone-indicator {
    background-color: rgba(240, 249, 255, 0.8);
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--naturgy-blue);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cold-zone-indicator .fa-snowflake {
    font-size: 1.2em;
    margin-right: 10px;
}

.texto-small {
    font-size: 0.7em;
    color: #666;
    margin-top: 5px;
}


/* Responsive para dispositivos móviles */
@media (max-width: 768px) {
    .cold-zone-selector .d-flex {
        flex-direction: column;
    }
    
    .cold-zone-option {
        width: 100%;
        margin: 10px 0;
    }
}

.image-artefacto {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}













/* Estilos para el panel de información superior */
        .info-panel {
            display: flex;
            justify-content: space-between;
            margin: 30px 0 40px;
        }

        .zone-container {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border-radius: 25px;
        }

        .zone-icon {
            width: 30px;
            height: 30px;
            margin-right: 10px;
        }

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

        .zone-label {
            font-size: 0.75rem;
            color: #777;
        }

        .zone-name {
            font-weight: bold;
            color: var(--naturgy-blue);
            font-size: 1rem;
        }

        .people-container {
            display: flex;
            align-items: center;
        }

        .people-circle {
            background-color: #fff;
            border-radius: 50%;
            width: 70px;
            height: 70px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #e0e0e0;
            margin-right: 10px;
        }

        .people-number {
            font-size: 2rem;
            font-weight: bold;
            line-height: 1;
            color: #333;
        }

        .people-label {
            font-size: 0.8rem;
            color: #777;
            text-align: center;
            line-height: 1.2;
        }

        .subsidy-container {
            display: flex;
            align-items: center;
        }

        .subsidy-circle {
            background-color: white;
            border-radius: 50%;
            width: 70px;
            height: 70px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            color: #dc3545;
            font-size: 1.25rem;
            border: 1px solid #e0e0e0;
            margin-right: 10px;
        }

        .subsidy-label {
            font-size: 0.8rem;
            color: #777;
            text-align: center;
            line-height: 1.2;
        }

        /* Estilos para el panel de costo */
        .cost-panel {
            background-color: white;
            border-radius: 15px;
            padding: 25px 30px;
            margin-bottom: 30px;
            box-shadow: 0 1px 6px rgba(0,0,0,0.05);
            position: relative;
        }

        .cost-value {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--naturgy-blue);
            margin-bottom: 3px;
            line-height: 1;
        }

        .cost-description {
            font-size: 0.8rem;
            color: #777;
            margin-bottom: 25px;
        }

        .category-indicator {
            position: absolute;
            right: 30px;
            top: 30px;
            width: 60px;
            height: 60px;
            background-color: white;
            border: 1px solid var(--naturgy-orange);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 1.4rem;
            color: var(--naturgy-orange);
        }

        .category-slider {
            background-color: #f6f6f6;
            border-radius: 50px;
            padding: 8px;
            margin-top: 20px;
            display: flex;
            justify-content: space-between;
            position: relative;
        }

        .category-item {
            flex: 1;
            text-align: center;
            padding: 8px 0;
            position: relative;
            z-index: 2;
            font-size: 0.8rem;
            font-weight: 500;
            color: #777;
        }

        .category-active-background {
            position: absolute;
            height: 100%;
            background-color: rgba(255, 225, 204, 0.7);
            border-radius: 50px;
            top: 0;
            z-index: 1;
        }

        .category-active {
            color: var(--naturgy-orange);
            font-weight: bold;
        }

        .category-note {
            text-align: center;
            margin-top: 12px;
            font-size: 0.75rem;
            color: var(--naturgy-blue);
        }

        /* Botón para ver artefactos */
        .btn-view-appliances {
            background-color: var(--naturgy-orange);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 20px;
            font-weight: 600;
            text-align: center;
            max-width: 300px;
            margin: 30px auto;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(243, 112, 33, 0.2);
        }

        .btn-view-appliances:hover {
            background-color: #e56012;
            transform: translateY(-2px);
        }

        /* Estilos para la sección de comparación */
        .comparison-section {
            margin: 90px 10px;
        }

        .section-title {
            color: var(--naturgy-blue);
            text-align: center;
            font-weight: bold;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .comparison-table-container {
            width: 100%;
            position: relative;
            overflow-x: auto; /* Permite scroll horizontal en pantallas pequeñas si es necesario */
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }

        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: center;
            border: none;
        }

        .comparison-table th {
            font-weight: bold;
            font-size: 0.9rem;
            border-bottom: 1px solid #eee;
        }

        .comparison-table th:first-child, .comparison-table td:first-child {
            text-align: left;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table td {
            border-bottom: 1px solid #eee;
        }

        .gas-header, .gas-cell {
            background-color: rgba(255, 235, 213, 0.35);
        }

        .gas-rounded-top {
            border-radius: 8px 8px 0 0;
        }

        .gas-rounded-bottom {
            border-radius: 0 0 8px 8px;
        }

        .gas-check {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--naturgy-orange);
            margin-right: 6px;
            vertical-align: middle;
            margin-top: -2px;
        }
        
        /* Contador animado */
        .cost-counter {
            display: inline-block;
            letter-spacing: -0.1rem;
        }

        /* Estilos para la distribución de consumo */
        .distribution-section {
            margin: 130px 40px;
        }

        .progress-row {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .progress-label {
            width: 120px;
            font-size: 0.9rem;
            color: var(--naturgy-blue);
        }

        .progress-bar-wrapper {
            flex: 1;
            height: 15px;
            background-color: #f6f6f6;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }

        .progress-bar-fill {
            height: 100%;
            background-color: var(--naturgy-orange);
            border-radius: 20px;
        }

        .progress-value {
            width: 50px;
            text-align: right;
            font-weight: bold;
            color: var(--naturgy-orange);
            font-size: 0.9rem;
            padding-left: 10px;
        }

        /* Estilos para recomendaciones */
        .recommendations-section {
            margin: 90px 40px;
        }

        .recommendation-slider {
            position: relative;
            margin-top: 30px;
        }

        .recommendation-card {
            display: flex;
            align-items: flex-start;
        }

        .recommendation-image {
            flex: 0 0 200px;
            margin-right: 30px;
        }

        .recommendation-image img {
            max-width: 100%;
            height: auto;
        }

        .recommendation-content {
            flex: 1;
        }

        .recommendation-title {
            color: var(--naturgy-orange);
            font-weight: bold;
            margin-bottom: 10px;
            font-family: 'Natman';
            font-size: 1.5rem;
            color: var(--naturgy-orange);
        }

        .recommendation-text {
            color: #555;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--naturgy-blue);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            width: 30px;
            height: 30px;
            background-color: #f5f5f5;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transform: translateY(-50%);
            z-index: 10;
            font-size: 0.8rem;
            color: #666;
            border: 1px solid #ddd;
        }

        .slider-prev {
            left: -15px;
        }

        .slider-next {
            right: -15px;
        }

        /* Borde para la tabla */
        .table-border {
            position: absolute;
            border: 1px solid #eee;
            border-radius: 8px;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 15px 0;
            color: #666;
            font-size: 0.75em;
            border-top: 1px solid #e0e0e0;
            width: 100%;
            background-color: #fff;
            margin-top: 40px;
        }

        /* Estilos responsivos */
        @media (max-width: 992px) {
            .info-panel {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            .cost-panel {
                padding: 20px;
            }

            .cost-value {
                font-size: 3rem;
            }

            .category-indicator {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .recommendation-image {
                flex: 0 0 150px;
            }
        }

        @media (max-width: 768px) {
            .people-container, .subsidy-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .people-circle, .subsidy-circle {
                margin-right: 0;
                margin-bottom: 5px;
            }

            .category-slider {
                flex-wrap: wrap;
            }

            .category-item {
                flex: 0 0 33%;
                margin-bottom: 5px;
                font-size: 0.8rem;
            }

            .recommendation-card {
                flex-direction: column;
                align-items: center;
            }

            .recommendation-image {
                margin-right: 0;
                margin-bottom: 20px;
            }

            .progress-row {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 25px;
            }

            .progress-label {
                margin-bottom: 5px;
                width: 100%;
            }

            .progress-bar-wrapper {
                width: 100%;
                margin: 5px 0;
            }

            .progress-value {
                align-self: flex-end;
                padding-left: 0;
                margin-top: 5px;
                width: 100%;
                text-align: left;
            }
            
            /* Tabla responsive - Transformación a formato de tarjetas */
            .comparison-table, .comparison-table tbody, .comparison-table thead, .comparison-table tr {
                display: block;
            }
            
            .comparison-table thead {
                position: absolute;
                top: -9999px;
                left: -9999px;
            }
            
            .comparison-table tr {
                margin-bottom: 15px;
                border: 1px solid #eee;
                border-radius: 8px;
                overflow: hidden;
            }
            
            .comparison-table td {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 12px 15px;
                text-align: right;
                position: relative;
            }
            
            .comparison-table td:before {
                content: attr(data-label);
                font-weight: 200;
                text-align: left;
                color: var(--naturgy-blue);
                padding-right: 10px;
            }
            
            .comparison-table td:first-child {
                font-weight: bold;
                background-color: #f9f9f9;
                color: var(--naturgy-blue);
                padding: 12px 15px;
                border-radius: 8px 8px 0 0;
            }
            
            .comparison-table td:first-child:before {
                content: none;
            }
            
            .gas-header, .gas-cell, .gas-rounded-top, .gas-rounded-bottom {
                border-radius: 0;
                background-color: transparent;
            }
            
            .gas-check {
                margin-right: 8px;
            }
            
            /* Estilos específicos para la columna de Gas Natural */
            .comparison-table td.gas-cell {
                background-color: rgba(255, 235, 213, 0.35);
            }
        }

        @media (max-width: 576px) {
            .zone-icon {
                width: 25px;
                height: 25px;
            }

            .zone-name {
                font-size: 0.9rem;
            }

            .people-circle, .subsidy-circle {
                width: 60px;
                height: 60px;
            }

            .people-number {
                font-size: 1.8rem;
            }

            .people-label, .subsidy-label {
                font-size: 0.7rem;
            }

            .cost-value {
                font-size: 2.5rem;
            }

            .cost-description {
                font-size: 0.7rem;
            }

            .category-item {
                flex: 0 0 50%;
                font-size: 0.75rem;
            }

            .slider-nav {
                width: 25px;
                height: 25px;
            }

            .recommendations-section {
                 margin: 90px 1px;
            }
            
        }




        /* ===== ESTILOS PARA LA CATEGORÍA PRINCIPAL (N1,N2,N3) ===== */
        .category-slot-machine {
            position: relative;
            height: 120px;
            display: flex;
            justify-content: center;
            align-items: center;
            
        }
        
        .category-window {
            position: relative;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            /*background-color: rgba(243, 112, 33, 0.1);*/
            background: radial-gradient(circle, rgb(243 112 33 / 0%), rgb(243 112 33 / 22%));
            border: 2px solid var(--naturgy-orange);
            overflow: hidden;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            /* Sombreado interior para profundidad */
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 0, 0, 0.1);
        }
        
        .category-spinner {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            transition: transform 0.2s linear;
        }
        
        .category-item {
            flex: 0 0 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 37px;
            color: var(--naturgy-orange);
            text-shadow: 1px 1px 6px #f37021;
        }
        
        .category-item.active {
            color: var(--naturgy-orange);
            font-weight: bold;
        }
        
        /* ===== ESTILOS PARA SUBCATEGORÍAS (R1,R2-1,etc) ===== */
        .subcategory-slot-machine {
            width: 60%;
            position: relative;
            height: 50px;
            border-radius: 30px;
            overflow: hidden;
            background-color: #f8f8f8;
            margin-top: 40px;
            /* Sombreado interior para profundidad */
            box-shadow: inset 0 0 7px 5px rgba(0, 0, 0, 0.1);
            border: 1px solid rgb(204 204 204 / 55%);
        }
        
        .subcategory-container {
            position: relative;
            height: 100%;
            width: 100%;
            overflow: hidden;
        }
        
        /* Efectos de blur en los extremos */
        .subcategory-container::before,
        .subcategory-container::after {
            content: '';
            position: absolute;
            top: 0;
            height: 100%;
            width: 180px;
            z-index: 5;
            pointer-events: none;
        }
        
        .subcategory-container::before {
            left: 0;
            background: linear-gradient(to left, rgb(248 248 248 / 0%) 0%, rgb(248 248 248) 100%);
            opacity: 0.9; /* Transparencia */
            border-radius: 100px; /* Hacer el div circular */
        }
        
        .subcategory-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);
        }
        
        .subcategory-spinner {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            display: flex;
            align-items: center;
            transition: transform 0.2s linear;
        }
        
        .subcategory-item {
            flex: 0 0 auto;
            padding: 10px 25px;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
            color: var(--naturgy-blue);
            margin: 0 5px;
            min-width: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            transition: all 0.3s ease;
            /* Efecto de difuminado progresivo */
            filter: blur(0px);
        }
        
        .subcategory-item.far-left {
            filter: blur(2px);
            opacity: 0.5;
        }
        
        .subcategory-item.left {
            filter: blur(1px);
            opacity: 0.8;
        }
        
        .subcategory-item.active {
            color: var(--naturgy-orange);
            filter: blur(0px);
            opacity: 1;
            transform: scale(1.1);
        }
        
        .subcategory-item.right {
            filter: blur(1px);
            opacity: 0.8;
        }
        
        .subcategory-item.far-right {
            filter: blur(2px);
            opacity: 0.5;
        }
        
        .subcategory-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: -5px;
            height: 100%;
            width: 1px;
            background-color: var(--medium-gray);
        }
        
        .subcategory-item:last-child::before {
            display: none;
        }
        
        .selector-markers {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 100%;
            z-index: 10;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            pointer-events: none;
        }
        
        .top-marker, .bottom-marker {
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
        }
        
        .top-marker {
            border-top: 6px solid var(--naturgy-orange);
        }
        
        .bottom-marker {
            border-bottom: 6px solid var(--naturgy-orange);
        }
        
        /* ===== ESTILOS PARA LOS BOTONES Y RESULTADOS ===== */
        .controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .btn {
            background-color: var(--naturgy-blue);
            color: white;
            border: none;
            width: 225px;
            padding: 12px 5px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color:#087ac3;
            opacity: 0.9;
            transform: translateY(-2px);
        }
        
        .btn:disabled {
            background-color: #e2e1e1;
            color: #b0b0b0;
            cursor: not-allowed;
            transform: none;
        }
        
        .result-display {
            margin-top: 30px;
            padding: 15px;
            background-color: #f8f8f8;
            border-radius: 10px;
            text-align: center;
            /* Sombreado interior para profundidad */
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
        }
        
        .result-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--naturgy-blue);
        }
        
        .result-value {
            font-size: 24px;
            font-weight: bold;
            color: var(--naturgy-orange);
        }
        
        /* Maquillaje para que se vea más bonito */
        .category-tracks-container {
            position: relative;
            padding:0 0 20px 0;
        }
        
        /* Animación de carga inicial */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .animate-pulse {
            animation: pulse 1.5s infinite ease-in-out;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .category-window {
                width: 100px;
                height: 100px;
            }
            
            .category-item {
                font-size: 45px;
                letter-spacing: -2px;
            }
            
            .subcategory-item {
                padding: 8px 20px;
                font-size: 14px;
                min-width: 50px;
            }
            
            .subcategory-container::before,
            .subcategory-container::after {
                width: 50px;
            }
        }

/* Responsive para el contenedor de N y R si es necesario */
.category-display-N-R {
    /* Ya tenía d-flex justify-content-center align-items-center */
    /* Puedes necesitar ajustar el width o flex-grow de .r-subcategory-meter */
    /* si el .n-category-badge es muy grande */
}

@media (max-width: 576px) {
    .r-subcategory-meter .r-segment {
        font-size: 0.75rem;
        padding: 6px 8px; /* Un poco más pequeños para móvil */
    }
    .n-category-badge { /* Asegurar que el badge N no sea demasiado grande en móvil */
        width: 55px; 
        height: 55px;
        font-size: 1.6rem;
    }
}


.recommendation-card-new {
    width: 90%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.slider-nav-new {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 0.8rem;
    color: #666;
    border: 1px solid #ddd;
}

.slider-nav-new next, .slider-nav-new prev {
    right: -15px;
}


/* ===== UI Notification Styles ===== */
.ui-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10000; /* Ensure it's above other elements */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    min-width: 250px; /* Adjust as needed */
    max-width: 350px; /* Adjust as needed */
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    /* GSAP will handle opacity and transform for animation */
}

.ui-notification::before { /* For icons */
    font-family: "Font Awesome 6 Free"; /* Make sure Font Awesome is loaded */
    font-weight: 900; /* Use solid icons */
    margin-right: 10px;
    font-size: 1.1rem;
}

.ui-notification.success {
    background-color: #28a745; /* Bootstrap success green */
    border-left: 5px solid #1e7e34; /* Darker shade for emphasis */
}
.ui-notification.success::before {
    content: "\f058"; /* Font Awesome check-circle icon */
}

.ui-notification.error {
    background-color: #dc3545; /* Bootstrap danger red */
    border-left: 5px solid #b02a37;
}
.ui-notification.error::before {
    content: "\f06a"; /* Font Awesome exclamation-circle icon */
}

.ui-notification.warning {
    background-color: #ffc107; /* Bootstrap warning yellow */
    color: #212529; /* Darker text for yellow background */
    border-left: 5px solid #d39e00;
}
.ui-notification.warning::before {
    content: "\f071"; /* Font Awesome exclamation-triangle icon */
    color: #212529; /* Match text color */
}

.ui-notification.info {
    background-color: #0dcaf0; /* Bootstrap info teal */
    border-left: 5px solid #0aa2c0;
}
.ui-notification.info::before {
    content: "\f05a"; /* Font Awesome info-circle icon */
}


/* Estilos para el Modal de Compartir */
#shareModal .modal-content {
    border-radius: 15px; /* Bordes más redondeados para el modal */
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#shareModal .modal-header {
    background-color: var(--naturgy-blue); /* Usando tu variable de color */
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1rem 1.5rem;
    border-bottom: none; /* Quitar el borde inferior del header */
}

#shareModal .modal-header .modal-title {
    font-weight: 600;
}

#shareModal .btn-close-white {
    filter: brightness(0) invert(1); /* Asegura que el botón de cerrar sea blanco */
}

#shareModal .modal-body {
    padding: 1.5rem 2rem; /* Más padding en el cuerpo del modal */
}

.share-options {
    display: flex;
    flex-wrap: wrap; /* Para que se ajusten en pantallas más pequeñas */
    gap: 15px;       /* Espacio entre los botones */
    justify-content: center; /* Centrar los botones si no ocupan todo el ancho */
    margin-bottom: 20px; /* Espacio antes del "copiar enlace" */
}

.share-option {
    display: inline-flex; /* Para alinear ícono y texto */
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px; /* Botones más redondeados (píldora) */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0; /* Borde sutil por defecto */
    color: #333; /* Color de texto por defecto */
    background-color: #f8f9fa; /* Fondo claro por defecto */
    min-width: 150px; /* Ancho mínimo para que no se vean muy pequeños */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.share-option i {
    margin-right: 10px;
    font-size: 1.2em; /* Íconos un poco más grandes */
}

.share-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: white; /* Texto blanco al pasar el mouse para todos */
        color: #ffffff;
    background: #16cd78;
}

/* Colores específicos por plataforma al hacer hover (opcional, pero recomendado) */
.share-option[data-platform="whatsapp"]:hover {
    background-color: #25D366; /* Verde WhatsApp */
    border-color: #128C7E;
}

.share-option[data-platform="facebook"]:hover {
    background-color: #1877F2; /* Azul Facebook */
    border-color: #0e5aae;
}

.share-option[data-platform="twitter"]:hover {
    background-color: #1DA1F2; /* Azul Twitter */
    border-color: #0c85d0;
}

.share-option[data-platform="email"]:hover {
    background-color: #777;    /* Gris para Email */
    border-color: #555;
}

.share-link-container p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

.share-link-container .input-group .form-control {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: #fff; /* Fondo blanco para el input */
    border-color: #ced4da;
}
.share-link-container .input-group .btn { /* Para el botón de copiar */
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: var(--naturgy-orange); /* Usando tu variable naranja */
    border-color: var(--naturgy-orange);
    color: white;
    min-width: 54px;
    max-width: 10%;
}
.share-link-container .input-group .btn:hover {
    background-color: #e56012; /* Naranja más oscuro al pasar el mouse */
    border-color: #e56012;
}

.modal{
    backdrop-filter: blur(4px);
}

.section-title-results{align-items: center; justify-content: center;}
.section-title-results a{ font-size: 14px;
    text-decoration: none;
    color: var(--naturgy-blue);
    align-items: center;
    justify-items: center;
    margin-bottom: 0px;
    display: inline-block;}

.importante{
    color: var(--naturgy-orange);
}