
        /* Base styles */
        :root {
            /* Brand colors based on the Conectados logo */
            --color-primary: #0d9488;
            --color-primary-dark: #0f766e;
            --color-accent: #e78c0e;
            --color-accent-dark: #d97706;
            --color-navy: #0a1e3b;
            --color-navy-dark: #051630;
            --color-navy-light: #1e3a6a;
            --color-green: #4caf50;
            --color-blue: #1e88e5;
            
            /* UI colors */
            --color-text: #111827;
            --color-text-light: #4b5563;
            --color-background: #ffffff;
            --color-background-light: #f9fafb;
            --color-border: #e5e7eb;
        }

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

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            color: var(--color-text);
            line-height: 1.5;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

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

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Button styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.625rem 1.25rem;
            font-weight: 600;
            border-radius: 0.375rem;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: var(--color-primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--color-primary-dark);
        }

        .btn-accent {
            background-color: var(--color-accent);
            color: white;
        }

        .btn-accent:hover {
            background-color: var(--color-accent-dark);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--color-accent);
            color: var(--color-accent);
        }

        .btn-outline:hover {
            background-color: var(--color-accent);
            color: white;
        }

        .btn-large {
            padding: 0.75rem 1.5rem;
            font-size: 1.125rem;
            border-radius: 9999px;
        }

        .btn-full {
            width: 100%;
        }

        .btn svg {
            width: 1.25rem;
            height: 1.25rem;
            margin-left: 0.5rem;
        }

        /* Header */
        .header {
            position: sticky;
            top: 0;
            z-index: 50;
            background-color: var(--color-background);
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            padding: 1rem 0;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
        }

        .main-nav ul li {
            margin-left: 1.5rem;
        }

        .main-nav a {
            font-weight: 500;
            color: var(--color-text);
            transition: color 0.2s ease;
        }

        .main-nav a:hover {
            color: var(--color-primary);
        }

        .header-btn {
            display: none;
        }

        .mobile-menu-btn {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 1.5rem;
            height: 1.25rem;
            background: transparent;
            border: none;
            cursor: pointer;
        }

        .mobile-menu-btn span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--color-text);
            transition: transform 0.3s ease;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: auto;
            min-height: 600px;
            background-image: url(https://conectadosconsulting.es/wp-content/uploads/2025/04/casa-con-paneles.jpg);
            background-size: cover;
            background-position: center;
            color: white;
            display: flex;
            align-items: center;
            padding: 4rem 0;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(10, 30, 59, 0.85) 0%, rgba(10, 30, 59, 0.6) 50%, rgba(10, 30, 59, 0.3) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 650px;
        }

        .hero h1 {
            font-size: 2.25rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            display: block;
        }

        .hero-image {
            margin: 1.5rem 0;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
        }

        .hero-image img {
            display: block;
            width: 100%;
            height: auto;
        }

        .hero p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Banner */
        .banner {
            background-color: var(--color-navy);
            color: white;
            padding: 1.5rem 0;
            text-align: center;
        }

        .banner p {
            font-size: 1.25rem;
            font-weight: 500;
        }

        /* Tax Benefits Section */
        .tax-benefits {
            padding: 4rem 0;
            background-color: var(--color-background-light);
        }

        .tax-benefits h2 {
            text-align: center;
            font-size: 1.75rem;
            margin-bottom: 3rem;
        }

        .highlight {
            color: var(--color-accent);
        }

        .sub-heading {
            display: block;
            margin-top: 0.5rem;
            font-size: 1.5rem;
            font-weight: 400;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }

        .benefit-card {
            background-color: white;
            border-radius: 0.5rem;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }
