/* ===== Protección de contenido ===== */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* ===== Variables y Reset ===== */
:root {
    /* Colores principales - fusión ArtStation + diseño actual */
    --primary-blue: #13AFF0;
    --secondary-blue: #0d8bc9;
    --dark-blue: #0a5f8f;
    --accent-cyan: #00E5FF;

    /* Colores de tiers */
    --tier-vrm: #6b7a8a;
    --tier-vseeface-bg: #1a1d2e;
    --tier-vseeface-blue: #4A90E2;
    --tier-vseeface-light: #6BB6FF;
    --tier-vseeface-gradient: linear-gradient(135deg, #2d3561, #1a1d2e);
    --tier-vrchat-bg: #0D0D0E;
    --tier-vrchat-cyan: #6EEAFA;
    --tier-vrchat-gradient: linear-gradient(135deg, #183C4A, #18212B);
    --tier-warudo-bg: #181B21;
    --tier-warudo-blue: #497FF3;
    --tier-warudo-purple: #7983E2;
    --tier-warudo-text: #67696D;
    --warudo-gradient: linear-gradient(135deg, #497FF3, #7983E2);

    /* Colores de fondo - más oscuros estilo ArtStation */
    --bg-dark: #1a1a1e;
    --bg-dark-secondary: #25252b;
    --bg-light: #f0f2f5;
    --bg-section-light: #ffffff;
    --bg-section-dark: #2d2d35;

    /* Textos */
    --text-dark: #1a1a1e;
    --text-light: #f8f9fa;
    --text-gray: #a8a8b3;
    --text-gray-dark: #6c6c7a;

    /* Sombras sutiles */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(19, 175, 240, 0.2);

    /* Gradientes actualizados */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
    --gradient-hover: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    --gradient-dark: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Dark Theme Variables ===== */
body.dark-theme {
    /* Fondos oscuros */
    --bg-light: #1a1a1e;
    --bg-section-light: #25252b;

    /* Textos claros */
    --text-dark: #f8f9fa;
    --text-gray-dark: #c4c4d0;

    /* Ajustes específicos para secciones */
    --terms-bg: #1e1e24;
    --pricing-bg: #1a1a1e;
    --card-bg: #2a2a32;
    --card-border: rgba(19, 175, 240, 0.2);
    --note-bg: rgba(19, 175, 240, 0.15);
    --expression-bg: #1e1e24;
    --additional-bg: #25252b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    cursor: none;
}

/* ===== Cursor Personalizado ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #FF6B35;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.2s ease;
    opacity: 0.5;
    transform: translate(-50%, -50%);
}

.cursor-outline.expand {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
    border-color: var(--secondary-blue);
}

/* Quitar cursor default en elementos interactivos */
a, button, .portfolio-item, .btn, .nav-link, .social-link, .skill-tag {
    cursor: none !important;
}

/* ===== Tipografía ===== */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
}


.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ===== Navegación ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 30, 0.15) 0%, rgba(26, 26, 30, 0) 100%);
    backdrop-filter: blur(5px);
    box-shadow: none;
    z-index: 1000;
    transition: all 0.5s ease;
}

header.on-dark-section {
    background: rgba(26, 26, 30, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: none;
}

header.on-dark-section .logo-text h1,
header.on-dark-section .nav-link {
    color: var(--text-light);
}

header.on-dark-section .tagline {
    color: var(--text-gray);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 50px;
    width: auto;
    transition: opacity 0.5s ease;
}

.logo-dark {
    opacity: 1;
}

.logo-light {
    opacity: 0;
    position: absolute;
}

header.on-dark-section .logo-dark {
    opacity: 0;
}

header.on-dark-section .logo-light {
    opacity: 1;
}

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

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    transition: color 0.5s ease;
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-gray-dark);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.5s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.5s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
    letter-spacing: 0.06em;
}

.nav-link:hover::after {
    width: 100%;
}

