/* Variables de colores y estilos base */
    :root {
        --velvet: #7c3aed;
        --rose: #f43f5e;
        --gold: #f59e0b;
        --night: #0f172a;
        --blush: #fecdd3;
        --velvet-light: rgba(124, 58, 237, 0.7);
        --rose-light: rgba(244, 63, 94, 0.7);
        --gold-light: rgba(245, 158, 11, 0.7);
        --night-light: rgba(15, 23, 42, 0.85);
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Segoe UI', system-ui, sans-serif;
        background-color: var(--night);
        color: white;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    /* Animaciones */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }
    
    @keyframes pulseGlow {
        0%, 100% { 
            box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
            transform: scale(1);
        }
        50% { 
            box-shadow: 0 0 40px rgba(124, 58, 237, 0.8);
            transform: scale(1.05);
        }
    }
    
    @keyframes slideUp {
        0% { transform: translateY(100px); opacity: 0; }
        100% { transform: translateY(0); opacity: 1; }
    }
    
    @keyframes slideDown {
        0% { transform: translateY(-100px); opacity: 0; }
        100% { transform: translateY(0); opacity: 1; }
    }
    
    @keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
    }
    
    @keyframes textGlow {
        0%, 100% { text-shadow: 0 0 10px rgba(244, 63, 94, 0.5); }
        50% { text-shadow: 0 0 20px rgba(244, 63, 94, 0.8), 0 0 30px rgba(244, 63, 94, 0.6); }
    }
    
    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    @keyframes shimmer {
        0% { background-position: -1000px 0; }
        100% { background-position: 1000px 0; }
    }
    
    @keyframes bounceSoft {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }
    
    /* Utilidades */
    .animate-float {
        animation: float 6s ease-in-out infinite;
    }
    
    .animate-pulse-glow {
        animation: pulseGlow 2s ease-in-out infinite;
    }
    
    .animate-slide-up {
        animation: slideUp 0.8s ease-out;
    }
    
    .animate-slide-down {
        animation: slideDown 0.8s ease-out;
    }
    
    .animate-fade-in {
        animation: fadeIn 1.2s ease-out;
    }
    
    .animate-text-glow {
        animation: textGlow 3s ease-in-out infinite;
    }
    
    .animate-spin-slow {
        animation: spin 8s linear infinite;
    }
    
    .animate-shimmer {
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite;
    }
    
    .animate-bounce-soft {
        animation: bounceSoft 2s infinite;
    }
    
    /* Navegación */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 50;
        padding: 0.55rem 1.5rem;
        backdrop-filter: blur(12px);
        background-color: rgba(15, 23, 42, 0.7);
        border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .nav-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .logo-circle {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background: linear-gradient(to right, var(--velvet), var(--rose));
        display: flex;
        align-items: center;
        justify-content: center;
        animation: spin 8s linear infinite;
    }
    
    .logo-inner {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background-color: var(--night);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-icon {
        color: var(--rose);
        font-size: 1.25rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
        font-weight: bold;
        background: linear-gradient(to right, var(--velvet), var(--rose), var(--gold));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: textGlow 3s ease-in-out infinite;
    }
    
    .logo-text span {
        color: var(--blush);
    }
    
    .nav-menu {
        display: none;
        gap: 2rem;
        align-items: center;
    }
    
    @media (min-width: 1024px) {
        .nav-menu {
            display: flex;
        }
    }
    
    .nav-link {
        position: relative;
        font-size: 1.125rem;
        font-weight: 500;
        color: white;
        text-decoration: none;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -0.25rem;
        left: 0;
        width: 0;
        height: 2px;
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .nav-link:nth-child(1)::after { background-color: var(--rose); }
    .nav-link:nth-child(2)::after { background-color: var(--velvet); }
    .nav-link:nth-child(3)::after { background-color: var(--gold); }
    .nav-link:nth-child(4)::after { background-color: var(--velvet); }
    
    .nav-button {
        padding: 0.5rem 1.5rem;
        border-radius: 9999px;
        background: linear-gradient(to right, var(--velvet), var(--rose));
        color: white;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
        animation: pulseGlow 2s ease-in-out infinite;
    }
    
    .nav-button:hover {
        box-shadow: 0 10px 20px rgba(244, 63, 94, 0.3);
        transform: scale(1.05);
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        color: white;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    @media (min-width: 1024px) {
        .mobile-menu-btn {
            display: none;
        }
    }
    
    .mobile-menu {
        display: none;
        margin-top: 1.5rem;
        padding: 1.5rem 0;
        border-top: 1px solid rgba(124, 58, 237, 0.3);
    }
    
    .mobile-menu.show {
        display: block;
    }
    
    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mobile-link {
        font-size: 1.125rem;
        font-weight: 500;
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .mobile-link:hover {
        color: var(--rose);
    }
    
    .mobile-button {
        padding: 0.75rem 1.5rem;
        border-radius: 9999px;
        background: linear-gradient(to right, var(--velvet), var(--rose));
        color: white;
        font-weight: bold;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .mobile-button:hover {
        box-shadow: 0 10px 20px rgba(244, 63, 94, 0.3);
    }
    
    /* Slider */
    #fullscreen-slider {
        position: relative;
    }
    
    .fullscreen-slide {
        height: 100vh;
        width: 100vw;
        position: relative;
        overflow: hidden;
    }
    
    .slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 8s ease;
    }
    
    .slide-bg:hover {
        transform: scale(1.1);
    }
    
    .gradient-overlay {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(124, 58, 237, 0.7) 100%);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .slide-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .slide-content-inner {
        max-width: 100rem;
    }
    
    .slide-title {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        text-shadow: 
            2px 2px 0 #000,
            -2px -2px 0 #000,
            2px -2px 0 #000,
            -2px 2px 0 #000;
    }
    
    @media (min-width: 768px) {
        .slide-title {
            font-size: 4.5rem;
        }
    }
    
    .slide-title span {
        display: block;
        color: #ffffff;
        animation: textGlow 3s ease-in-out infinite;
    }
    
    .slide-description {
        font-size: 1.25rem;
        color: var(--blush);
        margin-bottom: 2.5rem;
    }
    
    @media (min-width: 768px) {
        .slide-description {
            font-size: 1.5rem;
        }
    }
    
    .slide-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .btn-primary {
        padding: 1rem 2rem;
        border-radius: 9999px;
        background: linear-gradient(to right, var(--velvet), var(--rose));
        color: white;
        font-weight: bold;
        font-size: 1.125rem;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }
    
    .btn-primary:hover {
        box-shadow: 0 0 40px rgba(244, 63, 94, 0.4);
        transform: scale(1.05);
    }
    
    .btn-primary i {
        margin-left: 0.75rem;
    }
    
    .btn-secondary {
        padding: 1rem 2rem;
        border-radius: 9999px;
        border: 2px solid white;
        color: white;
        font-weight: bold;
        font-size: 1.125rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .btn-secondary:hover {
        background-color: white;
        color: var(--night);
        transform: scale(1.05);
    }
    
    /* Elementos flotantes */
    .floating-element {
        position: absolute;
        border-radius: 50%;
        filter: blur(1rem);
    }
    
    .float-1 {
        top: 5rem;
        right: 2.5rem;
        width: 5rem;
        height: 5rem;
        background: linear-gradient(to right, rgba(124, 58, 237, 0.3), rgba(244, 63, 94, 0.3));
        animation: float 6s ease-in-out infinite;
    }
    
    .float-2 {
        bottom: 8rem;
        left: 2.5rem;
        width: 4rem;
        height: 4rem;
        background: linear-gradient(to right, rgba(245, 158, 11, 0.3), rgba(244, 63, 94, 0.3));
        animation: float 6s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    .float-3 {
        top: 33.33%;
        left: 25%;
        width: 6rem;
        height: 6rem;
        background: linear-gradient(to right, rgba(124, 58, 237, 0.2), rgba(245, 158, 11, 0.2));
        animation: float 6s ease-in-out infinite;
        animation-delay: 2s;
    }
    
    /* Controles del slider */
    .slider-controls {
        position: absolute;
        bottom: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 40;
        display: flex;
        gap: 1rem;
    }
    
    .slider-control {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background-color: rgba(15, 23, 42, 0.7);
        border: 1px solid var(--velvet);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-control:hover {
        background-color: var(--velvet);
    }
    
    .slider-control:nth-child(2) {
        border-color: var(--rose);
    }
    
    .slider-control:nth-child(2):hover {
        background-color: var(--rose);
    }
    
    .slider-indicators {
        position: absolute;
        bottom: 2.5rem;
        right: 2.5rem;
        z-index: 40;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .slider-indicator {
        width: 1rem;
        height: 1rem;
        border-radius: 50%;
        border: 1px solid white;
        background-color: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-indicator:hover {
        background-color: var(--rose);
    }
    
    .slider-indicator.active {
        background-color: white;
    }
    
    .slider-indicator:nth-child(2):hover {
        background-color: var(--gold);
    }
    
    .slider-indicator:nth-child(3):hover {
        background-color: var(--velvet);
    }
    
    .scroll-down {
        position: absolute;
        bottom: 2.5rem;
        left: 2.5rem;
        z-index: 40;
        animation: bounceSoft 2s infinite;
    }
    
    .scroll-down-btn {
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 50%;
        background: linear-gradient(to right, var(--velvet), var(--rose));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .scroll-down-btn:hover {
        box-shadow: 0 10px 20px rgba(244, 63, 94, 0.3);
    }
    
    /* Sección de Modelos */
    .models-section {
        padding: 6rem 0;
        background: linear-gradient(to bottom, var(--night), rgba(124, 58, 237, 0.1), var(--night));
        /*position: relative;*/
        overflow: hidden;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 5rem;
    }
    
    .section-title h2 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }
    
    .section-title span {
        background: linear-gradient(to right, var(--rose), var(--gold), var(--velvet));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: textGlow 3s ease-in-out infinite;
    }
    
    .section-description {
        font-size: 1.25rem;
        color: var(--blush);
        max-width: 48rem;
        margin: 0 auto;
    }
    
    .models-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    @media (min-width: 768px) {
        .models-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1024px) {
        .models-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    .model-card {
        position: relative;
        overflow: hidden;
        border-radius: 1.5rem;
        transition: all 0.5s ease;
        border: 2px solid transparent;
        background: linear-gradient(45deg, var(--velvet), var(--rose), var(--gold)) border-box;
        /*-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;*/
    }
    
    .model-card:hover {
        transform: translateY(-10px);
    }
    
    .model-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, var(--night), rgba(124, 58, 237, 0.3), transparent);
        z-index: 10;
    }
    
    .model-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(244, 63, 94, 0), rgba(124, 58, 237, 0), rgba(245, 158, 11, 0));
        z-index: 20;
        transition: all 0.7s ease;
    }
    
    .model-card:hover::after {
        background: linear-gradient(to right, rgba(244, 63, 94, 0.2), rgba(124, 58, 237, 0.2), rgba(245, 158, 11, 0.2));
    }
    
    .model-image {
        width: 100%;
        height: 24rem;
        object-fit: cover;
        transition: transform 0.7s ease;
    }
    
    .model-card:hover .model-image {
        transform: scale(1.1);
    }
    
    .model-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem;
        z-index: 30;
    }
    
    .model-name {
        font-size: 1.875rem;
        font-weight: bold;
        color: white;
        margin-bottom: 0.5rem;
    }
    
    .model-description {
        color: var(--blush);
        margin-bottom: 1rem;
    }
    
    .model-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .model-price {
        color: var(--gold);
        font-weight: bold;
        font-size: 1.5rem;
    }
    
    .model-button {
        padding: 0.5rem 1.5rem;
        border-radius: 9999px;
        background-color: white;
        color: var(--night);
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .model-button:hover {
        background-color: var(--blush);
        transform: scale(1.1);
    }
    
    .model-badge {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: linear-gradient(to right, var(--rose), var(--velvet));
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 9999px;
        font-size: 0.875rem;
        font-weight: bold;
        z-index: 30;
    }
    
    .model-badge i {
        margin-right: 0.5rem;
    }
    
    .badge-popular {
        background: linear-gradient(to right, var(--gold), var(--rose));
    }
    
    .badge-elite {
        background: linear-gradient(to right, var(--velvet), var(--gold));
    }
    
    .view-more {
        text-align: center;
        margin-top: 4rem;
    }
    
    .view-more-btn {
        display: inline-flex;
        align-items: center;
        padding: 1rem 2rem;
        border-radius: 9999px;
        background: linear-gradient(to right, var(--velvet), var(--rose));
        color: white;
        font-weight: bold;
        font-size: 1.125rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .view-more-btn:hover {
        box-shadow: 0 0 40px rgba(244, 63, 94, 0.4);
        transform: scale(1.05);
    }
    
    .view-more-btn i {
        margin-left: 0.75rem;
    }
    
    /* Elementos decorativos de sección */
    .decorative-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(3rem);
    }
    
    .blob-1 {
        top: -5rem;
        right: -5rem;
        width: 20rem;
        height: 20rem;
        background: linear-gradient(to right, rgba(124, 58, 237, 0.1), rgba(244, 63, 94, 0.1));
    }
    
    .blob-2 {
        bottom: -5rem;
        left: -5rem;
        width: 20rem;
        height: 20rem;
        background: linear-gradient(to right, rgba(245, 158, 11, 0.1), rgba(124, 58, 237, 0.1));
    }
        
        /* Sección de Servicios DIAMANT - Estilos Premium */
.diamant-services-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.98) 0%,
        rgba(15, 23, 42, 0.95) 50%,
        rgba(15, 23, 42, 0.98) 100%);
    overflow: hidden;
}

/* Elementos decorativos de fondo */
.diamant-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.diamant-shape {
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.05) 0%,
        rgba(244, 63, 94, 0.05) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: diamondFloat 25s infinite linear;
}

.ds-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.ds-2 {
    top: 20%;
    right: 8%;
    width: 150px;
    height: 150px;
    animation-delay: -8s;
    animation-duration: 30s;
}

.ds-3 {
    bottom: 15%;
    left: 10%;
    width: 120px;
    height: 120px;
    animation-delay: -15s;
    animation-duration: 35s;
}

@keyframes diamondFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(0) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(30px) rotate(270deg);
        opacity: 0.1;
    }
}