/*
        .icon-container {
            margin: 0 auto 1rem;
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background-color: rgba(13, 148, 136, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon {
            width: 2rem;
            height: 2rem;
            color: var(--color-primary);
        }
*/
        .benefit-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .benefit-card p {
            color: var(--color-text-light);
        }

        /* Additional Benefits */
        .additional-benefits {
            padding: 4rem 0;
        }

        .additional-benefits h2 {
            text-align: center;
            font-size: 1.75rem;
            margin-bottom: 3rem;
        }

        .benefits-columns {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }

        .benefit-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .benefit-column h3 {
            font-size: 1.25rem;
            margin: 1rem 0 0.5rem;
        }

        .benefit-column p {
            color: var(--color-text-light);
        }

        /* Contact Section */
        .contact-section {
            padding: 4rem 0;
            background-color: var(--color-primary);
            color: white;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .contact-info h2 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
        }

        .benefits-list {
            list-style: none;
        }

        .benefits-list li {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .benefits-list li svg {
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.75rem;
            color: var(--color-accent);
        }

        .contact-form {
            background-color: white;
            border-radius: 0.5rem;
            padding: 1.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.375rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--color-text);
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--color-border);
            border-radius: 0.375rem;
            font-family: inherit;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
        }

        .privacy-note {
            margin-top: 1rem;
            font-size: 0.75rem;
            color: var(--color-text-light);
        }

        .form-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .calculator-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .calculator-btn svg {
            margin-left: 0;
        }

/* Calculadora Solar - Estilos */
.solar-calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.solar-calculator-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.875rem;
    font-weight: 700;
}

.solar-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.solar-card-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.solar-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.solar-card-description {
    color: #6b7280;
    font-size: 0.875rem;
}

.solar-card-content {
    padding: 1.5rem;
}

.solar-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
}

.solar-text-muted {
    color: #6b7280;
    font-size: 0.875rem;
}

.solar-text-center {
    text-align: center;
}

.solar-text-green {
    color: #16a34a;
}

.solar-font-bold {
    font-weight: 700;
}

.solar-font-medium {
    font-weight: 500;
}

.solar-form-group {
    margin-bottom: 1.5rem;
}

.solar-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.solar-form-group input, 
.solar-form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.15s ease-in-out;
}

.solar-form-group input:focus, 
.solar-form-group select:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.solar-input-help {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.solar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    border: none;
}

.solar-btn-primary {
    background-color: #16a34a;
    color: white;
}

.solar-btn-primary:hover {
    background-color: #15803d;
}

.solar-btn-outline {
    background-color: transparent;
    border: 1px solid #d1d5db;
    color: #4b5563;
}

.solar-btn-outline:hover {
    background-color: #f3f4f6;
}

.solar-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.solar-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solar-step-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #f3f4f6;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.solar-step-text {
    font-size: 0.75rem;
    color: #9ca3af;
}

.solar-progress-bar {
    height: 0.5rem;
    background-color: #f3f4f6;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.solar-progress-bar-fill {
    height: 100%;
    background-color: #16a34a;
    width: 25%;
}

.solar-slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.solar-slider {
    flex: 1;
    -webkit-appearance: none;
    width: 100%;
    height: 0.5rem;
    border-radius: 0.25rem;
    background: #e5e7eb;
    outline: none;
}

.solar-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #16a34a;
    cursor: pointer;
    border: 2px solid white;
}

.solar-slider::-moz-range-thumb {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #16a34a;
    cursor: pointer;
    border: 2px solid white;
}

.solar-slider-value {
    width: 4rem;
    padding: 0.5rem;
    background-color: #f0fdf4;
    border-radius: 0.25rem;
    text-align: center;
    font-weight: 500;
}

.solar-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .solar-results-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.solar-result-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.25rem;
}

.solar-result-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solar-result-card-title svg {
    color: #22c55e;
}

.solar-result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.solar-result-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.75rem 0;
}

.solar-eco-card {
    background-color: #f0fdf4;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    color: #15803d;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.solar-step-content {
    display: none;
}

#solar-step1:checked ~ .solar-step-container #solar-step1-content,
#solar-step2:checked ~ .solar-step-container #solar-step2-content,
#solar-step3:checked ~ .solar-step-container #solar-step3-content,
#solar-step4:checked ~ .solar-step-container #solar-step4-content {
    display: block;
}