header.on-dark-section .nav-link:hover {
    color: var(--primary-blue);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    background-image: url('background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 8rem 4rem 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('backgroundNight.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    position: relative;
    z-index: 2;
    margin-left: 0;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-weight: 500;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-gray-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Hero Images Stack */
.hero-images {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 100%;
    z-index: 3;
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: min(100%, max(30vh, 70vw));
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    animation: fadeInImage 1s ease-in-out forwards;
    pointer-events: none;
}

.hero-image:nth-child(1) {
    z-index: 1;
    animation-delay: 1.5s;
}

.hero-image:nth-child(2) {
    z-index: 2;
    animation-delay: 1.7s;
}

.hero-image:nth-child(3) {
    z-index: 3;
    animation-delay: 1.9s;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Decoraciones flotantes */
.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    bottom: 15%;
    right: 10%;
    animation-delay: -7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    top: 60%;
    left: 80%;
    animation-delay: -14s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-blue) 100%);
    top: 40%;
    right: 5%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    33% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
    }
    66% {
        transform: translateY(-15px) translateX(-20px) scale(0.9);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Botones ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--text-light);
}

/* ===== Portfolio Section (Banner) ===== */
.portfolio-section {
    padding: 0;
    background: var(--bg-light);
    position: relative;
}

.portfolio-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    background: #1a1a1e;
    padding: 4rem 6rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-banner:hover {
    background: #212125;
    box-shadow: 0 6px 30px rgba(19, 175, 240, 0.2);
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.banner-icon {
    flex-shrink: 0;
    color: #13AFF0;
    opacity: 1;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.banner-text {
    flex: 1;
    text-align: left;
}

.banner-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #a8a8b3;
    text-transform: uppercase;
}

.banner-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #6c6c7a;
    margin-bottom: 0;
    font-weight: 400;
}

.banner-arrow {
    flex-shrink: 0;
    color: #13AFF0;
    animation: slideRight 1.5s ease-in-out infinite;
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(10px);
        opacity: 0.7;
    }
}

.banner-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.03;
}

.bg-shape {
    position: absolute;
    background: #13AFF0;
    border-radius: 50%;
}

.shape-a {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: bgFloat 20s ease-in-out infinite;
}

.shape-b {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: -80px;
    animation: bgFloat 15s ease-in-out infinite reverse;
}

.shape-c {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: bgFloat 18s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes bgFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}


/* ===== About Section ===== */
.about-section {
    padding: 6rem 2rem;
    background: var(--bg-section-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.skill-tag {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(19, 175, 240, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
    color: var(--primary-blue);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(19, 175, 240, 0.3);
    transition: var(--transition);
}

.skill-tag:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 175, 240, 0.3);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-placeholder {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(19, 175, 240, 0.05) 0%, rgba(0, 229, 255, 0.05) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(19, 175, 240, 0.1);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 6rem 2rem;
    background: #f8fbff;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-section-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(19, 175, 240, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8fbff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--bg-section-light);
    box-shadow: 0 0 0 3px rgba(19, 175, 240, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--bg-section-light);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== Footer ===== */
footer {
    background: #1a1a1e;
    color: #a8a8b3;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(19, 175, 240, 0.1);
}

.footer-content p {
    margin-bottom: 0.5rem;
    color: #a8a8b3;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #6c6c7a;
}

/* ===== Terms of Service Section ===== */
.terms-section {
    padding: 0;
    background: var(--bg-light);
    position: relative;
    transition: background-color 0.3s ease;
}

.terms-container {
    width: 100%;
    margin: 0;
}

/* Botón Toggle - Estilo Hero Background */
.terms-toggle {
    width: 100%;
    background-image: url('DropDown/drop1.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    border: none;
    border-radius: 0;
    padding: 4rem 6rem;
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
    position: relative;
}

.terms-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 80, 130, 0.7);
    backdrop-filter: none;
    z-index: 0;
}

.terms-toggle:hover::before {
    background: rgba(35, 80, 130, 0.8);
}

.terms-toggle[aria-expanded="true"] {
    box-shadow: 0 2px 10px rgba(19, 175, 240, 0.3);
}

.terms-toggle[aria-expanded="true"]::before {
    background: rgba(35, 80, 130, 0.75);
}

.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: left;
    margin: 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

.toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 2rem;
    position: relative;
    z-index: 1;
}

.terms-toggle:hover .toggle-icon {
    background: rgba(19, 175, 240, 0.2);
}

.terms-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
    background: rgba(19, 175, 240, 0.3);
}