/* Encabezado principal */
.diamant-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.diamant-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: pulseGlow 3s ease-in-out infinite;
}

.diamant-badge i {
    font-size: 1rem;
}

.diamant-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.diamant-title-line {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.diamant-title-highlight {
    background: linear-gradient(90deg, 
        var(--velvet) 0%,
        var(--rose) 50%,
        var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 4rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    animation: textGlow 3s ease-in-out infinite;
}

.diamant-header-description {
    color: var(--blush);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-top: 1.5rem;
}

/* Grid de contenido principal */
.diamant-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .diamant-content-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Tarjetas de columna */
.diamant-column {
    display: flex;
}

.column-card {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(124, 58, 237, 0.1) 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.column-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--velvet), var(--rose), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.column-card:hover::before {
    opacity: 1;
}

.column-card:hover {
    transform: translateY(-10px);
    border-color: var(--velvet);
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.3);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.column-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.quality-card .column-icon {
    background: linear-gradient(135deg, var(--velvet), #6366f1);
}

.services-card .column-icon {
    background: linear-gradient(135deg, var(--rose), var(--gold));
}

.fantasies-card .column-icon {
    background: linear-gradient(135deg, var(--gold), var(--velvet));
}

.column-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.diamant-text {
    background: linear-gradient(90deg, var(--velvet), var(--rose));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* Tarjeta de Calidad */
.quality-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quality-description {
    color: var(--blush);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guarantee-section {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.guarantee-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--blush);
    font-size: 0.95rem;
}

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

.guarantee-item i {
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 0.75rem;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-text {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Tarjeta de Servicios */
.services-intro {
    margin-bottom: 1.5rem;
}

.services-intro-text {
    color: var(--blush);
    font-size: 1rem;
    text-align: center;
}

.highlight-text {
    background: linear-gradient(90deg, var(--gold), var(--rose));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    font-size: 1.1rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.service-premium {
    background: linear-gradient(90deg, 
        rgba(124, 58, 237, 0.1) 0%,
        rgba(124, 58, 237, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.service-exclusive {
    background: linear-gradient(90deg, 
        rgba(244, 63, 94, 0.1) 0%,
        rgba(244, 63, 94, 0.05) 100%);
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.service-vip {
    background: linear-gradient(90deg, 
        rgba(245, 158, 11, 0.1) 0%,
        rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.service-item:hover {
    transform: translateX(10px);
    border-color: var(--velvet);
}

.service-item-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.service-premium .service-item-icon {
    background: linear-gradient(135deg, var(--velvet), #6366f1);
}

.service-exclusive .service-item-icon {
    background: linear-gradient(135deg, var(--rose), #ec4899);
}

.service-vip .service-item-icon {
    background: linear-gradient(135deg, var(--gold), #f59e0b);
}

.service-item-content {
    flex: 1;
}

.service-item-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.service-item-description {
    color: var(--blush);
    font-size: 0.85rem;
    opacity: 0.8;
}

.services-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    margin-top: auto;
}

.note-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.note-text {
    color: var(--blush);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

/* Tarjeta de Fantasías */
.fantasies-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fantasies-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.fantasies-question {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.fantasies-answer {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    animation: pulseGlow 2s ease-in-out infinite;
}

.fantasies-answer i {
    font-size: 1.2rem;
}

.fantasies-description {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    text-align: center;
}

.fantasies-description p {
    color: var(--blush);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.fantasies-cta {
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.15) 0%,
        rgba(244, 63, 94, 0.15) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
    text-align: center;
}

.cta-content {
    margin-bottom: 1rem;
}

.cta-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-text {
    color: var(--blush);
    font-size: 0.95rem;
    margin: 0;
}

.fantasies-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.fantasies-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, var(--rose), var(--velvet));
}

.fantasies-features {
    margin-bottom: 1.5rem;
}

.features-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.fantasy-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.fantasy-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 0.75rem;
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
}

.fantasy-item:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateX(5px);
}

.fantasy-marker {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.fantasy-text {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.fantasies-guarantee {
    margin-top: auto;
}

.guarantee-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.guarantee-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.guarantee-content h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.guarantee-content p {
    color: var(--blush);
    font-size: 0.85rem;
    margin: 0;
}

/* CTA Final */
.diamant-cta-section {
    margin-top: 4rem;
}

.cta-diamant {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(124, 58, 237, 0.2) 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-diamant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--velvet) 0%,
        var(--rose) 50%,
        var(--gold) 100%);
}

.cta-content {
    margin-bottom: 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    color: var(--blush);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    color: white;
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, var(--rose), var(--velvet));
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--gold);
}

.cta-btn-secondary:hover {
    background: var(--gold);
    color: var(--night);
    transform: translateY(-5px);
    border-color: transparent;
}

/* Elemento decorativo flotante */
.floating-diamond {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transform: rotate(45deg);
    animation: diamondSpin 20s linear infinite;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.floating-diamond i {
    transform: rotate(-45deg);
}

@keyframes diamondSpin {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

/* Ajustes responsivos */
@media (max-width: 1024px) {
    .diamant-main-title {
        font-size: 3rem;
    }
    
    .diamant-title-line {
        font-size: 2rem;
    }
    
    .diamant-title-highlight {
        font-size: 3.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .diamant-main-title {
        font-size: 2.5rem;
    }
    
    .diamant-title-highlight {
        font-size: 3rem;
    }
    
    .column-card {
        padding: 1.5rem;
    }
    
    .column-title {
        font-size: 1.5rem;
    }
    
    .cta-btn {
        min-width: 100%;
    }
    
    .fantasies-answer {
        font-size: 1rem;
        padding: 0.5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .diamant-header-description {
        font-size: 1.1rem;
    }
    
    .diamant-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
    }
    
    .column-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .services-note {
        flex-direction: column;
        text-align: center;
    }
}
/*Servicios*/

    .radial-gradient {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 64rem;
        height: 16rem;
        background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
        pointer-events: none;
        display: none;
    }

    @media (min-width: 1024px) {
        .radial-gradient {
            display: block;
        }
    }

    /* Ajustes para el título de la sección */
    .section-title h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    @media (min-width: 768px) {
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
    }

    @media (min-width: 1024px) {
        .section-title h2 {
            font-size: 3rem;
        }
    }

    .section-description {
        font-size: 1rem;
        color: var(--blush);
        max-width: 48rem;
        margin: 0 auto;
        line-height: 1.5;
        padding: 0 1rem;
    }

    @media (min-width: 768px) {
        .section-description {
            font-size: 1.125rem;
            padding: 0;
        }
    }

    @media (min-width: 1024px) {
        .section-description {
            font-size: 1.25rem;
        }
    }
    
    /* Sección de Contacto Mejorada */
    .contact-section {
        padding: 6rem 0;
        background: linear-gradient(to bottom, rgba(124, 58, 237, 0.2), var(--night));
        position: relative;
        overflow: hidden;
    }

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

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .contact-title {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-title-text {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-title-highlight {
        background: linear-gradient(to right, var(--rose), var(--gold));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-size: 3.5rem;
        animation: textGlow 3s ease-in-out infinite;
    }

    .contact-description {
        color: var(--blush);
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Tarjetas de contacto principales */
    .contact-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
        .contact-cards {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .contact-cards {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .contact-card {
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(124, 58, 237, 0.15));
        border-radius: 1.5rem;
        padding: 2rem;
        border: 1px solid rgba(124, 58, 237, 0.3);
        backdrop-filter: blur(10px);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .contact-card:hover {
        transform: translateY(-10px);
        border-color: var(--velvet);
        box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    }

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: 0.5s;
    }

    .contact-card:hover::before {
        left: 100%;
    }

    .contact-card-icon {
        position: relative;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        position: relative;
        z-index: 2;
    }

    .icon-circle-phone {
        background: linear-gradient(135deg, var(--velvet), var(--rose));
        box-shadow: 0 10px 20px rgba(124, 58, 237, 0.4);
    }

    .icon-circle-whatsapp {
        background: linear-gradient(135deg, #25D366, #128C7E);
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    }

    .icon-circle-email {
        background: linear-gradient(135deg, var(--gold), var(--rose));
        box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
    }

    .icon-glow {
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: inherit;
        filter: blur(20px);
        opacity: 0.6;
        animation: pulseGlow 2s ease-in-out infinite;
    }

    .contact-card-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: white;
        margin-bottom: 1rem;
        text-align: center;
    }

    .contact-card-description {
        color: var(--blush);
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        text-align: center;
        flex-grow: 1;
    }

    .contact-card-info {
        background: rgba(15, 23, 42, 0.5);
        border-radius: 1rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(124, 58, 237, 0.2);
    }

    .contact-number, .contact-availability {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .contact-number:last-child, .contact-availability:last-child {
        margin-bottom: 0;
    }

    .contact-number i, .contact-availability i {
        color: var(--gold);
        width: 20px;
    }

    .contact-number span, .contact-availability span {
        color: white;
    }

    .contact-action-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        border-radius: 0.75rem;
        font-weight: bold;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .contact-action-phone {
        background: linear-gradient(to right, var(--velvet), var(--rose));
        color: white;
    }

    .contact-action-phone:hover {
        background: linear-gradient(to right, var(--rose), var(--velvet));
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(244, 63, 94, 0.4);
    }

    .contact-action-whatsapp {
        background: linear-gradient(to right, #25D366, #128C7E);
        color: white;
    }

    .contact-action-whatsapp:hover {
        background: linear-gradient(to right, #128C7E, #25D366);
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    }

    .contact-action-email {
        background: linear-gradient(to right, var(--gold), var(--rose));
        color: white;
    }

    .contact-action-email:hover {
        background: linear-gradient(to right, var(--rose), var(--gold));
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
    }

    /* Separador decorativo */
    .contact-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 4rem 0;
    }

    .divider-line {
        height: 2px;
        background: linear-gradient(to right, transparent, var(--velvet), transparent);
        flex: 1;
    }

    .divider-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--velvet), var(--rose));
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 2rem;
        color: white;
        font-size: 1.5rem;
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
        animation: spin 10s linear infinite;
    }

    /* Información adicional */
    .contact-additional {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
        .contact-additional {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .additional-card {
        background: rgba(15, 23, 42, 0.6);
        border-radius: 1rem;
        padding: 1.5rem;
        border: 1px solid rgba(124, 58, 237, 0.2);
        text-align: center;
        transition: all 0.3s ease;
    }

    .additional-card:hover {
        border-color: var(--gold);
        transform: translateY(-5px);
    }

    .additional-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--velvet), var(--rose));
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        color: white;
        font-size: 1.5rem;
    }

    .additional-title {
        font-size: 1.25rem;
        font-weight: bold;
        color: white;
        margin-bottom: 0.75rem;
    }

    .additional-text {
        color: var(--blush);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Redes sociales mejoradas */
    .social-section {
        margin-bottom: 4rem;
    }

    .social-title {
        font-size: 2rem;
        font-weight: bold;
        color: white;
        text-align: center;
        margin-bottom: 1rem;
    }

    .social-description {
        color: var(--blush);
        text-align: center;
        max-width: 700px;
        margin: 0 auto 2rem;
        font-size: 1.1rem;
    }

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

    @media (min-width: 768px) {
        .social-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .social-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .social-card {
        background: rgba(15, 23, 42, 0.7);
        border-radius: 1rem;
        padding: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
        border: 1px solid rgba(124, 58, 237, 0.2);
        transition: all 0.3s ease;
    }

    .social-card:hover {
        transform: translateY(-5px);
        border-color: var(--velvet);
    }

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

    .social-instagram .social-card-icon {
        background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    }

    .social-twitter .social-card-icon {
        background: linear-gradient(45deg, #1DA1F2, #1DA1F2);
    }

    .social-telegram .social-card-icon {
        background: linear-gradient(45deg, #0088CC, #0088CC);
    }

    .social-onlyfans .social-card-icon {
        background: linear-gradient(45deg, #00AFF0, #00AFF0);
    }

    .social-card-content {
        flex: 1;
    }

    .social-card-content h4 {
        color: white;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .social-card-content p {
        color: var(--blush);
        font-size: 0.9rem;
    }

    .social-card-arrow {
        color: var(--velvet);
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .social-card:hover .social-card-arrow {
        transform: translateX(5px);
        color: var(--rose);
    }

    /* CTA final */
    .contact-cta {
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(15, 23, 42, 0.9));
        border-radius: 1.5rem;
        padding: 3rem 2rem;
        text-align: center;
        border: 1px solid rgba(124, 58, 237, 0.3);
        position: relative;
        overflow: hidden;
    }

    .contact-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right, var(--velvet), var(--rose), var(--gold));
    }

    .cta-content {
        margin-bottom: 2rem;
    }

    .cta-title {
        font-size: 2rem;
        font-weight: bold;
        color: white;
        margin-bottom: 1rem;
    }

    .cta-description {
        color: var(--blush);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    @media (min-width: 768px) {
        .cta-actions {
            flex-direction: row;
            justify-content: center;
            gap: 2rem;
        }
    }

    .cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        border-radius: 0.75rem;
        font-weight: bold;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        min-width: 250px;
    }

    .cta-primary {
        background: linear-gradient(to right, var(--velvet), var(--rose));
        color: white;
        box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
    }

    .cta-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(124, 58, 237, 0.5);
        background: linear-gradient(to right, var(--rose), var(--velvet));
    }

    .cta-secondary {
        background: transparent;
        color: white;
        border: 2px solid var(--gold);
    }

    .cta-secondary:hover {
        background: var(--gold);
        color: var(--night);
        transform: translateY(-5px);
    }

    /* Elementos flotantes adicionales */
    .contact-float-1 {
        top: 20%;
        right: 10%;
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(244, 63, 94, 0.2));
        filter: blur(30px);
        animation: float 8s ease-in-out infinite;
    }

    .contact-float-2 {
        bottom: 30%;
        left: 5%;
        width: 150px;
        height: 150px;
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(124, 58, 237, 0.15));
        filter: blur(40px);
        animation: float 10s ease-in-out infinite;
        animation-delay: 1s;
    }

    /* Ajustes responsivos */
    @media (max-width: 768px) {
        .contact-title {
            font-size: 2rem;
        }
        
        .contact-title-text {
            font-size: 1.75rem;
        }
        
        .contact-title-highlight {
            font-size: 2.5rem;
        }
        
        .contact-description {
            font-size: 1.1rem;
            padding: 0 1rem;
        }
        
        .contact-card {
            padding: 1.5rem;
        }
        
        .icon-circle {
            width: 70px;
            height: 70px;
            font-size: 1.75rem;
        }
        
        .contact-card-title {
            font-size: 1.3rem;
        }
        
        .cta-title {
            font-size: 1.5rem;
        }
        
        .cta-btn {
            min-width: 100%;
        }
    }
    /* Sección de Contacto Mejorada */
    
    .social-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: white;
        margin-bottom: 1.5rem;
    }
    
    .social-icons {
        display: flex;
        gap: 1.5rem;
    }
    
    .social-icon {
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 50%;
        background: linear-gradient(to right, var(--velvet), var(--rose));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        box-shadow: 0 10px 20px rgba(244, 63, 94, 0.3);
        transform: scale(1.1);
    }
    
    .social-icon:nth-child(2) {
        background: linear-gradient(to right, var(--rose), var(--gold));
    }
    
    .social-icon:nth-child(2):hover {
        box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
    }
    
    .social-icon:nth-child(3) {
        background: linear-gradient(to right, var(--gold), var(--velvet));
    }
    
    .social-icon:nth-child(3):hover {
        box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
    }
    
    .contact-form-card {
        padding: 2.5rem;
        border-radius: 1.5rem;
        background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.8), rgba(124, 58, 237, 0.2));
        border: 1px solid rgba(124, 58, 237, 0.3);
        backdrop-filter: blur(8px);
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-label {
        display: block;
        color: white;
        margin-bottom: 0.75rem;
        font-size: 1.125rem;
    }
    
    .form-input {
        width: 100%;
        background-color: rgba(15, 23, 42, 0.5);
        border: 1px solid rgba(124, 58, 237, 0.5);
        border-radius: 0.75rem;
        padding: 1rem 1.5rem;
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .form-input::placeholder {
        color: var(--blush);
    }
    
    .form-input:focus {
        outline: none;
        border-color: transparent;
        box-shadow: 0 0 0 2px var(--rose);
    }
    
    .form-textarea {
        min-height: 8rem;
        resize: vertical;
    }
    
    .form-button {
        width: 100%;
        padding: 1rem 0;
        border-radius: 0.75rem;
        background: linear-gradient(to right, var(--velvet), var(--rose));
        color: white;
        font-weight: bold;
        font-size: 1.25rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
        animation: pulseGlow 2s ease-in-out infinite;
    }
    
    .form-button:hover {
        box-shadow: 0 0 40px rgba(244, 63, 94, 0.4);
        transform: scale(1.05);
    }
    
    .blob-3 {
        top: -10rem;
        right: -10rem;
        width: 20rem;
        height: 20rem;
        background: linear-gradient(to right, rgba(244, 63, 94, 0.1), rgba(245, 158, 11, 0.1));
    }
    
    .blob-4 {
        bottom: -10rem;
        left: -10rem;
        width: 20rem;
        height: 20rem;
        background: linear-gradient(to right, rgba(124, 58, 237, 0.1), rgba(244, 63, 94, 0.1));
    }
    
    /* Footer */
    footer {
        padding: 3rem 0;
        background: linear-gradient(to top, var(--night), rgba(124, 58, 237, 0.3));
        border-top: 1px solid rgba(124, 58, 237, 0.3);
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
        }
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
    
    @media (min-width: 768px) {
        .footer-brand {
            margin-bottom: 0;
        }
    }
    
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo-circle {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background: linear-gradient(to right, var(--velvet), var(--rose));
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-logo-icon {
        color: white;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
        font-weight: bold;
        background: linear-gradient(to right, var(--velvet), var(--rose), var(--gold));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    
    .footer-logo-text span {
        color: var(--blush);
    }
    
    .footer-text {
        color: var(--blush);
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    @media (min-width: 768px) {
        .footer-copyright {
            text-align: right;
        }
    }
    
    .footer-copyright p {
        color: var(--blush);
        margin-bottom: 0.5rem;
    }
    
    .footer-copyright small {
        color: var(--blush);
        font-size: 0.875rem;
    }
    
    /* Efectos personalizados */
    .text-outline {
        text-shadow: 
            2px 2px 0 #000,
            -2px -2px 0 #000,
            2px -2px 0 #000,
            -2px 2px 0 #000;
    }
    
    .neon-border {
        border: 2px solid transparent;
        background: linear-gradient(45deg, var(--velvet), var(--rose), var(--gold)) border-box;
        mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
    }
    
    .shimmer-effect {
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite;
    }
    
    .cursor-trail {
        position: fixed;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: rgba(124, 58, 237, 0.5);
        pointer-events: none;
        z-index: 9999;
        mix-blend-mode: screen;
        transition: transform 0.1s;
    }
    
    .particle {
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        pointer-events: none;
    }
    
    /* Scrollbar personalizada */
    ::-webkit-scrollbar {
        width: 10px;
    }
    
    ::-webkit-scrollbar-track {
        background: var(--night);
    }
    
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(45deg, var(--velvet), var(--rose));
        border-radius: 5px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(45deg, var(--rose), var(--velvet));
    }
    
    /* Espaciado para el menú fijo */
    body {
        padding-top: 80px;
    }



/* Bloque About Us - Diamants Gdl */
.about-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.98) 0%,
        rgba(15, 23, 42, 0.95) 50%,
        rgba(15, 23, 42, 0.98) 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Fondo de diamantes */
.diamond-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.diamond-shape {
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.1) 0%,
        rgba(244, 63, 94, 0.1) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: diamondFloat 20s infinite linear;
}

.diamond-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.diamond-2 {
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    animation-delay: -5s;
    animation-duration: 25s;
}

.diamond-3 {
    bottom: 15%;
    left: 15%;
    width: 100px;
    height: 100px;
    animation-delay: -10s;
    animation-duration: 30s;
}

.diamond-4 {
    bottom: 25%;
    right: 20%;
    width: 60px;
    height: 60px;
    animation-delay: -15s;
}

.diamond-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    opacity: 0.05;
    animation: diamondPulse 10s infinite ease-in-out;
}

@keyframes diamondFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
}

@keyframes diamondPulse {
    0%, 100% {
        opacity: 0.05;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Brillos animados */
.sparkle {
    position: absolute;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleTwinkle 3s infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    width: 3px;
    height: 3px;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 40%;
    right: 20%;
    width: 2px;
    height: 2px;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 30%;
    left: 25%;
    width: 4px;
    height: 4px;
    animation-delay: 2s;
}

.sparkle-4 {
    bottom: 20%;
    right: 15%;
    width: 3px;
    height: 3px;
    animation-delay: 1.5s;
}

@keyframes sparkleTwinkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Encabezado */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.brand-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.badge-diamond {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transform: rotate(45deg);
    animation: diamondSpin 20s linear infinite;
}

.badge-diamond i {
    color: white;
    font-size: 1.5rem;
    transform: rotate(-45deg);
}

@keyframes diamondSpin {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

.brand-subtitle {
    color: var(--blush);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.main-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-line-1, .title-line-2, .title-line-3 {
    display: block;
    color: white;
    font-weight: 300;
    letter-spacing: 1px;
}

.title-line-1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.title-line-2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.title-line-3 {
    font-size: 3.5rem;
}

.title-highlight {
    background: linear-gradient(90deg, 
        var(--velvet) 0%,
        var(--rose) 50%,
        var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    position: relative;
    animation: textGlow 3s ease-in-out infinite;
}

.welcome-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 400px;
    margin: 2rem auto 0;
}

.ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--velvet) 50%,
        transparent 100%);
}

.ornament-text {
    color: var(--blush);
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
}

/* Contenido principal */
.about-content {
    display: block;
    margin-bottom: 4rem;
}

/* Para tablets de 768px en adelante podrías poner grid de 1 columna si quieres */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Columna de texto */
.text-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quote-card {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.9) 0%,
        rgba(124, 58, 237, 0.15) 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--velvet), var(--rose));
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(124, 58, 237, 0.3);
    font-size: 2rem;
}

.quote-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.quote-highlight {
    color: var(--blush);
    font-weight: 500;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.experience-card {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.9) 0%,
        rgba(244, 63, 94, 0.15) 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.experience-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.experience-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.experience-text {
    color: var(--blush);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.experience-divider {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.divider-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
}

.invitation-card {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.9) 0%,
        rgba(245, 158, 11, 0.15) 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.invitation-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.invitation-text {
    color: var(--blush);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quality-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.quality-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--rose));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quality-content {
    display: flex;
    flex-direction: column;
}

.quality-text {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.quality-emphasis {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Columna visual */
.visual-column {
    position: relative;
}

.diamond-frame {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.frame-border {
    position: absolute;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    z-index: 2;
}

.frame-top {
    top: 0;
    left: 50px;
    right: 50px;
    height: 2px;
}

.frame-right {
    top: 50px;
    right: 0;
    bottom: 50px;
    width: 2px;
}

.frame-bottom {
    bottom: 0;
    left: 50px;
    right: 50px;
    height: 2px;
}

.frame-left {
    top: 50px;
    left: 0;
    bottom: 50px;
    width: 2px;
}

.diamond-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.diamond-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: transform 0.8s ease;
}

.diamond-frame:hover .diamond-image {
    transform: scale(1.05);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(15, 23, 42, 0.4) 50%,
        rgba(15, 23, 42, 0.8) 100%);
}

/* Textos flotantes */
.floating-text {
    position: absolute;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.floating-word {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.floating-text-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-text-2 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.floating-text-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

/* Esquinas decorativas */
.corner-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    z-index: 3;
}

.corner-tl {
    top: 0;
    left: 0;
    border-radius: 0 0 15px 0;
}

.corner-tr {
    top: 0;
    right: 0;
    border-radius: 0 0 0 15px;
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-radius: 0 15px 0 0;
}

.corner-br {
    bottom: 0;
    right: 0;
    border-radius: 15px 0 0 0;
}

/* Estadísticas flotantes */
.stats-floating {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.9) 0%,
        rgba(124, 58, 237, 0.2) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--velvet);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--blush);
    margin-top: 0.25rem;
}

/* Sección de bienvenida */
.welcome-section {
    margin: 4rem 0;
    text-align: center;
}

.welcome-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.divider-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--velvet) 50%,
        transparent 100%);
}

.divider-diamond {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transform: rotate(45deg);
    animation: diamondSpin 20s linear infinite;
}

.divider-diamond i {
    transform: rotate(-45deg);
}

.welcome-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-line-1 {
    font-size: 2rem;
    color: var(--blush);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.welcome-line-2 {
    font-size: 3rem;
    background: linear-gradient(90deg, 
        var(--velvet) 0%,
        var(--rose) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 400;
    position: relative;
    animation: textGlow 3s ease-in-out infinite;
}

.welcome-subtitle {
    color: var(--blush);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 1rem auto 2rem;
    line-height: 1.5;
}

.welcome-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .welcome-actions {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.welcome-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, var(--rose), var(--velvet));
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--night);
    transform: translateY(-5px);
    border-color: transparent;
}

/* Sección de principios */
.principles-section {
    margin-top: 4rem;
}

.principles-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.principles-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--velvet), var(--rose));
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .principles-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.principle-card {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.9) 0%,
        rgba(124, 58, 237, 0.1) 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.principle-card:hover {
    transform: translateY(-10px);
    border-color: var(--velvet);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.principle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.principle-number {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(124, 58, 237, 0.2);
    line-height: 1;
}

.principle-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.principle-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.principle-description {
    color: var(--blush);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .title-line-1 {
        font-size: 2rem;
    }
    
    .title-line-2 {
        font-size: 2.5rem;
    }
    
    .title-line-3 {
        font-size: 3rem;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .welcome-line-1 {
        font-size: 1.5rem;
    }
    
    .welcome-line-2 {
        font-size: 2rem;
    }
    
    .welcome-btn {
        min-width: 100%;
    }
    
    .stats-floating {
        grid-template-columns: 1fr;
    }
    
    .floating-text {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0.5rem auto;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .title-line-3 {
        font-size: 2.5rem;
    }
    
    .quote-card,
    .experience-card,
    .invitation-card {
        padding: 1.5rem;
    }
    
    .quality-badge {
        flex-direction: column;
        text-align: center;
    }
}
/* Bloque About Us - Diamants Gdl */





/* Estilos para la sección de perfil de modelo - VERSIÓN MEJORADA */
.model-profile-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.98) 0%,
        rgba(124, 58, 237, 0.15) 50%,
        rgba(15, 23, 42, 0.98) 100%);
    overflow: hidden;
}

/* Fondo de diamantes */
.diamond-bg-profile {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.diamond-shape-profile {
    position: absolute;
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.08) 0%,
        rgba(244, 63, 94, 0.08) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: diamondFloat 25s infinite linear;
}

.dp-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.dp-2 {
    bottom: 20%;
    right: 8%;
    width: 150px;
    height: 150px;
    animation-delay: -10s;
}

.dp-3 {
    top: 40%;
    left: 80%;
    width: 120px;
    height: 120px;
    animation-delay: -5s;
}

/* Centelleos */
.sparkle-profile {
    position: absolute;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleTwinkle 3s infinite;
}

.sp-1 {
    top: 30%;
    left: 20%;
    width: 4px;
    height: 4px;
    animation-delay: 0s;
}

.sp-2 {
    top: 60%;
    right: 25%;
    width: 3px;
    height: 3px;
    animation-delay: 1.5s;
}

.sp-3 {
    bottom: 30%;
    left: 40%;
    width: 5px;
    height: 5px;
    animation-delay: 2s;
}

/* Encabezado */
.profile-header {
    text-align: center;
    margin-bottom: 4rem;
}

.model-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: pulseGlow 3s ease-in-out infinite;
}

.model-badge-premium i {
    font-size: 1rem;
}

.model-main-title {
    font-size: 4.5rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.model-first-name {
    background: linear-gradient(90deg, 
        var(--velvet) 0%,
        var(--rose) 50%,
        #ff6b9d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 5rem;
    font-weight: 800;
    animation: textGlow 3s ease-in-out infinite;
}

.model-last-name {
    color: white;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.ornament-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--velvet) 50%,
        transparent 100%);
}

.ornament-diamond {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform: rotate(45deg);
    animation: diamondSpin 20s linear infinite;
}

.ornament-diamond i {
    transform: rotate(-45deg);
}

/* Sección superior: Galería + Descripción */

@media (min-width: 720px) {
    .top-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .top-section {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
    }
}

/* Galería (izquierda) */
.gallery-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-gallery-container {
    width: 100%;
}

.main-gallery-frame {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    aspect-ratio: 3/4;
}

.main-gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.main-gallery-frame:hover .main-gallery-photo {
    transform: scale(1.05);
}

.photo-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(15, 23, 42, 0.3) 50%,
        rgba(15, 23, 42, 0.7) 100%);
}

.gallery-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--rose), #ff6b9d);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* GALERÍA FUNCIONAL - CSS COMPLETO Y SIMPLE */
.gallery-section {
    width: 100%;
}

.gallery-slider {
    width: 100%;
    position: relative;
}

/* CONTENEDOR PRINCIPAL DE IMAGEN GRANDE */
.gallery-main-container {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: #000;
    margin-bottom: 0;
}

/* TODAS LAS SLIDES SON ABSOLUTAS Y OCUPAN TODO */
.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* SOLO LA SLIDE ACTIVA SE VE */
.gallery-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* IMAGEN PRINCIPAL */
.main-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(15, 23, 42, 0.3) 50%,
        rgba(15, 23, 42, 0.7) 100%);
    z-index: 3;
}

/* BADGE */
.gallery-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--rose), #ff6b9d);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* CONTADOR */
.image-counter {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(15, 23, 42, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
    backdrop-filter: blur(5px);
}

/* FLECHAS */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: none;
}