#solar-step1:checked ~ .solar-step-container .solar-progress-bar .solar-progress-bar-fill {
    width: 25%;
}

#solar-step2:checked ~ .solar-step-container .solar-progress-bar .solar-progress-bar-fill {
    width: 50%;
}

#solar-step3:checked ~ .solar-step-container .solar-progress-bar .solar-progress-bar-fill {
    width: 75%;
}

#solar-step4:checked ~ .solar-step-container .solar-progress-bar .solar-progress-bar-fill {
    width: 100%;
}

#solar-step1:checked ~ .solar-step-container .solar-steps .solar-step-1,
#solar-step2:checked ~ .solar-step-container .solar-steps .solar-step-1,
#solar-step2:checked ~ .solar-step-container .solar-steps .solar-step-2,
#solar-step3:checked ~ .solar-step-container .solar-steps .solar-step-1,
#solar-step3:checked ~ .solar-step-container .solar-steps .solar-step-2,
#solar-step3:checked ~ .solar-step-container .solar-steps .solar-step-3,
#solar-step4:checked ~ .solar-step-container .solar-steps .solar-step-1,
#solar-step4:checked ~ .solar-step-container .solar-steps .solar-step-2,
#solar-step4:checked ~ .solar-step-container .solar-steps .solar-step-3,
#solar-step4:checked ~ .solar-step-container .solar-steps .solar-step-4 {
    color: #16a34a;
}

#solar-step1:checked ~ .solar-step-container .solar-steps .solar-step-1 .solar-step-circle,
#solar-step2:checked ~ .solar-step-container .solar-steps .solar-step-1 .solar-step-circle,
#solar-step2:checked ~ .solar-step-container .solar-steps .solar-step-2 .solar-step-circle,
#solar-step3:checked ~ .solar-step-container .solar-steps .solar-step-1 .solar-step-circle,
#solar-step3:checked ~ .solar-step-container .solar-steps .solar-step-2 .solar-step-circle,
#solar-step3:checked ~ .solar-step-container .solar-steps .solar-step-3 .solar-step-circle,
#solar-step4:checked ~ .solar-step-container .solar-steps .solar-step-1 .solar-step-circle,
#solar-step4:checked ~ .solar-step-container .solar-steps .solar-step-2 .solar-step-circle,
#solar-step4:checked ~ .solar-step-container .solar-steps .solar-step-3 .solar-step-circle,
#solar-step4:checked ~ .solar-step-container .solar-steps .solar-step-4 .solar-step-circle {
    background-color: #dcfce7;
    color: #16a34a;
}

#solar-step1:checked ~ .solar-step-container .solar-steps .solar-step-1 .solar-step-text,
#solar-step2:checked ~ .solar-step-container .solar-steps .solar-step-1 .solar-step-text,
#solar-step2:checked ~ .solar-step-container .solar-steps .solar-step-2 .solar-step-text,
#solar-step3:checked ~ .solar-step-container .solar-steps .solar-step-1 .solar-step-text,
#solar-step3:checked ~ .solar-step-container .solar-steps .solar-step-2 .solar-step-text,
#solar-step3:checked ~ .solar-step-container .solar-steps .solar-step-3 .solar-step-text,
#solar-step4:checked ~ .solar-step-container .solar-steps .solar-step-1 .solar-step-text,
#solar-step4:checked ~ .solar-step-container .solar-steps .solar-step-2 .solar-step-text,
#solar-step4:checked ~ .solar-step-container .solar-steps .solar-step-3 .solar-step-text,
#solar-step4:checked ~ .solar-step-container .solar-steps .solar-step-4 .solar-step-text {
    color: #16a34a;
}

.solar-step-radio {
    display: none;
}

