/*
Sorteos Venezuela - Sistema Completo
Estilos principales manteniendo el diseño original
*/

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 240, 240, 0.85) 100%),
        url('assets/images/SorteosVzla.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Fondo de marca de agua */
.sv-watermark-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/SorteosVzla.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

/* Contenedor principal */
.sv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Banners promocionales */
.sv-banners-section {
    margin: 2rem 0;
    margin-top: 4rem; /* Espacio adicional para el header sticky */
}

.sv-banner-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.sv-banner-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.sv-banner-item:hover {
    transform: translateY(-5px);
}

.sv-banner-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.sv-banner-image[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sv-banner-image[loading="lazy"].loaded {
    opacity: 1;
}

.sv-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 124, 186, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sv-banner-item:hover .sv-banner-overlay {
    opacity: 1;
}

.sv-banner-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.sv-banner-overlay p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.sv-banner-overlay .sv-btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sv-banner-overlay .sv-btn-primary {
    background: white;
    color: #007cba;
    border: 2px solid white;
}

.sv-banner-overlay .sv-btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.sv-banner-overlay .sv-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.sv-banner-overlay .sv-btn-outline:hover {
    background: white;
    color: #007cba;
}

/* Cabecera simple */
.sv-simple-header {
    text-align: center;
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    margin: 2rem 0;
    margin-top: 6rem; /* Espacio adicional para el header sticky */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sv-simple-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.sv-simple-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Menú principal */
.sv-main-menu {
    margin: 3rem 0;
    margin-top: 2rem; /* Espacio adicional para evitar que el header lo tape */
}

.sv-main-menu h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.sv-menu-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sv-menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.sv-menu-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.sv-menu-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.sv-menu-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Botones */
.sv-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.sv-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.sv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.sv-btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.sv-btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Sección de sorteos destacados */
.sv-featured-section {
    margin: 4rem 0;
    margin-top: 2rem; /* Espacio adicional para evitar que el header la tape */
}

.sv-featured-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.sv-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.sv-featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.sv-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sv-featured-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sv-featured-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.5s ease;
    opacity: 1;
}

.sv-featured-banner[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sv-featured-banner[loading="lazy"].loaded {
    opacity: 1;
}

.sv-featured-card:hover .sv-featured-banner {
    transform: scale(1.05);
}

.sv-featured-content {
    padding: 2rem;
}

.sv-featured-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.sv-featured-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sv-featured-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.sv-price {
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.sv-tickets {
    background: #f8f9fa;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

/* Cómo funciona */
.sv-how-it-works {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.sv-how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.sv-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sv-step-card {
    text-align: center;
    padding: 2rem;
}

.sv-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.sv-step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.sv-step-card p {
    color: #666;
    line-height: 1.6;
}

/* Redes sociales */
.sv-social-section {
    margin: 4rem 0;
    text-align: center;
}

.sv-social-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.sv-social-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.sv-social-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sv-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 120px;
}

.sv-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.sv-social-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.sv-social-link span {
    font-weight: 600;
}

/* Footer */
.sv-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.sv-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.sv-footer-section h3,
.sv-footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.sv-footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.sv-footer-section ul {
    list-style: none;
}

.sv-footer-section ul li {
    margin-bottom: 0.5rem;
}

.sv-footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sv-footer-section ul li a:hover {
    color: white;
}


.sv-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.sv-footer-links {
    display: flex;
    gap: 2rem;
}

.sv-footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ========================================
   RESPONSIVE DESIGN - CONSOLIDADO
   ======================================== */

/* Tablet y móviles grandes */
@media (max-width: 1024px) {
    .sv-header-content {
        gap: 20px;
    }
    
    .sv-nav-menu {
        gap: 20px;
    }
    
    .sv-nav-menu a {
        padding: 10px 16px;
        font-size: 1rem;
    }
    
    .sv-menu-toggle {
        display: flex;
        order: 4;
    }
    
    .sv-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .sv-nav.active {
        display: block;
    }
    
    .sv-nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .sv-nav-menu li {
        width: 100%;
    }
    
    .sv-nav-menu a {
        display: block;
        padding: 15px 20px;
        border-radius: 8px;
        margin-bottom: 5px;
        text-align: center;
    }
}

/* Móviles y tablets pequeñas */
/* Móviles y tablets pequeñas */
@media (max-width: 768px) {
    .sv-container {
        padding: 0 1rem;
    }
    
    /* Header optimizado para móviles */
    .sv-header {
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .sv-header-content {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .sv-logo {
        justify-content: center;
        text-align: center;
    }
    
    .sv-logo-text h1 {
        font-size: 1.4rem;
    }
    
    .sv-logo-text span {
        font-size: 0.8rem;
    }
    
    .sv-nav {
        order: 3;
        width: 100%;
    }
    
    .sv-nav-menu {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .sv-nav-menu a {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .sv-auth-buttons {
        order: 2;
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .sv-btn-sm {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    /* Banners optimizados */
    .sv-banners-section {
        margin: 20px 0;
        margin-top: 60px !important; /* Espacio adicional para evitar que tape el header */
    }
    
    .sv-banner-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sv-banner-item {
        height: 200px;
    }
    
    .sv-banner-image {
        height: 200px;
    }
    
    .sv-banner-overlay h3 {
        font-size: 1.2rem;
    }
    
    .sv-banner-overlay p {
        font-size: 0.9rem;
    }
    
    /* Cabecera simple */
    .sv-simple-header {
        padding: 30px 0;
        text-align: center;
    }
    
    .sv-simple-header h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .sv-simple-header p {
        font-size: 1rem;
    }
    
    /* Menú principal */
    .sv-main-menu {
        padding: 30px 0;
    }
    
    .sv-main-menu h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .sv-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sv-menu-card {
        padding: 20px;
    }
    
    .sv-menu-card h3 {
        font-size: 1.2rem;
    }
    
    .sv-menu-card p {
        font-size: 0.9rem;
    }
    
    /* Sorteos destacados */
    .sv-featured-section {
        padding: 30px 0;
    }
    
    .sv-featured-section h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .sv-featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sv-featured-card {
        margin-bottom: 20px;
    }
    
    .sv-featured-image {
        height: 150px;
    }
    
    .sv-featured-content {
        padding: 15px;
    }
    
    .sv-featured-content h3 {
        font-size: 1.1rem;
    }
    
    .sv-featured-content p {
        font-size: 0.9rem;
    }
    
    .sv-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .sv-social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer responsive */
    .sv-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sv-footer-section {
        text-align: center;
    }
    
    .sv-footer-brand {
        text-align: center;
    }
    
    .sv-footer-links-list {
        text-align: center;
    }
    
    .sv-contact-info {
        text-align: center;
    }
    
    .sv-legal-info {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .sv-legal-badge-large {
        flex-direction: column;
        text-align: center;
        min-width: auto;
        padding: 20px;
    }
    
    .sv-legal-details {
        text-align: center;
        min-width: auto;
        padding: 20px;
    }
    
    .sv-footer-links {
        gap: 20px;
        justify-content: center;
    }
    
    .sv-footer-social {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .sv-social-link {
        padding: 15px 10px;
        min-height: 70px;
    }
    
    .sv-social-link i {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .sv-social-link span {
        font-size: 0.85rem;
    }
    
    .sv-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .sv-footer-links {
        justify-content: center;
    }
    
    /* Sistema de sorteos responsive */
    .sv-system-header h1 {
        font-size: 2.2rem;
    }
    
    .sv-system-header p {
        font-size: 1.1rem;
    }
    
    .sv-lottery-reference {
        grid-template-columns: 1fr;
    }
    
    .sv-system-info {
        grid-template-columns: 1fr;
    }
    
    .sv-advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .sv-process-step {
        flex-direction: column;
        text-align: center;
    }
    
    /* Modal responsive */
    .sv-modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .sv-modal-body {
        padding: 25px 20px;
    }
    
    /* Admin panel responsive */
    .sv-admin-tabs {
        flex-direction: column;
    }
    
    .sv-tab-btn {
        justify-content: center;
    }
    
    .sv-form-row {
        grid-template-columns: 1fr;
    }
    
    .sv-lottery-config {
        grid-template-columns: 1fr;
    }
    
    .sv-tickets-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Profile responsive */
    .sv-step-indicator {
        flex-direction: column;
        gap: 15px;
    }
    
    .sv-step-line {
        width: 2px;
        height: 30px;
    }
    
    .sv-verification-actions {
        flex-direction: column;
    }
    
    .sv-profile-tabs {
        flex-direction: column;
    }
    
    .sv-social-connections {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   OPTIMIZACIONES ESPECÍFICAS PARA ANDROID E IPHONE
   ======================================== */

/* Optimizaciones para Android */
@supports (-webkit-appearance: none) {
    .sv-btn, .sv-btn-sm {
        -webkit-appearance: none;
        border-radius: 25px;
    }
    
    .sv-form-group input {
        -webkit-appearance: none;
        border-radius: 8px;
    }
}

/* Optimizaciones para iPhone */
@supports (-webkit-touch-callout: none) {
    .sv-btn, .sv-btn-sm {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
    }
    
    .sv-form-group input {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
    }
}

/* Prevenir zoom en inputs móviles */
@media screen and (max-width: 768px) {
    .sv-form-group input {
        font-size: 16px !important;
    }
}

/* Optimización de touch para móviles */
@media screen and (max-width: 768px) {
    .sv-btn, .sv-btn-sm {
        min-height: 44px;
        min-width: 44px;
    }
    
    .sv-nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Optimización de rendimiento móvil */
@media screen and (max-width: 768px) {
    /* Reducir animaciones en dispositivos de bajo rendimiento */
    .sv-menu-card:hover,
    .sv-featured-card:hover,
    .sv-social-link:hover {
        transform: none;
        transition: none;
    }
    
    .sv-btn:hover,
    .sv-btn-sm:hover {
        transform: none;
        transition: none;
    }
    
    /* Optimización de scroll */
    .sv-banner-item:hover .sv-banner-overlay {
        opacity: 0.8;
    }
    
    .sv-featured-card:hover .sv-featured-banner {
        transform: none;
    }
}

/* Prevenir double-tap zoom en móviles */
@media screen and (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }
}

/* ========================================
   BREAKPOINTS ESPECÍFICOS PARA ANDROID E IPHONE
   ======================================== */

/* iPhone X, XS, 11 Pro, 12 mini, 13 mini */
@media screen and (max-width: 375px) and (max-height: 812px) {
    .sv-container {
        padding: 0 10px;
    }
    
    .sv-header {
        padding: 10px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .sv-banners-section {
        margin-top: 60px !important;
    }
    
    .sv-logo-text h1 {
        font-size: 1.1rem;
    }
    
    .sv-logo-text span {
        font-size: 0.7rem;
    }
    
    .sv-nav-menu a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .sv-btn-sm {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* iPhone 6, 7, 8, SE */
@media screen and (max-width: 375px) and (max-height: 667px) {
    .sv-container {
        padding: 0 8px;
    }
    
    .sv-header {
        padding: 8px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .sv-banners-section {
        margin-top: 60px !important;
    }
    
    .sv-logo-text h1 {
        font-size: 1rem;
    }
    
    .sv-logo-text span {
        font-size: 0.65rem;
    }
    
    .sv-nav-menu a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .sv-btn-sm {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Android - Pantallas pequeñas (360px) */
@media screen and (max-width: 360px) {
    .sv-container {
        padding: 0 8px;
    }
    
    .sv-header {
        padding: 8px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .sv-banners-section {
        margin-top: 60px !important;
    }
    
    .sv-logo-text h1 {
        font-size: 1rem;
    }
    
    .sv-logo-text span {
        font-size: 0.65rem;
    }
    
    .sv-nav-menu a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .sv-btn-sm {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Android - Pantallas medianas (400px) */
@media screen and (max-width: 400px) {
    .sv-container {
        padding: 0 10px;
    }
    
    .sv-header {
        padding: 10px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .sv-banners-section {
        margin-top: 60px !important;
    }
    
    .sv-logo-text h1 {
        font-size: 1.2rem;
    }
    
    .sv-logo-text span {
        font-size: 0.75rem;
    }
    
    .sv-nav-menu a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .sv-btn-sm {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 480px) {
    .sv-container {
        padding: 0 0.5rem;
    }
    
    /* Header para móviles muy pequeños */
    .sv-header {
        padding: 10px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .sv-banners-section {
        margin-top: 60px !important;
    }
    
    .sv-logo-text h1 {
        font-size: 1.2rem;
    }
    
    .sv-logo-text span {
        font-size: 0.7rem;
    }
    
    .sv-nav-menu a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .sv-btn-sm {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    /* Banners para móviles muy pequeños */
    .sv-banner-item {
        height: 150px;
    }
    
    .sv-banner-image {
        height: 150px;
    }
    
    .sv-banner-overlay h3 {
        font-size: 1rem;
    }
    
    .sv-banner-overlay p {
        font-size: 0.8rem;
    }
    
    .sv-banner-overlay .sv-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Cabecera para móviles muy pequeños */
    .sv-simple-header h1 {
        font-size: 1.5rem;
    }
    
    .sv-simple-header p {
        font-size: 0.9rem;
    }
    
    /* Menú principal para móviles muy pequeños */
    .sv-main-menu h2 {
        font-size: 1.3rem;
    }
    
    .sv-menu-card {
        padding: 15px;
    }
    
    .sv-menu-card h3 {
        font-size: 1.1rem;
    }
    
    .sv-menu-card p {
        font-size: 0.85rem;
    }
    
    /* Sorteos destacados para móviles muy pequeños */
    .sv-featured-section h2 {
        font-size: 1.3rem;
    }
    
    .sv-featured-image {
        height: 120px;
    }
    
    .sv-featured-content {
        padding: 12px;
    }
    
    .sv-featured-content h3 {
        font-size: 1rem;
    }
    
    .sv-featured-content p {
        font-size: 0.85rem;
    }
    
    /* Footer para móviles muy pequeños */
    .sv-footer-social {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .sv-social-link {
        padding: 12px 8px;
        min-height: 60px;
    }
    
    .sv-social-link i {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }
    
    .sv-social-link span {
        font-size: 0.8rem;
    }
    
    .sv-footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .sv-footer-links a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .sv-legal-badge-large {
        padding: 12px 15px;
    }
    
    .sv-legal-text h4 {
        font-size: 1rem;
    }
    
    .sv-legal-text p {
        font-size: 0.8rem;
    }
    
    .sv-legal-details p {
        font-size: 0.8rem;
    }
}


/* Estilos para redes sociales */
.sv-social-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sv-social-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    border-radius: 15px;
}

.sv-social-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sv-social-header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.sv-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.sv-social-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.sv-social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sv-social-card.instagram {
    border-color: #E4405F;
}

.sv-social-card.facebook {
    border-color: #1877F2;
}

.sv-social-card.youtube {
    border-color: #FF0000;
}

.sv-social-card.tiktok {
    border-color: #000000;
}

.sv-social-card.twitter {
    border-color: #1DA1F2;
}

.sv-social-icon {
    text-align: center;
    margin-bottom: 20px;
}

.sv-social-icon i {
    font-size: 3rem;
    color: #007cba;
}

.sv-social-card.instagram .sv-social-icon i {
    color: #E4405F;
}

.sv-social-card.facebook .sv-social-icon i {
    color: #1877F2;
}

.sv-social-card.youtube .sv-social-icon i {
    color: #FF0000;
}

.sv-social-card.tiktok .sv-social-icon i {
    color: #000000;
}

.sv-social-card.twitter .sv-social-icon i {
    color: #1DA1F2;
}

.sv-social-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.sv-social-handle {
    font-size: 1.1rem;
    color: #007cba;
    font-weight: 600;
    margin-bottom: 15px;
}

.sv-social-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sv-social-points {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #28a745;
    font-weight: 600;
}

.sv-social-points i {
    color: #ffc107;
}

.sv-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #007cba;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.sv-social-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.sv-social-card.instagram .sv-social-btn {
    background: #E4405F;
}

.sv-social-card.instagram .sv-social-btn:hover {
    background: #C13584;
}

.sv-social-card.facebook .sv-social-btn {
    background: #1877F2;
}

.sv-social-card.facebook .sv-social-btn:hover {
    background: #166FE5;
}

.sv-social-card.youtube .sv-social-btn {
    background: #FF0000;
}

.sv-social-card.youtube .sv-social-btn:hover {
    background: #CC0000;
}

.sv-social-card.tiktok .sv-social-btn {
    background: #000000;
}

.sv-social-card.tiktok .sv-social-btn:hover {
    background: #333333;
}

.sv-social-card.twitter .sv-social-btn {
    background: #1DA1F2;
}

.sv-social-card.twitter .sv-social-btn:hover {
    background: #1A91DA;
}

.sv-verification-steps {
    margin: 40px 0;
}

.sv-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sv-step-number {
    background: #007cba;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sv-step-content h3 {
    color: #333;
    margin-bottom: 10px;
}

.sv-step-content p {
    color: #666;
    line-height: 1.6;
}

.sv-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.sv-benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sv-benefit-card:hover {
    transform: translateY(-5px);
}

.sv-benefit-card i {
    font-size: 3rem;
    color: #007cba;
    margin-bottom: 20px;
}

.sv-benefit-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.sv-benefit-card p {
    color: #666;
    line-height: 1.6;
}


/* Estilos para información legal */
.sv-legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.sv-legal-badge i {
    font-size: 16px;
}

.sv-legal-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #007cba;
}

.sv-legal-info p {
    margin: 5px 0;
    font-size: 14px;
}

.sv-legal-info-box {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.sv-legal-info-box h3 {
    color: #1976d2;
    margin-top: 0;
}

.sv-legal-info-box ul {
    margin: 10px 0;
    padding-left: 20px;
}

.sv-legal-info-box li {
    margin: 5px 0;
    color: #333;
}

.sv-contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.sv-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.sv-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sv-contact-item i {
    color: #007cba;
    font-size: 20px;
    margin-top: 5px;
}

.sv-contact-item div {
    flex: 1;
}

.sv-contact-item strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.sv-legal-footer {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
    border-top: 3px solid #007cba;
}

.sv-legal-footer p {
    margin: 10px 0;
    font-size: 16px;
}

.sv-legal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.sv-legal-header h1 {
    color: #007cba;
    margin-bottom: 10px;
}

.sv-legal-date {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.sv-legal-section {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sv-legal-section h2 {
    color: #007cba;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sv-legal-section h3 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.sv-legal-section ul {
    margin: 10px 0;
    padding-left: 20px;
}

.sv-legal-section li {
    margin: 8px 0;
    line-height: 1.6;
}

.sv-legal-section ol {
    margin: 10px 0;
    padding-left: 20px;
}

.sv-legal-section ol li {
    margin: 8px 0;
    line-height: 1.6;
}

.sv-legal-section p {
    line-height: 1.6;
    margin: 10px 0;
}

.sv-legal-section a {
    color: #007cba;
    text-decoration: none;
}

.sv-legal-section a:hover {
    text-decoration: underline;
}

/* Estilos para ejemplos de lotería */
.sv-lottery-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.sv-example-card {
    background: #f8f9fa;
    border: 2px solid #007cba;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv-example-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sv-example-card h4 {
    color: #007cba;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.sv-example-card p {
    margin: 8px 0;
    line-height: 1.5;
}

.sv-example-card strong {
    color: #28a745;
    font-weight: 600;
}

/* Estilos para página del sistema de sorteos */
.sv-system-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sv-system-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    border-radius: 15px;
}

.sv-system-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.sv-system-header p {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.sv-system-section {
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sv-system-section h2 {
    color: #007cba;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #e9ecef;
    padding-bottom: 15px;
}

.sv-system-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.sv-info-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #007cba;
}

.sv-info-card i {
    font-size: 3rem;
    color: #007cba;
    margin-bottom: 20px;
}

.sv-info-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.sv-info-card p {
    color: #666;
    line-height: 1.6;
}

.sv-lottery-reference {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.sv-reference-info {
    background: #e3f2fd;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #2196f3;
}

.sv-reference-info h3 {
    color: #1976d2;
    margin-bottom: 20px;
}

.sv-reference-info ul {
    margin: 15px 0;
    padding-left: 20px;
}

.sv-reference-info li {
    margin: 10px 0;
    line-height: 1.6;
}

.sv-reference-example {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #007cba;
}

.sv-reference-example h3 {
    color: #007cba;
    margin-bottom: 20px;
    text-align: center;
}

.sv-result-example {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sv-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.sv-result-label {
    font-weight: 600;
    color: #333;
}

.sv-result-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007cba;
    background: #e3f2fd;
    padding: 5px 15px;
    border-radius: 20px;
}

.sv-example-content {
    text-align: left;
}

.sv-calculation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.sv-step {
    background: #007cba;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.sv-operator {
    font-size: 1.2rem;
    color: #666;
    font-weight: bold;
}

.sv-equals {
    font-size: 1.2rem;
    color: #666;
    font-weight: bold;
}

.sv-result {
    background: #28a745;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.sv-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.sv-advantage-card {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sv-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #007cba;
}

.sv-advantage-card i {
    font-size: 2.5rem;
    color: #007cba;
    margin-bottom: 15px;
}

.sv-advantage-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.sv-advantage-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.sv-verification-process {
    margin: 30px 0;
}

.sv-process-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #007cba;
    transition: transform 0.3s ease;
}

.sv-process-step:hover {
    transform: translateX(5px);
}

.sv-process-step .sv-step-number {
    background: #007cba;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.sv-process-step .sv-step-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.sv-process-step .sv-step-content p {
    color: #666;
    line-height: 1.6;
}

/* Responsive para sistema de sorteos */
    
    .sv-process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .sv-calculation {
        flex-direction: column;
        gap: 5px;
    }
}

/* Estilos para logo del header */
.sv-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sv-logo-icon {
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
}

.sv-logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #007cba;
    font-weight: 700;
}

.sv-logo-text span {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 600;
    display: block;
    margin-top: -5px;
}

/* Estilos para modal de autenticación */
.sv-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.sv-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sv-modal-header {
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sv-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.sv-modal-close {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sv-modal-close:hover {
    color: #ff6b6b;
}

.sv-modal-body {
    padding: 30px 25px;
}

.sv-auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sv-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sv-form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.sv-form-group input {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sv-form-group input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.sv-form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.sv-form-actions .sv-btn {
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sv-form-actions .sv-btn-primary {
    background: #007cba;
    color: white;
    border: none;
}

.sv-form-actions .sv-btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.sv-form-actions .sv-btn-outline {
    background: transparent;
    color: #007cba;
    border: 2px solid #007cba;
}

.sv-form-actions .sv-btn-outline:hover {
    background: #007cba;
    color: white;
}

.sv-form-links {
    text-align: center;
    margin-top: 15px;
}

.sv-form-links a {
    color: #007cba;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.sv-form-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive para modal */

/* Estilos para administración de sorteos */
.sv-admin-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.sv-admin-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    border-radius: 15px;
}

.sv-admin-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sv-admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.sv-tab-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 15px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-tab-btn:hover {
    background: #e9ecef;
    border-color: #007cba;
}

.sv-tab-btn.active {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.sv-tab-content {
    display: none;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sv-tab-content.active {
    display: block;
}

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

.sv-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sv-form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.sv-form-group input,
.sv-form-group select,
.sv-form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sv-form-group input:focus,
.sv-form-group select:focus,
.sv-form-group textarea:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.sv-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.sv-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.sv-btn-primary {
    background: #007cba;
    color: white;
}

.sv-btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.sv-btn-outline {
    background: transparent;
    color: #007cba;
    border: 2px solid #007cba;
}

.sv-btn-outline:hover {
    background: #007cba;
    color: white;
}

.sv-btn-success {
    background: #28a745;
    color: white;
}

.sv-btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
}

.sv-btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Estilos para loterías */
.sv-lottery-config {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.sv-lottery-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.sv-lottery-card:hover {
    border-color: #007cba;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sv-lottery-card h3 {
    color: #007cba;
    margin-bottom: 15px;
}

.sv-lottery-info p {
    margin: 8px 0;
    color: #666;
}

.sv-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.sv-status.active {
    background: #d4edda;
    color: #155724;
}

.sv-status.inactive {
    background: #f8d7da;
    color: #721c24;
}

.sv-lottery-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.sv-add-lottery {
    text-align: center;
    margin-top: 30px;
}

/* Estilos para estadísticas de tickets */
.sv-tickets-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.sv-stat-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.sv-stat-card:hover {
    border-color: #007cba;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sv-stat-card i {
    font-size: 2rem;
    color: #007cba;
    margin-bottom: 10px;
}

.sv-stat-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.sv-stat-card p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007cba;
    margin: 0;
}

/* Estilos para controles de tickets */
.sv-tickets-controls {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.sv-tickets-controls h3 {
    color: #007cba;
    margin-bottom: 20px;
}

/* Estilos para tabla de tickets */
.sv-tickets-table {
    overflow-x: auto;
}

.sv-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.sv-table th,
.sv-table td {
    border: 1px solid #e9ecef;
    padding: 12px;
    text-align: left;
}

.sv-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.sv-table tr:nth-child(even) {
    background: #f8f9fa;
}

.sv-table tr:hover {
    background: #e3f2fd;
}

/* Estilos para notificaciones */
.sv-notification-config {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.sv-notification-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
}

.sv-notification-card h3 {
    color: #007cba;
    margin-bottom: 20px;
}

/* Responsive para administración */

/* Estilos para registro */
.sv-registration-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.sv-registration-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    border-radius: 15px;
}

.sv-registration-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sv-registration-steps {
    margin-bottom: 40px;
}

.sv-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.sv-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sv-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.sv-step.active .sv-step-number {
    background: #007cba;
    color: white;
}

.sv-step-line {
    width: 60px;
    height: 2px;
    background: #e9ecef;
}

.sv-step-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.sv-registration-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.sv-form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f8f9fa;
}

.sv-form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sv-form-section h3 {
    color: #007cba;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.sv-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.sv-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.sv-checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

.sv-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sv-checkbox-group input[type="checkbox"]:checked + label .sv-checkbox {
    background: #007cba;
    border-color: #007cba;
    color: white;
}

.sv-checkbox-group input[type="checkbox"]:checked + label .sv-checkbox::after {
    content: '✓';
    font-size: 12px;
    font-weight: bold;
}

.sv-login-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.sv-login-link a {
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
}

.sv-login-link a:hover {
    text-decoration: underline;
}

.sv-registration-info {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.sv-registration-info h3 {
    color: #007cba;
    margin-bottom: 25px;
    text-align: center;
}

.sv-info-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.sv-info-step {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sv-info-step i {
    font-size: 2rem;
    color: #007cba;
    margin-bottom: 15px;
}

.sv-info-step h4 {
    color: #333;
    margin-bottom: 10px;
}

.sv-info-step p {
    color: #666;
    font-size: 0.9rem;
}

/* Estilos para verificación de email */
.sv-verification-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.sv-verification-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.sv-verification-header {
    margin-bottom: 40px;
}

.sv-verification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.sv-verification-header h1 {
    color: #333;
    margin-bottom: 15px;
}

.sv-verification-form {
    margin-bottom: 40px;
}

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

.sv-verification-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.sv-verification-info h3 {
    color: #007cba;
    margin-bottom: 15px;
}

.sv-verification-info ul {
    list-style: none;
    padding: 0;
}

.sv-verification-info li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-verification-info li::before {
    content: '•';
    color: #007cba;
    font-weight: bold;
}

.sv-verification-footer {
    text-align: center;
    color: #666;
}

.sv-verification-footer a {
    color: #007cba;
    text-decoration: none;
    font-weight: 600;
}

.sv-verification-footer a:hover {
    text-decoration: underline;
}

/* Estilos para perfil de usuario */
.sv-profile-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sv-profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    border-radius: 15px;
}

.sv-profile-avatar {
    position: relative;
    flex-shrink: 0;
}

.sv-avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sv-avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.sv-profile-avatar:hover .sv-avatar-overlay {
    opacity: 1;
}

.sv-avatar-overlay i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.sv-avatar-overlay span {
    font-size: 0.8rem;
    font-weight: 600;
}

.sv-profile-info {
    flex: 1;
}

.sv-profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sv-profile-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.sv-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
}

.sv-stat i {
    font-size: 1.5rem;
    color: #28a745;
}

.sv-stat span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.sv-profile-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.sv-profile-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.sv-profile-section h2 {
    color: #007cba;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.sv-profile-form {
    max-width: 800px;
}

.sv-status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sv-status-badge.verified {
    background: #d4edda;
    color: #155724;
}

.sv-status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.sv-status-badge.rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Estilos para verificación de documentos */
.sv-verification-status {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.sv-status-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.sv-status-card:hover {
    border-color: #007cba;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sv-status-card i {
    font-size: 2rem;
    color: #007cba;
    margin-bottom: 15px;
}

.sv-status-card h3 {
    color: #333;
    margin-bottom: 10px;
}

.sv-status-card p {
    color: #666;
    margin-bottom: 15px;
}

.sv-document-upload {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.sv-upload-area {
    border: 2px dashed #007cba;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.sv-upload-area:hover {
    background: #f0f8ff;
    border-color: #0056b3;
}

.sv-upload-area i {
    font-size: 3rem;
    color: #007cba;
    margin-bottom: 15px;
}

.sv-upload-area h4 {
    color: #333;
    margin-bottom: 10px;
}

.sv-upload-area p {
    color: #666;
    margin-bottom: 0;
}

.sv-upload-area input[type="file"] {
    display: none;
}

.sv-upload-requirements {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.sv-upload-requirements h4 {
    color: #007cba;
    margin-bottom: 15px;
}

.sv-upload-requirements ul {
    list-style: none;
    padding: 0;
}

.sv-upload-requirements li {
    padding: 5px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-upload-requirements li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
}

.sv-uploaded-files {
    margin-bottom: 20px;
}

.sv-uploaded-file {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sv-uploaded-file i {
    color: #007cba;
    font-size: 1.2rem;
}

.sv-file-size {
    color: #666;
    font-size: 0.9rem;
}

/* Estilos para redes sociales */
.sv-social-connections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.sv-social-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.sv-social-card:hover {
    border-color: #007cba;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sv-social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.sv-social-card:nth-child(1) .sv-social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.sv-social-card:nth-child(2) .sv-social-icon {
    background: #1877f2;
}

.sv-social-card:nth-child(3) .sv-social-icon {
    background: #ff0000;
}

.sv-social-card:nth-child(4) .sv-social-icon {
    background: #000000;
}

.sv-social-card:nth-child(5) .sv-social-icon {
    background: #1da1f2;
}

.sv-social-info {
    flex: 1;
}

.sv-social-info h3 {
    color: #333;
    margin-bottom: 5px;
}

.sv-social-info p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.sv-social-benefits {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
}

.sv-social-benefits h3 {
    color: #007cba;
    margin-bottom: 15px;
}

.sv-social-benefits ul {
    list-style: none;
    padding: 0;
}

.sv-social-benefits li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sv-social-benefits li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
}

/* Estilos para puntos */
.sv-points-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.sv-points-card {
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 124, 186, 0.3);
}

.sv-points-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.sv-points-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.sv-points-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.sv-points-history {
    margin-bottom: 40px;
}

.sv-points-list {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.sv-points-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sv-points-item i {
    color: #28a745;
    font-size: 1.2rem;
}

.sv-points-info {
    flex: 1;
}

.sv-points-info h4 {
    color: #333;
    margin-bottom: 5px;
}

.sv-points-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.sv-points-amount {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.sv-points-actions {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
}

.sv-points-actions h3 {
    color: #007cba;
    margin-bottom: 20px;
}

.sv-points-tasks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.sv-task-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sv-task-item i {
    color: #007cba;
    font-size: 1.2rem;
}

.sv-task-info {
    flex: 1;
}

.sv-task-info h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1rem;
}

.sv-task-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Estilos para tickets */
.sv-tickets-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.sv-tickets-list {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.sv-tickets-list h3 {
    color: #007cba;
    margin-bottom: 20px;
}

.sv-empty-state {
    text-align: center;
    padding: 40px;
    color: #666;
}

.sv-empty-state i {
    font-size: 3rem;
    color: #e9ecef;
    margin-bottom: 15px;
}

.sv-empty-state p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Responsive para registro y perfil */

/* Estilos mejorados para el header */
.sv-header {
    background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 124, 186, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sv-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.sv-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.sv-logo-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sv-logo-text h1 {
    font-size: 1.8rem;
    margin: 0;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sv-logo-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: block;
    margin-top: -5px;
}

.sv-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sv-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.sv-nav-menu li {
    margin: 0;
}

.sv-nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sv-nav-menu a:hover,
.sv-nav-menu a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sv-nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.sv-nav-menu a:hover::before,
.sv-nav-menu a.active::before {
    width: 80%;
}

.sv-auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.sv-btn-sm {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 2px solid transparent;
}

.sv-btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sv-btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.sv-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.sv-btn-primary {
    background: white;
    color: #007cba;
    border-color: white;
}

.sv-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #0056b3;
}

.sv-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sv-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.sv-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sv-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sv-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.sv-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive para el header */

/* Mejoras para redes sociales del footer */
.sv-footer-social {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.sv-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 80px;
    text-align: center;
}

.sv-social-link i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.sv-social-link span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    display: block;
}

.sv-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.sv-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.sv-social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.sv-social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.sv-social-link.tiktok:hover {
    background: #000000;
    color: white;
}

.sv-social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

/* Footer principal */
.sv-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 0 0 0;
    margin-top: 60px;
}

.sv-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.sv-footer-section {
    padding: 0 10px;
}

.sv-footer-section h3 {
    color: #007cba;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.sv-footer-section h4 {
    color: #007cba;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.sv-footer-section p {
    color: #bdc3c7;
    margin: 10px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sv-footer-section i {
    color: #007cba;
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

/* Footer brand */
.sv-footer-brand {
    margin-bottom: 20px;
}

.sv-footer-brand h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.sv-footer-brand p {
    color: #bdc3c7;
    font-size: 1rem;
    margin-bottom: 15px;
}

.sv-legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 124, 186, 0.2);
    color: #007cba;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #007cba;
    font-size: 0.9rem;
    font-weight: 600;
}

.sv-legal-badge i {
    color: #007cba;
    margin: 0;
}

/* Footer links */
.sv-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sv-footer-links-list li {
    margin-bottom: 8px;
}

.sv-footer-links-list a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.sv-footer-links-list a:hover {
    color: #007cba;
}

.sv-footer-links-list a::before {
    content: '→';
    margin-right: 8px;
    color: #007cba;
    transition: transform 0.3s ease;
}

.sv-footer-links-list a:hover::before {
    transform: translateX(3px);
}

/* Contact info */
.sv-contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.sv-contact-info i {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Footer legal section */
.sv-footer-legal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px 0;
    border-top: 3px solid #007cba;
    margin-top: 20px;
}

.sv-legal-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.sv-legal-badge-large {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 124, 186, 0.15);
    padding: 20px 25px;
    border-radius: 10px;
    border: 2px solid #007cba;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.2);
}

.sv-legal-badge-large i {
    color: #007cba;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.sv-legal-text h4 {
    color: #007cba;
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.sv-legal-text p {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sv-legal-details {
    flex: 1;
    min-width: 300px;
    text-align: right;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sv-legal-details p {
    margin: 8px 0;
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sv-legal-details strong {
    color: #007cba;
    font-weight: 600;
}

/* Footer copyright */
.sv-footer-copyright {
    background: #1a1a1a;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.sv-footer-copyright p {
    color: #95a5a6;
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sv-footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.sv-footer-links a {
    color: #007cba;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 500;
}

.sv-footer-links a:hover {
    color: #0056b3;
    background: rgba(0, 124, 186, 0.1);
    border-color: rgba(0, 124, 186, 0.3);
    text-decoration: none;
    transform: translateY(-2px);
}



.sv-legal-details p {
    margin: 5px 0;
    color: white;
    font-size: 0.9rem;
}

.sv-legal-details strong {
    color: #28a745;
}

.sv-footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sv-footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.sv-footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sv-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.sv-footer-links a:hover {
    color: #28a745;
    text-decoration: underline;
}

/* Responsive para las mejoras */