.gallery-arrow:hover {
    background: rgba(124, 58, 237, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.4);
}

.gallery-prev {
    left: 1.5rem;
}

.gallery-next {
    right: 1.5rem;
}

/* CONTENEDOR DE MINIATURAS */
.gallery-thumbnails-container {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0 0 1.5rem 1.5rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
}

/* MINIATURAS */
.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.thumbnail-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item:hover {
    transform: translateY(-5px);
    border-color: var(--velvet);
}

.thumbnail-item.active {
    border-color: var(--rose);
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* INSTRUCCIONES */
.gallery-instructions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--blush);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.75rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    margin-top: 1.5rem;
}

.gallery-instructions i {
    color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-main-container {
        height: 400px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .gallery-thumbnails-container {
        padding: 1rem;
    }
    
    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-prev {
        left: 1rem;
    }
    
    .gallery-next {
        right: 1rem;
    }
    
    .gallery-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .image-counter {
        bottom: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-main-container {
        height: 350px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-instructions {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
}
/* GALERÍA FUNCIONAL - CSS COMPLETO Y SIMPLE */

/* Descripción (derecha) */
.description-section {
    display: flex;
}

.description-card {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(124, 58, 237, 0.1) 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
    backdrop-filter: blur(10px);
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--velvet) 0%,
        var(--rose) 50%,
        var(--gold) 100%);
}

.description-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.description-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rose), #ff6b9d);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.description-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.description-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-text p,
.physical-description p,
.passion-description p,
.lingerie-block p {
    color: var(--blush);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.physical-description,
.passion-description,
.personality-block,
.lingerie-block {
    background: rgba(124, 58, 237, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.physical-description h4,
.passion-description h4,
.personality-block h4,
.lingerie-block h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.physical-description h4 i,
.passion-description h4 i,
.personality-block h4 i,
.lingerie-block h4 i {
    color: var(--rose);
}

.highlight {
    color: var(--gold);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.personality-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.personality-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.5);
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    color: white;
    font-weight: 500;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.personality-tag:hover {
    background: rgba(245, 158, 11, 0.2);
    transform: translateY(-3px);
}

.personality-tag i {
    color: var(--gold);
}

.guarantee-block {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.1) 0%,
        rgba(124, 58, 237, 0.1) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    align-items: center;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--velvet));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    color: var(--blush);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.signature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rose);
    font-weight: 600;
    font-style: italic;
}