.solar-nav-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.solar-icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    vertical-align: middle;
}

        /* Footer */
        .footer {
            background-color: var(--color-navy-dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-column h3 {
            color: white;
            font-size: 1.125rem;
            margin-bottom: 1.25rem;
        }

        .footer-column p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .footer-links,
        .contact-list {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .contact-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
        }

        .contact-list li svg {
            width: 1rem;
            height: 1rem;
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: background-color 0.2s ease;
        }

        .social-link:hover {
            background-color: var(--color-primary);
        }

        .social-link svg {
            width: 1.125rem;
            height: 1.125rem;
        }

        .footer-bottom {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        /* Responsive styles */
        @media (min-width: 640px) {
            .hero h1 {
                font-size: 2.75rem;
            }
            
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .form-actions {
                flex-direction: row;
            }

            .form-actions .btn {
                flex: 1;
            }
        }

        @media (min-width: 768px) {
            .container {
                padding: 0 2rem;
            }
            
            .header-btn {
                display: inline-flex;
            }
            
            .mobile-menu-btn {
                display: none;
            }
            
            .hero {
                min-height: 650px;
            }
            
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .benefits-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .benefits-columns {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .contact-container {
                grid-template-columns: 1fr 1fr;
            }
            
            .footer-columns {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .hero h1 {
                font-size: 4rem;
            }
            
            .tax-benefits h2,
            .additional-benefits h2 {
                font-size: 2rem;
            }
        }
/* Mejoras para dispositivos móviles */
@media (max-width: 767px) {
    /* Contenedor principal con padding reducido */
    .solar-calculator-container {
        padding: 1rem 0.5rem;
    }
    
    /* Título más pequeño */
    .solar-calculator-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Reducir padding en tarjetas */
    .solar-card-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .solar-card-content {
        padding: 1rem;
    }
    
    .solar-card-footer {
        padding: 0.75rem 1rem;
    }
    
    /* Ajustar pasos de progreso */
    .solar-steps {
        margin-bottom: 1rem;
    }
    
    .solar-step-circle {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.875rem;
    }
    
    /* Ocultar texto de pasos en móvil muy pequeño */
    @media (max-width: 360px) {
        .solar-step-text {
            display: none;
        }
    }
    
    /* Ajustar formularios */
    .solar-form-group {
        margin-bottom: 1.25rem;
    }
    
    .solar-form-group input, 
    .solar-form-group select {
        padding: 0.625rem;
        font-size: 0.9375rem;
    }
    
    /* Ajustar sliders */
    .solar-slider-container {
        gap: 0.5rem;
    }
    
    .solar-slider-value {
        width: 3.5rem;
        padding: 0.375rem;
        font-size: 0.875rem;
    }
    
    /* Ajustar botones de navegación */
    .solar-nav-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .solar-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
        flex: 1;
        min-width: 5rem;
        justify-content: center;
    }
    
    /* Resultados */
    .solar-result-card {
        padding: 1rem;
    }
    
    .solar-result-card-title {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }
    
    .solar-result-row {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }
    
    .solar-eco-card {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    /* Asegurar que los botones de navegación se vean bien */
    #solar-btn-prev-1,
    #solar-btn-prev-2,
    #solar-btn-prev-3,
    #solar-btn-next-1,
    #solar-btn-next-2,
    #solar-btn-next-3,
    #solar-btn-new {
        min-width: auto;
        flex-basis: calc(50% - 0.25rem);
    }
    
    /* Ajustar iconos */
    .solar-icon {
        width: 1rem;
        height: 1rem;
    }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 359px) {
    .solar-card-title {
        font-size: 1.125rem;
    }
    
    .solar-card-description {
        font-size: 0.8125rem;
    }
    
    .solar-form-group label {
        font-size: 0.875rem;
    }
    
    .solar-input-help {
        font-size: 0.75rem;
    }
    
    /* Hacer que los botones de navegación se apilen en pantallas muy pequeñas */
    #solar-btn-prev-1,
    #solar-btn-prev-2,
    #solar-btn-prev-3,
    #solar-btn-next-1,
    #solar-btn-next-2,
    #solar-btn-next-3,
    #solar-btn-new {
        flex-basis: 100%;
        margin-bottom: 0.5rem;
    }
    
    .solar-nav-buttons {
        flex-direction: column-reverse;
    }
}
    