/* Contenido Colapsable */
.terms-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-light);
}

.terms-toggle[aria-expanded="true"] + .terms-collapsible {
    max-height: 10000px;
}

.terms-collapsible-inner {
    padding: 4rem 6rem;
}

/* ===== Pricing Dropdown - Estilo Hero Background ===== */
.pricing-toggle {
    width: 100%;
    background-image: url('DropDown/Drop2.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border: none;
    border-radius: 0;
    padding: 4rem 6rem;
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
    position: relative;
}

.pricing-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 80, 130, 0.7);
    backdrop-filter: none;
    z-index: 0;
}

.pricing-toggle:hover::before {
    background: rgba(35, 80, 130, 0.8);
}

.pricing-toggle[aria-expanded="true"] {
    box-shadow: 0 2px 10px rgba(19, 175, 240, 0.3);
}

.pricing-toggle[aria-expanded="true"]::before {
    background: rgba(35, 80, 130, 0.75);
}

.pricing-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: left;
    margin: 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

.pricing-toggle .toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-toggle:hover .toggle-icon {
    background: rgba(19, 175, 240, 0.2);
}

.pricing-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
    background: rgba(19, 175, 240, 0.3);
}

.pricing-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-light);
}

.pricing-toggle[aria-expanded="true"] + .pricing-collapsible {
    max-height: 15000px;
}

.terms-highlight {
    background: linear-gradient(135deg, rgba(19, 175, 240, 0.1), rgba(100, 50, 200, 0.1));
    border-left: 4px solid var(--primary-blue);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.terms-highlight p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

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

.term-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.term-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(19, 175, 240, 0.15);
    border-color: rgba(19, 175, 240, 0.2);
}

.term-item h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-bottom: 0.8rem;
}

.term-item h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-purple));
    border-radius: 2px;
}

.term-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray-dark);
    margin-bottom: 1rem;
}

.term-item p:last-child {
    margin-bottom: 0;
}

.terms-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.terms-footer p {
    font-size: 0.95rem;
    color: var(--text-gray-dark);
    font-style: italic;
}

/* Responsive - Terms Section */
@media (max-width: 1024px) {
    .terms-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .terms-section {
        padding: 0;
    }

    .terms-toggle {
        padding: 3rem 2rem;
    }

    .terms-title {
        font-size: 2rem;
    }

    .toggle-icon {
        width: 45px;
        height: 45px;
        margin-left: 1rem;
    }

    .terms-collapsible-inner {
        padding: 3rem 2rem;
    }

    .terms-highlight {
        padding: 1.5rem;
    }

    .terms-highlight p {
        font-size: 1rem;
    }

    .term-item {
        padding: 1.8rem;
    }

    .term-item h2 {
        font-size: 1.3rem;
    }

    .term-item p {
        font-size: 0.95rem;
    }

    .pricing-toggle {
        padding: 3rem 2rem;
        background-size: cover;
        background-position: center top;
    }

    .pricing-main-title {
        font-size: 2rem;
    }

    .pricing-toggle .toggle-icon {
        width: 45px;
        height: 45px;
        margin-left: 1rem;
    }

}