.signature i {
    font-size: 1rem;
}

/* Sección inferior: Bloques de información */
.bottom-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .bottom-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bottom-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Bloques de información */
.info-block {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%,
        rgba(124, 58, 237, 0.1) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(124, 58, 237, 0.3);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s ease;
}

.info-block:hover {
    transform: translateY(-10px);
    border-color: var(--velvet);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(90deg, 
        rgba(124, 58, 237, 0.3) 0%,
        rgba(244, 63, 94, 0.3) 100%);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.block-header i {
    color: white;
    font-size: 1.8rem;
}

.block-header h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.block-content {
    padding: 1.5rem;
}

/* Bloque de estadísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--velvet);
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stat-label i {
    color: var(--velvet);
    font-size: 1.2rem;
}

.stat-label span {
    color: var(--blush);
    font-size: 0.9rem;
}

.stat-value {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Bloque de servicios */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-item.available {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: white;
}

.service-item.not-available {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: var(--blush);
    opacity: 0.7;
}

.service-item.conditional {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--gold);
}

.service-item i {
    font-size: 1rem;
    flex-shrink: 0;
}

.service-item.available i {
    color: var(--velvet);
}

.service-item.not-available i {
    color: var(--rose);
}

.service-item.conditional i {
    color: var(--gold);
}

