/* /Components/ContactForm.razor.rz.scp.css */
.contact-form-container[b-95ps9fet3h] {
    padding: 0.5rem;
}

.form-group[b-95ps9fet3h] {
    margin: 1.25rem;
}

.form-row[b-95ps9fet3h] {
    display: flex;
    gap: 1rem;
}

.half[b-95ps9fet3h] {
    flex: 1;
}

label[b-95ps9fet3h] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.label-wrapper[b-95ps9fet3h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.label-wrapper label[b-95ps9fet3h] {
    margin-bottom: 0;
}

.char-count[b-95ps9fet3h] {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
}

.input-wrapper[b-95ps9fet3h] {
    display: flex;
    align-items: center;
    width: 100%;
    height: 45px;
    border: 1px solid transparent;
    border-radius: var(--border-radius-btn);
    background-color: var(--bg-subtle);
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
    padding: 0 0.75rem;
}

.input-wrapper.textarea[b-95ps9fet3h] {
    height: auto;
    align-items: flex-start;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.input-wrapper.textarea .input-icon[b-95ps9fet3h] {
    margin-top: 0.3rem;
}

.input-wrapper:focus-within[b-95ps9fet3h] {
    background-color: var(--bg-white);
    border-color: var(--action-color);
    box-shadow: 0 0 0 3px rgba(255, 180, 0, 0.15);
}

.input-wrapper:focus-within .input-icon[b-95ps9fet3h] {
    color: var(--action-color);
}

.input-icon[b-95ps9fet3h] {
    color: #9ca3af;
    font-size: 1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    pointer-events: none;
    transition: color 0.2s;
}

.form-control.with-icon[b-95ps9fet3h] {
    flex: 1;
    border: none;
    padding: 0;
    height: 100%;
    background-color: transparent !important;
    outline: none;
    box-shadow: none;
    width: 100%;
    color: inherit;
}

/* Estilo sofisticado para Selects (Flecha personalizada) */
select.form-control.with-icon[b-95ps9fet3h] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 1rem !important;
    cursor: pointer;
}

/* Color placeholder para la opción por defecto */
select.form-control.with-icon option[value=""][b-95ps9fet3h] {
    color: #9ca3af;
}

/* Solución definitiva para el fondo gris del Autocompletado */
input:-webkit-autofill[b-95ps9fet3h],
input:-webkit-autofill:hover[b-95ps9fet3h], 
input:-webkit-autofill:focus[b-95ps9fet3h], 
input:-webkit-autofill:active[b-95ps9fet3h] {
    -webkit-box-shadow: 0 0 0 30px var(--bg-white) inset !important;
    -webkit-text-fill-color: inherit !important;
    transition: background-color 5000s ease-in-out 0s;
}

.input-wrapper.textarea textarea.form-control.with-icon[b-95ps9fet3h] {
    min-height: 120px;
    resize: vertical;
    padding-top: 0;
}

.btn-orange.full-width[b-95ps9fet3h] {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn-orange:disabled[b-95ps9fet3h] {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-orange i.fa-paper-plane[b-95ps9fet3h] {
    transition: transform 0.3s ease;
}

.btn-orange:hover i.fa-paper-plane[b-95ps9fet3h] {
    transform: translate(4px, -4px);
}

.success-message[b-95ps9fet3h] {
    text-align: center;
    padding: 2rem 0;
    animation: fadeIn-b-95ps9fet3h 0.5s;
}

.icon-circle[b-95ps9fet3h] {
    width: 60px;
    height: 60px;
    background-color: #d1fae5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.success-message h3[b-95ps9fet3h] {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.success-message p[b-95ps9fet3h] {
    color: var(--text-light);
}

@keyframes fadeIn-b-95ps9fet3h {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Skeleton Loader */
.skeleton-anim[b-95ps9fet3h] {
    background: linear-gradient(90deg, var(--bg-subtle) 25%, var(--border-color) 50%, var(--bg-subtle) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading-b-95ps9fet3h 1.5s infinite;
    border-radius: var(--border-radius-btn);
}

.skeleton-label[b-95ps9fet3h] {
    height: 1rem;
    width: 40%;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.skeleton-input[b-95ps9fet3h] {
    height: 45px;
    width: 100%;
    margin-bottom: 1.25rem;
}

.skeleton-textarea[b-95ps9fet3h] {
    height: 120px;
    width: 100%;
    margin-bottom: 1.25rem;
}

.skeleton-btn[b-95ps9fet3h] {
    height: 48px;
    width: 100%;
}

@keyframes skeleton-loading-b-95ps9fet3h {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
/* /Components/FeatureCard.razor.rz.scp.css */
.feature-card[b-m3qo4w1x8u] {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: var(--bg-white);
    border-radius: var(--border-radius-card);
    height: 100%;
    border: 1px solid transparent;
}

.feature-card:hover[b-m3qo4w1x8u] {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(255, 180, 0, 0.3);
}

.hexagon-wrapper[b-m3qo4w1x8u] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hexagon[b-m3qo4w1x8u] {
    width: 80px;
    height: 80px;
    background-color: var(--bg-subtle);
    color: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .hexagon[b-m3qo4w1x8u] {
    background-color: var(--action-color);
    color: var(--action-text);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px rgba(255, 180, 0, 0.3);
}

h3[b-m3qo4w1x8u] {
    margin: 1rem 0 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}
/* /Components/ModalDialog.razor.rz.scp.css */
.modal-backdrop[b-hzoqri5loc] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn-b-hzoqri5loc 0.3s;
}

.modal-content[b-hzoqri5loc] {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-card);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    animation: slideIn-b-hzoqri5loc 0.3s;
}

.modal-header[b-hzoqri5loc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3[b-hzoqri5loc] {
    margin: 0;
    color: var(--primary-color);
}

.close-btn[b-hzoqri5loc] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

@keyframes fadeIn-b-hzoqri5loc {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn-b-hzoqri5loc {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* /Components/PricingCard.razor.rz.scp.css */
.pricing-card[b-vex745zs6a] {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-card);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeInUp-b-vex745zs6a 0.6s ease-out backwards;
}

.pricing-card:hover[b-vex745zs6a] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--action-color); /* Hover effect del SaaS */
}

.pricing-card.recommended[b-vex745zs6a] {
    border: 2px solid var(--action-color);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card.recommended:hover[b-vex745zs6a] {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 180, 0, 0.15);
}

.badge[b-vex745zs6a] {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--action-color);
    color: var(--action-text);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

h3[b-vex745zs6a] {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price[b-vex745zs6a] {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    animation: priceChange-b-vex745zs6a 0.3s ease-out;
}

.description[b-vex745zs6a] {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.features[b-vex745zs6a] {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.features li[b-vex745zs6a] {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.features li i[b-vex745zs6a] {
    color: #10b981; /* Verde para el check */
}

.btn-plan[b-vex745zs6a] {
    width: 100%;
    padding: 12px;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline[b-vex745zs6a] {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover[b-vex745zs6a] {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-orange[b-vex745zs6a] {
    background-color: var(--action-color);
    color: var(--action-text);
    border: none;
}

.pricing-card.recommended .btn-orange[b-vex745zs6a] {
    position: relative;
    overflow: hidden;
}

.pricing-card.recommended .btn-orange[b-vex745zs6a]::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shimmer-b-vex745zs6a 3s infinite;
}

.btn-orange:hover[b-vex745zs6a] {
    background-color: var(--action-hover);
    filter: none;
}

@keyframes priceChange-b-vex745zs6a {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer-b-vex745zs6a {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

@keyframes fadeInUp-b-vex745zs6a {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/TestimonialCard.razor.rz.scp.css */
.testimonial-card[b-edddnnnp4n] {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-card);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 4px solid var(--action-color);
    transition: transform 0.3s ease;
    animation: fadeIn-b-edddnnnp4n 0.5s ease-out;
}

.testimonial-card:hover[b-edddnnnp4n] {
    transform: translateY(-5px);
}

.quote-icon[b-edddnnnp4n] {
    color: #e5e7eb;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quote-text[b-edddnnnp4n] {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author-info[b-edddnnnp4n] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar[b-edddnnnp4n] {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.details[b-edddnnnp4n] {
    display: flex;
    flex-direction: column;
}

.name[b-edddnnnp4n] {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.role[b-edddnnnp4n] {
    font-size: 0.8rem;
    color: var(--text-light);
}

@keyframes fadeIn-b-edddnnnp4n {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

@keyframes fadeIn-b-edddnnnp4n {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/VideoModal.razor.rz.scp.css */
.video-modal-backdrop[b-m6wqqdh4db] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn-b-m6wqqdh4db 0.3s ease-out;
}

.video-modal-content[b-m6wqqdh4db] {
    position: relative;
    width: 100%;
    max-width: 960px; /* Ancho estándar para video */
    background: #000;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-wrapper[b-m6wqqdh4db] {
    position: relative;
    padding-bottom: 56.25%; /* Aspect Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-wrapper iframe[b-m6wqqdh4db] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-close-btn[b-m6wqqdh4db] {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    z-index: 2001;
}

.video-modal-close-btn:hover[b-m6wqqdh4db] {
    transform: scale(1.1);
    color: var(--action-color);
}

@keyframes fadeIn-b-m6wqqdh4db {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* /Pages/Gallery.razor.rz.scp.css */
.gallery-page[b-snudp6xhhg] {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    animation: fadeIn-b-snudp6xhhg 0.5s ease-out;
}

.gallery-header[b-snudp6xhhg] {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.btn-back[b-snudp6xhhg] {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    transition: color 0.2s;
    font-size: 1rem;
}

.btn-back:hover[b-snudp6xhhg] {
    color: var(--action-color);
}

.header-text h1[b-snudp6xhhg] {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.header-text p[b-snudp6xhhg] {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Grid Layout */
.gallery-grid[b-snudp6xhhg] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-card[b-snudp6xhhg] {
    background: var(--bg-white);
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.gallery-card:hover[b-snudp6xhhg] {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--action-color);
}

.img-frame[b-snudp6xhhg] {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: var(--bg-subtle);
}

.img-frame img[b-snudp6xhhg] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .img-frame img[b-snudp6xhhg] {
    transform: scale(1.05);
}

.hover-overlay[b-snudp6xhhg] {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    gap: 0.5rem;
}

.gallery-card:hover .hover-overlay[b-snudp6xhhg] {
    opacity: 1;
}

.card-info[b-snudp6xhhg] {
    padding: 1.5rem;
}

.card-info h3[b-snudp6xhhg] {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.card-info p[b-snudp6xhhg] {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Lightbox */
.lightbox-backdrop[b-snudp6xhhg] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn-b-snudp6xhhg 0.3s ease-out;
}

.lightbox-content[b-snudp6xhhg] {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.lightbox-content img[b-snudp6xhhg] {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.close-btn[b-snudp6xhhg] {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.close-btn:hover[b-snudp6xhhg] {
    transform: scale(1.1);
    color: var(--action-color);
}

.lightbox-footer[b-snudp6xhhg] {
    margin-top: 1rem;
    color: white;
    text-align: center;
}

@keyframes fadeIn-b-snudp6xhhg {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* /Pages/Index.razor.rz.scp.css */
/* Hero Section */
.hero-section[b-833110szhq] {
    text-align: center;
    padding: 8rem 1rem 6rem;
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(33, 33, 33, 0.9), rgba(33, 33, 33, 0.95)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-title[b-833110szhq] {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp-b-833110szhq 0.8s ease-out;
}

.highlight-text[b-833110szhq] {
    color: var(--action-color);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(255, 180, 0, 0.3);
}

.hero-subtitle[b-833110szhq] {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    animation: fadeInUp-b-833110szhq 0.8s ease-out 0.2s backwards;
}

.hero-cta[b-833110szhq] {
    animation: fadeInUp-b-833110szhq 0.8s ease-out 0.4s backwards;
}

.btn-lg[b-833110szhq] {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-btn);
    box-shadow: 0 10px 25px rgba(255, 180, 0, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-lg:hover[b-833110szhq] {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 35px rgba(255, 180, 0, 0.35);
}

/* Features Section */
.features-section[b-833110szhq] {
    background-color: var(--bg-white);
    padding: 6rem 1rem;
}

.section-container[b-833110szhq] {
    max-width: 1200px;
    margin: 0 auto;
}

.grid-container[b-833110szhq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Testimonials Section */
.testimonials-section[b-833110szhq] {
    background-color: var(--primary-color, #003366);
    background-image: linear-gradient(rgba(33, 33, 33, 0.9), rgba(33, 33, 33, 0.95)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6rem 1rem;
    color: white;
}

.section-title-white[b-833110szhq] {
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.carousel-controls[b-833110szhq] {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.control-btn[b-833110szhq] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.control-btn.prev[b-833110szhq] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-white);
    backdrop-filter: blur(5px);
}

.control-btn.prev:hover[b-833110szhq] {
    background: rgba(255,255,255,0.2);
    border-color: var(--text-white);
}

.control-btn.next[b-833110szhq] {
    background: var(--bg-white);
    border: none;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.control-btn.next:hover[b-833110szhq] {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Pricing Section */
.pricing-section[b-833110szhq] {
    background-color: var(--bg-white);
    padding: 6rem 1rem;
}

.pricing-toggle[b-833110szhq] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
}

.pricing-toggle .active[b-833110szhq] {
    color: var(--primary-color);
}

.switch[b-833110szhq] {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.switch input[b-833110szhq] {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider[b-833110szhq] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: .4s;
    border-radius: 34px;
}

.slider[b-833110szhq]:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: var(--bg-white);
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .slider[b-833110szhq] {
    background-color: var(--primary-color);
}

input:checked + .slider[b-833110szhq]:before {
    transform: translateX(24px);
}

.discount-badge[b-833110szhq] {
    background-color: #fff7ed;
    color: var(--action-color);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 0.5rem;
    border: 1px solid var(--action-color);
    vertical-align: middle;
}

.divider[b-833110szhq] {
    height: 3rem;
}

.feature-legend[b-833110szhq] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.legend-item[b-833110szhq] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-item .symbol[b-833110szhq] {
    color: var(--action-color);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
}

.fiscal-notice[b-833110szhq] {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px;
    background-color: var(--bg-subtle);
    border-left: 4px solid var(--action-color);
    border-radius: 8px;
    text-align: center;
}

.fiscal-notice p[b-833110szhq] {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.fiscal-notice strong[b-833110szhq] {
    color: var(--primary-color);
}

.fiscal-notice i[b-833110szhq] {
    color: var(--action-color);
    margin-right: 0.5rem;
}

.price-disclaimer[b-833110szhq] {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.8;
}

.price-disclaimer i[b-833110szhq] {
    margin-right: 0.5rem;
}

/* Contact Section */
.contact-section[b-833110szhq] {
    padding: 6rem 1rem;
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(33, 33, 33, 0.9), rgba(33, 33, 33, 0.95)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.section-title[b-833110szhq] {
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-section .section-title[b-833110szhq] {
    color: white;
}

.contact-wrapper[b-833110szhq] {
    max-width: 550px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    text-align: left;
}

/* Animations */
@keyframes fadeInUp-b-833110szhq {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title[b-833110szhq] {
        font-size: 2.5rem;
    }
    .hero-section[b-833110szhq] {
        padding: 5rem 1rem 4rem;
    }
}
/* /Shared/LandingLayout.razor.rz.scp.css */
.landing-layout[b-vt1rc7eqio] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
.site-header[b-vt1rc7eqio] {
    padding: 1rem;
    background: var(--bg-white);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, padding 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled[b-vt1rc7eqio] {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background-color: var(--header-bg-scrolled);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-container[b-vt1rc7eqio] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo[b-vt1rc7eqio] {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
}

.header-actions[b-vt1rc7eqio] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle[b-vt1rc7eqio] {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.theme-toggle:hover[b-vt1rc7eqio] {
    background-color: rgba(0,0,0,0.05);
}

.btn-login[b-vt1rc7eqio] {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-btn);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
}

.btn-login:hover[b-vt1rc7eqio] {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-login span[b-vt1rc7eqio] {
    white-space: nowrap;
    transition: max-width 0.3s ease, opacity 0.3s ease;
    max-width: 150px;
    opacity: 1;
}

.site-header.scrolled .btn-login[b-vt1rc7eqio] {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
}

.site-header.scrolled .btn-login span[b-vt1rc7eqio] {
    max-width: 0;
    opacity: 0;
}

main[b-vt1rc7eqio] {
    flex: 1;
}

/* Footer Styles */
.site-footer[b-vt1rc7eqio] {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 1rem 2rem;
    margin-top: auto;
}

.footer-container[b-vt1rc7eqio] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4[b-vt1rc7eqio] {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-desc[b-vt1rc7eqio] {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links[b-vt1rc7eqio] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li[b-vt1rc7eqio] {
    margin-bottom: 0.8rem;
}

.footer-links a[b-vt1rc7eqio] {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover[b-vt1rc7eqio] {
    color: var(--action-color);
}

.social-links[b-vt1rc7eqio] {
    display: flex;
    gap: 1rem;
}

.social-icon[b-vt1rc7eqio] {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover[b-vt1rc7eqio] {
    background: var(--action-color);
    transform: translateY(-3px);
}

.footer-bottom[b-vt1rc7eqio] {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}