@media (max-width: 480px) {
    .terms-section {
        padding: 0;
    }

    .terms-toggle {
        padding: 2.5rem 2rem;
    }

    .terms-title {
        font-size: 1.6rem;
    }

    .toggle-icon {
        width: 40px;
        height: 40px;
        margin-left: 0.8rem;
    }

    .terms-collapsible-inner {
        padding: 2.5rem 2rem;
    }

    .terms-highlight {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .term-item {
        padding: 1.5rem;
    }

    .term-item h2 {
        font-size: 1.2rem;
    }

    .pricing-toggle {
        padding: 2.5rem 2rem;
        background-size: cover;
        background-position: center top;
    }

    .pricing-main-title {
        font-size: 1.6rem;
    }

    .pricing-toggle .toggle-icon {
        width: 40px;
        height: 40px;
        margin-left: 0.8rem;
    }

}

/* ===== Mascot ===== */
.mascot {
    position: absolute;
    bottom: 267px;
    left: 50%;
    z-index: 998;
    pointer-events: none;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.mascot-sprite {
    display: block;
    width: 75px !important;
    height: auto;
    max-width: none;
    pointer-events: auto;
    cursor: none;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 0;
    background: var(--bg-light);
    position: relative;
    transition: background-color 0.5s ease;
}

/* Título Principal */
.pricing-main-header {
    padding: 0 0 3rem;
    text-align: center;
}


/* Paquete Base */
.base-package-container {
    padding: 0;
    width: 100%;
}

.base-package {
    width: 100%;
    background: white;
    padding: 5rem 6rem;
    border-radius: 0;
    box-shadow: none;
    transition: background-color 0.3s ease;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.base-package-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-bottom: 1rem;
    grid-column: 1 / -1;
    text-align: left;
}

.base-package-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

.base-package-price {
    font-size: 3.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: left;
    line-height: 1;
}

.base-package-note {
    font-size: 0.9rem;
    color: var(--text-gray-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: left;
}

.base-package-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray-dark);
    margin-bottom: 0;
    text-align: left;
}

.base-package-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.base-package-subtitle::after {
    display: none;
}

.base-package-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    text-align: left;
}

.base-package-list li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray-dark);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.base-package-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.base-package-left,
.base-package-right {
    display: flex;
    flex-direction: column;
}

.base-package-warning {
    background: rgba(19, 175, 240, 0.08);
    border-left: 4px solid var(--primary-blue);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray-dark);
    grid-column: 1 / -1;
}

.base-package-warning strong {
    color: var(--text-dark);
    display: inline;
    font-weight: 700;
}

/* Título Formatos Personalizados */
.formats-header {
    padding: 3rem 6rem 2rem;
    text-align: center;
    background: #f4f8ff;
    width: 100%;
    transition: background-color 0.3s ease;
}

.formats-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* La sección completa mantiene el fondo gris claro */

/* Tabs Navigation */
.pricing-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
}

.pricing-tab {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    background: #2c2f36;
    color: #9ca3af;
}

.pricing-tab:hover {
    background: #363a42;
}

.pricing-tab.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

/* Content */
.pricing-content {
    display: none;
    animation: fadeInUp 0.6s ease-in-out;
    padding: 0;
}

.pricing-content.active {
    display: block;
}

/* Fondos de color para cada tier */
.pricing-content[data-tier="basic"] {
    background: var(--tier-vrchat-bg);
}

.pricing-content[data-tier="standard"] {
    background: var(--tier-vseeface-bg);
}