.service-item:hover {
    transform: translateX(5px);
}

/* Bloque de disponibilidad */
.availability-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.availability-info h4,
.price-info h4,
.contact-info h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.availability-info h4 i {
    color: var(--rose);
}

.price-info h4 i {
    color: var(--gold);
}

.contact-info h4 i {
    color: var(--velvet);
}

.availability-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.availability-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--blush);
    margin-bottom: 0.5rem;
}

.availability-info li i {
    color: var(--velvet);
    font-size: 0.9rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.price-unit {
    font-size: 1.2rem;
    color: var(--blush);
}

.price-note {
    color: var(--blush);
    font-size: 0.9rem;
    margin: 0;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.phone-btn {
    background: linear-gradient(135deg, var(--velvet), var(--rose));
    color: white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* CTA */
.profile-cta {
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.2) 0%,
        rgba(244, 63, 94, 0.2) 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.profile-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--velvet) 0%,
        var(--rose) 50%,
        #ff6b9d 100%);
}

.cta-content {
    margin-bottom: 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--blush);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--rose), #ff6b9d);
    color: white;
    box-shadow: 0 10px 20px rgba(244, 63, 94, 0.3);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(244, 63, 94, 0.5);
    background: linear-gradient(135deg, #ff6b9d, var(--rose));
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--velvet);
}