.pricing-content[data-tier="premium"] {
    background: var(--tier-warudo-bg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-container {
    width: 100%;
    padding: 0;
}

/* Header */
.pricing-header {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.tier-logo {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.pricing-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.tier-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-top: 1.5rem;
}

/* VRM Styling */
.pricing-content[data-tier="basic"] .pricing-title {
    color: var(--tier-vrm);
}

.pricing-content[data-tier="basic"] .pricing-subtitle {
    color: var(--text-gray-dark);
}

.pricing-content[data-tier="basic"] .tier-price {
    color: var(--tier-vrm);
}

/* VSeeFace Styling */
.pricing-content[data-tier="standard"] .pricing-title {
    background: linear-gradient(135deg, var(--tier-vseeface), var(--tier-vseeface-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-content[data-tier="standard"] .pricing-subtitle {
    color: var(--tier-vseeface-secondary);
}

.pricing-content[data-tier="standard"] .tier-price {
    background: linear-gradient(135deg, var(--tier-vseeface), var(--tier-vseeface-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Warudo Banner Background */
.warudo-banner-bg {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.warudo-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.warudo-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.warudo-logo-overlay .warudo-logo-img {
    max-width: 500px;
    width: 90vw;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
}

/* Logo específicos por plataforma */
.warudo-logo-overlay .vrchat-logo {
    max-width: 250px;
}

.warudo-logo-overlay .vseeface-logo {
    max-width: 175px;
}

/* VRChat Styling */
.pricing-content[data-tier="basic"] .warudo-tier-title {
    color: var(--tier-vrchat-cyan);
}

.pricing-content[data-tier="basic"] .warudo-tier-price {
    color: var(--tier-vrchat-cyan);
}

.pricing-content[data-tier="basic"] .warudo-tier {
    background: var(--tier-vrchat-gradient);
    border: 2px solid rgba(110, 234, 250, 0.2);
}

.pricing-content[data-tier="basic"] .warudo-tier:hover {
    border-color: var(--tier-vrchat-cyan);
    box-shadow: 0 12px 40px rgba(110, 234, 250, 0.3);
}

.pricing-content[data-tier="basic"] .warudo-note {
    background: rgba(110, 234, 250, 0.1);
    border: 1px solid rgba(110, 234, 250, 0.2);
}

.pricing-content[data-tier="basic"] .warudo-note p {
    color: white;
}

.pricing-content[data-tier="basic"] .warudo-tier-list li {
    color: #e0e0e0;
}

/* VSeeFace Styling */
.pricing-content[data-tier="standard"] .warudo-tier-title {
    color: var(--tier-vseeface-light);
}

.pricing-content[data-tier="standard"] .warudo-tier-price {
    color: var(--tier-vseeface-light);
}

.pricing-content[data-tier="standard"] .warudo-tier {
    background: var(--tier-vseeface-gradient);
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.pricing-content[data-tier="standard"] .warudo-tier:hover {
    border-color: var(--tier-vseeface-blue);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.4);
}

.pricing-content[data-tier="standard"] .warudo-note {
    background: rgba(74, 144, 226, 0.15);
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.pricing-content[data-tier="standard"] .warudo-note p {
    color: white;
}

.pricing-content[data-tier="standard"] .warudo-note strong {
    color: var(--tier-vseeface-light);
}

.pricing-content[data-tier="standard"] .warudo-tier-list li {
    color: #e0e0e0;
}

/* Warudo Styling */
.pricing-content[data-tier="premium"] .pricing-title {
    background: var(--warudo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-content[data-tier="premium"] .pricing-subtitle {
    color: white;
}

.pricing-content[data-tier="premium"] .tier-price {
    background: var(--warudo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-item.disabled {
    opacity: 0.5;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-gray-dark);
    line-height: 1.6;
}

.check {
    color: #00C853;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.cross {
    color: #d32f2f;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Warudo Pricing Content */
.warudo-pricing-content {
    width: 100%;
    padding: 4rem 6rem;
}

.warudo-tiers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* VSeeFace only has 2 tiers */
.vseeface-tiers {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.warudo-tier {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.warudo-tier:hover {
    transform: translateY(-8px);
    border-color: var(--tier-warudo-blue);
    box-shadow: 0 12px 40px rgba(73, 127, 243, 0.2);
}

.warudo-tier-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.warudo-tier-price {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--warudo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.warudo-tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.warudo-tier-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
}

.warudo-tier-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--tier-warudo-blue);
    font-size: 1.5rem;
    font-weight: bold;
}

.warudo-note {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(73, 127, 243, 0.1);
    border-left: 4px solid var(--tier-warudo-blue);
    border-radius: 12px;
}

.warudo-note p {
    margin: 0;
    color: white;
    font-size: 1.05rem;
    line-height: 1.8;
}

.warudo-note strong {
    color: var(--tier-warudo-blue);
}


/* Pricing Note */
.pricing-note {
    margin: 3rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    max-width: 1000px;
}

.pricing-section[data-active-tier="basic"] .pricing-note {
    background: rgba(110, 234, 250, 0.1);
    border: 1px solid rgba(110, 234, 250, 0.2);
}

.pricing-section[data-active-tier="standard"] .pricing-note {
    background: rgba(74, 144, 226, 0.15);
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.pricing-section[data-active-tier="premium"] .pricing-note {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-note p {
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.pricing-section[data-active-tier="basic"] .pricing-note p {
    color: white;
}

.pricing-section[data-active-tier="standard"] .pricing-note p {
    color: white;
}

.pricing-section[data-active-tier="premium"] .pricing-note p {
    color: white;
}

/* ===== Elementos Adicionales Section ===== */
.additional-elements-section {
    width: 100%;
    background: white;
    padding: 4rem 6rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.additional-elements-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-bottom: 1rem;
}

.additional-elements-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

.additional-elements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.additional-element-item {
    background: rgba(19, 175, 240, 0.05);
    border: 2px solid rgba(19, 175, 240, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.additional-element-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(19, 175, 240, 0.15);
}

.additional-element-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.additional-element-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.additional-elements-note {
    background: rgba(19, 175, 240, 0.08);
    border-left: 4px solid var(--primary-blue);
    padding: 2rem;
    border-radius: 12px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray-dark);
}

.additional-elements-note strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ===== Expresiones Personalizadas Section ===== */
.custom-expressions-section {
    width: 100%;
    background: #f4f8ff;
    padding: 4rem 6rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.custom-expressions-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-bottom: 1rem;
}

.custom-expressions-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

.custom-expressions-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.expression-tier {
    background: linear-gradient(135deg, rgba(19, 175, 240, 0.05) 0%, rgba(0, 229, 255, 0.05) 100%);
    border: 2px solid rgba(19, 175, 240, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.expression-tier:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 32px rgba(19, 175, 240, 0.2);
}

.expression-tier-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.expression-tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.expression-tier-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray-dark);
    margin: 0;
}

.custom-expressions-note {
    background: rgba(19, 175, 240, 0.08);
    border-left: 4px solid var(--primary-blue);
    padding: 2rem;
    border-radius: 12px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray-dark);
}

.custom-expressions-note strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Responsive - Pricing */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .additional-elements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .custom-expressions-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 0;
    }

    .pricing-tab {
        padding: 1rem 0.75rem;
        font-size: 1rem;
    }

    .pricing-header {
        padding: 2rem 1rem;
    }

    .tier-logo {
        font-size: 3.5rem;
    }

    .pricing-title {
        font-size: 2.5rem;
    }

    .pricing-subtitle {
        font-size: 1.1rem;
    }

    .tier-price {
        font-size: 2.5rem;
    }

    .warudo-banner-bg {
        height: 180px;
    }

    .warudo-logo-overlay .warudo-logo-img {
        max-width: 400px;
    }

    .warudo-logo-overlay .vrchat-logo {
        max-width: 200px;
    }

    .warudo-logo-overlay .vseeface-logo {
        max-width: 140px;
    }

    .pricing-container {
        padding: 0;
    }

    .warudo-pricing-content {
        padding: 1.5rem;
    }

    .warudo-tiers-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .warudo-tier {
        padding: 2rem;
    }

    .warudo-tier:hover {
        transform: none;
    }

    .warudo-tier-title {
        font-size: 1.8rem;
    }

    .warudo-tier-price {
        font-size: 2rem;
    }

    .warudo-tier-list li {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }

    .additional-elements-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .pricing-section {
        padding: 0;
    }

    .pricing-tab {
        padding: 0.9rem 0.5rem;
        font-size: 0.9rem;
    }

    .tier-logo {
        font-size: 2.5rem;
    }

    .pricing-title {
        font-size: 1.8rem;
    }

    .pricing-subtitle {
        font-size: 0.95rem;
    }

    .tier-price {
        font-size: 2rem;
    }

    .warudo-banner-bg {
        height: 150px;
    }

    .warudo-logo-overlay .warudo-logo-img {
        max-width: 300px;
    }

    .warudo-logo-overlay .vrchat-logo {
        max-width: 150px;
    }

    .warudo-logo-overlay .vseeface-logo {
        max-width: 105px;
    }

    .pricing-container {
        padding: 0;
    }

    .warudo-pricing-content {
        padding: 1rem;
    }

    .warudo-tiers-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .warudo-tier {
        padding: 1.5rem;
    }

    .warudo-tier-title {
        font-size: 1.5rem;
    }

    .warudo-tier-price {
        font-size: 1.8rem;
    }

    .warudo-tier-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    .warudo-note {
        padding: 1.5rem;
    }

    .warudo-note p {
        font-size: 0.95rem;
    }

    .base-package {
        padding: 2.5rem 2rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .base-package-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .base-package-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .base-package-price {
        font-size: 2.2rem;
        text-align: center;
    }

    .base-package-note,
    .base-package-description {
        text-align: center;
    }

    .base-package-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }

    .base-package-list li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    .base-package-warning {
        padding: 1.2rem;
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .base-package-price {
        font-size: 2.5rem;
        text-align: center;
    }

    .base-package-note,
    .base-package-description {
        text-align: center;
    }

    .base-package-subtitle {
        text-align: center;
    }

    .base-package-list {
        max-width: 100%;
    }

    .base-package-list li {
        font-size: 0.95rem;
    }

    .base-package-warning {
        padding: 1.5rem;
        font-size: 0.95rem;
        margin-top: 2rem;
    }

    .additional-elements-section {
        padding: 3rem 2rem;
    }

    .additional-elements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .additional-elements-note {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .custom-expressions-section {
        padding: 3rem 2rem;
    }

    .custom-expressions-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expression-tier {
        padding: 2rem;
    }

    .expression-tier-price {
        font-size: 2rem;
    }

    .custom-expressions-note {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    /* Unified Controls Panel - Mobile Horizontal */
    .unified-controls {
        bottom: 1rem !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        height: 40px !important;
        flex-direction: row !important;
        padding: 0 10px !important;
        border-radius: 20px !important;
    }

    .control-section.language-section {
        flex-direction: row !important;
        gap: 6px !important;
        padding: 0 !important;
    }

    .language-btn {
        width: 32px !important;
        height: 28px !important;
        font-size: 0.5rem !important;
    }

    .control-btn {
        width: 32px !important;
        height: 32px !important;
        margin: 0 3px !important;
    }

    .control-btn svg {
        width: 16px !important;
        height: 16px !important;
    }

    .control-divider {
        width: 1px !important;
        height: 24px !important;
        margin: 0 6px !important;
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent) !important;
    }
}

/* ===== Panel de Control Unificado ===== */
.unified-controls {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    background: rgba(26, 26, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    cursor: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.unified-controls:hover {
    background: rgba(26, 26, 30, 0.75);
    border-color: rgba(19, 175, 240, 0.3);
    box-shadow: 0 8px 40px rgba(19, 175, 240, 0.2);
}

/* Sección de idiomas */
.control-section.language-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 3px 0;
}

.language-btn {
    width: 42px;
    height: 28px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6rem;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-btn:hover {
    color: var(--primary-blue);
    background: rgba(19, 175, 240, 0.1);
}

.language-btn.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-blue), rgba(0, 229, 255, 0.8));
    box-shadow: 0 4px 12px rgba(19, 175, 240, 0.3);
}

/* Divisor */
.control-divider {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    margin: 5px 0;
}

/* Botones de control */
.control-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 3px 0;
}

.control-btn:hover {
    color: var(--primary-blue);
    background: rgba(19, 175, 240, 0.1);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

.control-btn svg {
    width: 20px;
    height: 20px;
}

/* Iconos visibles según tema */
body:not(.dark-theme) .icon-sun {
    display: block;
}

body:not(.dark-theme) .icon-moon {
    display: none;
}

body.dark-theme .icon-sun {
    display: none;
}

body.dark-theme .icon-moon {
    display: block;
}

/* Iconos de música */
.icon-sound-off {
    display: none;
}

/* ===== Dark Theme Styles ===== */
body.dark-theme .hero::before {
    opacity: 1;
}

body.dark-theme .terms-section {
    background: var(--terms-bg);
}

body.dark-theme .terms-toggle {
    position: relative;
}

body.dark-theme .terms-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 47, 106, 0.75);
    pointer-events: none;
    z-index: 0;
}

body.dark-theme .terms-toggle * {
    position: relative;
    z-index: 1;
}

body.dark-theme .terms-title {
    color: var(--text-light);
}

body.dark-theme .terms-collapsible-inner {
    background: var(--terms-bg);
}

body.dark-theme .terms-highlight {
    background: var(--note-bg);
    border-left-color: var(--primary-blue);
}

body.dark-theme .terms-highlight p {
    color: var(--text-light);
}

body.dark-theme .term-item {
    background: var(--card-bg);
    border-color: var(--card-border);
}

body.dark-theme .term-item h2 {
    color: var(--text-light);
}

body.dark-theme .term-item p {
    color: var(--text-gray-dark);
}

body.dark-theme .pricing-section {
    background: var(--pricing-bg);
}

body.dark-theme .pricing-toggle {
    position: relative;
}

body.dark-theme .pricing-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 47, 106, 0.75);
    pointer-events: none;
    z-index: 0;
}

body.dark-theme .pricing-toggle * {
    position: relative;
    z-index: 1;
}

body.dark-theme .pricing-main-title {
    color: var(--text-light);
}

body.dark-theme .base-package {
    background: var(--card-bg);
    border-bottom-color: var(--card-border);
}

body.dark-theme .base-package-title,
body.dark-theme .base-package-subtitle {
    color: var(--text-light);
}

body.dark-theme .base-package-description,
body.dark-theme .base-package-list li {
    color: var(--text-gray-dark);
}

body.dark-theme .base-package-warning {
    background: var(--note-bg);
}

body.dark-theme .base-package-warning strong {
    color: var(--text-light);
}

body.dark-theme .custom-expressions-section {
    background: var(--expression-bg);
}

body.dark-theme .custom-expressions-title {
    color: var(--text-light);
}

body.dark-theme .expression-tier {
    background: var(--card-bg);
    border-color: var(--card-border);
}

body.dark-theme .expression-tier:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 32px rgba(19, 175, 240, 0.3);
}

body.dark-theme .expression-tier-title {
    color: var(--text-light);
}

body.dark-theme .expression-tier-description {
    color: var(--text-gray-dark);
}

body.dark-theme .custom-expressions-note {
    background: var(--note-bg);
}

body.dark-theme .custom-expressions-note strong {
    color: var(--text-light);
}

body.dark-theme .additional-elements-section {
    background: var(--additional-bg);
}

body.dark-theme .additional-elements-title {
    color: var(--text-light);
}

body.dark-theme .additional-element-item {
    background: var(--card-bg);
    border-color: var(--card-border);
}

body.dark-theme .additional-element-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(19, 175, 240, 0.25);
}

body.dark-theme .additional-element-name {
    color: var(--text-light);
}

body.dark-theme .additional-elements-note {
    background: var(--note-bg);
}

body.dark-theme .additional-elements-note strong {
    color: var(--text-light);
}

body.dark-theme .formats-header {
    background: var(--expression-bg);
}

body.dark-theme .formats-title {
    color: var(--text-light);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .nav-menu {
        gap: 1rem;
    }

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

    .about-visual {
        order: -1;
    }

    .portfolio-banner {
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .banner-icon svg {
        width: 80px;
        height: 80px;
    }

    .banner-arrow svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-text h1 {
        font-size: 1.2rem;
        letter-spacing: 0.06em;
    }

    .tagline {
        font-size: 0.7rem;
        letter-spacing: 0.04em;
    }

    .nav-link {
        font-size: 0.9rem;
        letter-spacing: 0.02em;
    }

    .hero {
        min-height: 90vh;
        padding: 6rem 2rem 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .portfolio-banner {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

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

    .banner-icon svg {
        width: 100px;
        height: 100px;
    }

    .banner-arrow {
        display: none;
    }

    .contact-form {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .floating-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.1rem;
        letter-spacing: 0.05em;
    }

    .tagline {
        font-size: 0.65rem;
        letter-spacing: 0.04em;
    }

    .nav-link {
        font-size: 0.85rem;
        letter-spacing: 0.02em;
    }

    .hero-title {
        font-size: 2rem;
        background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .mascot {
        bottom: 335px;
    }

    .mascot-sprite {
        width: 40px !important;
    }

    .contact-form {
        padding: 2rem;
    }

    .hero {
        padding: 5rem 2rem 3rem;
    }

    .portfolio-banner {
        padding: 2.5rem 2rem;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .warudo-tier-title {
        font-size: 1.6rem;
    }

    .warudo-tier-list li {
        font-size: 0.95rem;
    }
}

/* ===== Desactivar cursor personalizado en dispositivos touch ===== */
@media (pointer: coarse) {
    body {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    a, button, .portfolio-item, .btn, .nav-link, .social-link, .skill-tag {
        cursor: pointer !important;
    }

    * {
        cursor: auto !important;
    }
}