.cta-secondary:hover {
    background: var(--velvet);
    color: white;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .model-main-title {
        font-size: 3.5rem;
    }
    
    .model-first-name {
        font-size: 4rem;
    }
    
    .model-last-name {
        font-size: 3rem;
    }
    
    .description-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .model-main-title {
        font-size: 2.5rem;
    }
    
    .model-first-name {
        font-size: 3rem;
    }
    
    .model-last-name {
        font-size: 2.2rem;
    }
    
    .description-title {
        font-size: 1.6rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .personality-tags {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-btn {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .top-section {
        gap: 2rem;
    }
    
    .description-card {
        padding: 1.5rem;
    }
    
    .block-header {
        padding: 1.25rem;
    }
    
    .block-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}


/* ANIMACIÓN PING Y MEDIA QUERIES */
@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* Desktop: texto completo */
@media screen and (min-width: 768px) {
    .btn-text-desktop {
        display: inline-block !important;
    }
    .btn-text-short {
        display: none !important;
    }
}

/* Mobile: botón con texto e icono visible */
@media screen and (max-width: 767px) {
    div[style*="position: fixed; bottom: 20px; right: 20px;"] a {
        gap: 8px !important;
        padding: 8px 12px !important;
        width: auto !important;
        height: auto !important;
        min-width: 180px !important; /* Ancho mínimo para que quepa el texto */
    }
    
    div[style*="position: fixed; bottom: 20px; right: 20px;"] a span {
        display: inline-block !important;
    }
    
    div[style*="position: fixed; bottom: 20px; right: 20px;"] a span:first-child {
        margin-right: 5px !important;
    }
    
    div[style*="position: fixed; bottom: 20px; right: 20px;"] i.fa-whatsapp {
        font-size: 20px !important;
    }
}

/* Móviles muy pequeños */
@media screen and (max-width: 480px) {
    div[style*="position: fixed; bottom: 20px; right: 20px;"] a {
        min-width: 160px !important;
        padding: 6px 10px !important;
        bottom: 15px !important;
        right: 15px !important;
    }
    
    div[style*="position: fixed; bottom: 20px; right: 20px;"] a span {
        font-size: 14px !important;
    }
    
    div[style*="position: fixed; bottom: 20px; right: 20px;"] i.fa-whatsapp {
        font-size: 18px !important;
    }
}

.btn-contact {
    position: fixed; bottom: 20px; right: 20px; z-index: 9999;
}

@media (max-width: 768px) {
    .btn-text-desktop {
        display: none !important;
    }
    .btn-text-mobile {
        display: inline-block !important;
    }
}

@media (max-width: 520px) {
    .btn-contact {
        position: fixed; bottom: 10px; right: 10px; z-index: 9999;
    }
}