/* Variables y reset - PALETA SOLICITADA */
:root {
    /* Colores de la paleta */
    --black: #000000;
    --pink: #06b2f1;
    --violet: #010655;
    --gray-dark: #1f3428;
    --white: #fffbfb;
    --purple: #adfbff;
    --red: #37ff00; 
    --blue: #37ff00;   
    
    /* Variantes de colores */
    --black-dark: #3281ff;
    --black-light: #b8f407;
    --pink-dark: #2b0200;
    --pink-light: #06b2f1;
    --violet-dark: #2d32c7;
    --violet-light: #5ea9f0;
    --gray: #654040;
    --gray-light: #6d3e3e;
    
    /* Gradientes vibrantes */
    --gradient-primary: linear-gradient(135deg, var(--black), var(--violet));
    --gradient-secondary: linear-gradient(135deg, var(--pink), var(--violet));
    --gradient-alternative: linear-gradient(135deg, var(--violet), var(--pink));
    --gradient-warning: linear-gradient(135deg, var(--pink), var(--violet-dark));
    --gradient-title: linear-gradient(135deg, var(--purple), var(--red), var(--blue));
    
    --shadow: 0 10px 30px rgba(16, 17, 22, 0.15);
    --shadow-hover: 0 20px 40px rgba(16, 17, 22, 0.2);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== */
/* PRELOADER MODERNO - PALETA VALDRYAINC */
/* ==================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

/* Efecto de partículas de fondo */
.preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(131, 56, 236, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(6, 178, 241, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 40% 80%, rgba(247, 10, 66, 0.1) 0%, transparent 20%);
    animation: particle-move 20s infinite linear;
}

@keyframes particle-move {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Logo del preloader */
.preloader-logo {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: logo-appear 1s ease-out 0.5s forwards;
    z-index: 2;
}

.preloader-logo-img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--pink-light));
    animation: pulse-logo 2s infinite ease-in-out;
}



/* Contenedor de la barra de progreso */
.preloader-container {
    width: 280px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(131, 56, 236, 0.2);
}

/* Barra de progreso con gradiente */
.preloader-line {
    position: absolute;
    height: 100%;
    width: 40%;
    background: var(--gradient-secondary);
    border-radius: 10px;
    animation: preloaderAnimation 1.8s infinite cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 
        0 0 20px rgba(131, 56, 236, 0.5),
        0 0 40px rgba(6, 178, 241, 0.3);
}

/* Efecto de partícula que sigue la barra */
.preloader-line::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -5px;
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    animation: particle-follow 1.8s infinite cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 0 10px var(--white), 0 0 20px var(--white);
}

/* Texto de carga */
.preloader-text {
    color: var(--white);
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    opacity: 0;
    animation: text-appear 0.5s ease-out 1s forwards;
}

/* Efecto de máquina de escribir */
.preloader-text::after {
    content: '|';
    animation: typing 1s infinite;
    opacity: 0;
}

/* Porcentaje de carga (opcional) */
.preloader-percentage {
    color: var(--white);
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.6;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ==================== */
/* ANIMACIONES DEL PRELOADER */
/* ==================== */

@keyframes preloaderAnimation {
    0% { left: -40%; }
    100% { left: 140%; }
}

@keyframes particle-follow {
    0% {
        transform: translateX(0) scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: translateX(0) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateX(0) scale(0.8);
        opacity: 0.7;
    }
}

@keyframes logo-appear {
    0% { 
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse-logo {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.05); 
        opacity: 0.9; 
    }
}

@keyframes logo-glow {
    0% { 
        opacity: 0.3; 
        transform: translate(-50%, -50%) scale(0.95); 
    }
    100% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1.05); 
    }
}

@keyframes text-appear {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 0.8;
        transform: translateY(0);
    }
}

@keyframes typing {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* ==================== */
/* EFECTOS DE SALIDA */
/* ==================== */

.preloader.loaded {
    animation: preloader-out 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.preloader.loaded .preloader-logo {
    animation: logo-out 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.preloader.loaded .preloader-container,
.preloader.loaded .preloader-text,
.preloader.loaded .preloader-percentage {
    animation: fade-out 0.5s ease-out forwards;
}

@keyframes preloader-out {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
        visibility: hidden;
    }
}

@keyframes logo-out {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

@keyframes fade-out {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */

@media (max-width: 768px) {
    .preloader-logo-img {
        width: 120px;
    }
    
    .preloader-logo::after {
        width: 150px;
        height: 150px;
    }
    
    .preloader-container {
        width: 220px;
    }
    
    .preloader-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .preloader-logo-img {
        width: 100px;
    }
    
    .preloader-logo::after {
        width: 130px;
        height: 130px;
    }
    
    .preloader-container {
        width: 180px;
        height: 3px;
    }
}

/* Cursor personalizado */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--violet);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, transform 0.3s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--violet);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

/* Header - ACTUALIZADO CON PREFIJOS WEBKIT */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    /* Prefijos para backdrop-filter */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(16, 17, 22, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h2 {
    font-size: 1.8rem;
    align-items: center;
    font-weight: 800;
    color: var(--black);
}

.logo span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-list li {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--violet);
}

.nav-link.active {
    color: var(--violet);
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--gradient-alternative);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    margin: 2px 0;
    transition: var(--transition);
}

/* Buttons - ESTILOS VIBRANTES */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn i {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: var(--transition);
}

.btn-primary::before {
    background: var(--gradient-secondary);
    opacity: 1;
}

.btn-primary {
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary::before {
    background: var(--gradient-alternative);
    opacity: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    color: var(--white);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    color: var(--violet);
    border: 2px solid var(--violet);
}

.btn-outline:hover {
    background: var(--violet);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline:hover i {
    transform: translateX(5px);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* ==================== */
/* HERO SECTION MEJORADO */
/* ==================== */
.hero-enhanced {
    padding: 120px 0 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.hero-content-enhanced {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 0 20px;
    width: 100%;
    gap: 40px;
}
.hero-text-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-title-enhanced {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
                
}

.hero-title-enhanced .title-line {
    color: #ffffff; 
        text-shadow: 0 0 10px rgba(7, 189, 255, 0.5),
                 0 0 20px rgba(7, 189, 255, 0.3),
                 0 0 30px rgba(7, 189, 255, 0.2);
    animation: title-glow 2s ease-in-out infinite alternate;
    
}
.hero-title-enhanced .text-gradient {
    background: var(--gradient-title);
    -webkit-background-clip: text;
    background-clip: text;
    color:rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
text-shadow:

                 0 0 30px rgba(17, 17, 17, 0.5);
 
}
.hero-title-enhanced .text-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}
.hero-enhanced:hover .hero-title-enhanced .text-gradient::after {
    transform: scaleX(1);
    transform-origin: left;
}
.hero-description-enhanced {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 700;
}
.hero-buttons-enhanced {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.hero-visual-enhanced {
    flex: 1;
    position: relative;
    height: 400px;
    margin-top: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.hero-visual-container {
    position: relative;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.visual-element-enhanced {
    width: 450px; height: 450px;
    background: var(--gradient-secondary);
    border-radius: 40% 30% 90% 50% / 10% 10% 10% 10%;
    position: relative;
    animation: morphing 8s ease-in-out infinite;
    opacity: 0.8;
    filter: blur(20px);
    z-index: 1;
}
@keyframes morphing {
    0%, 100% { border-radius: 40% 30% 90% 50% / 10% 10% 10% 10%; }
    50% { border-radius: 50% 60% 40% 80% / 30% 40% 20% 30%; }
}
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    border: 1px solid rgba(131,56,236,0.1);
    transition: all 0.3s ease;

}
.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(16,17,22,0.2);
}
.floating-card i {
    font-size: 1.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.floating-card p {
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

/* Floating cards: unique positions and non-overlapping paths */
.card-1 {
    top: 0%; left: 50%;
    transform: translate(-50%, 0);
    animation: float-card-1 14s linear infinite;
}
.card-2 {
    top: 50%; left: 100%;
    transform: translate(-100%, -50%);
    animation: float-card-2 14s linear infinite;
}
.card-3 {
    bottom: 0%; left: 50%;
    transform: translate(-50%, 0);
    animation: float-card-3 14s linear infinite;
}
.card-4 {
    top: 50%; left: 0%;
    transform: translate(0, -50%);
    animation: float-card-4 14s linear infinite;
}

/* Keyframes: each card moves in a quarter arc, never crossing the center */
@keyframes float-card-1 {
    0%,100% { transform: translate(-50%, 0) rotate(-8deg);}
    25% { transform: translate(-60%, -20px) rotate(0deg);}
    50% { transform: translate(-50%, -40px) rotate(8deg);}
    75% { transform: translate(-40%, -20px) rotate(0deg);}
}
@keyframes float-card-2 {
    0%,100% { transform: translate(-100%, -50%) rotate(8deg);}
    25% { transform: translate(-110%, -60%) rotate(0deg);}
    50% { transform: translate(-100%, -70%) rotate(-8deg);}
    75% { transform: translate(-90%, -60%) rotate(0deg);}
}
@keyframes float-card-3 {
    0%,100% { transform: translate(-50%, 0) rotate(-8deg);}
    25% { transform: translate(-60%, 20px) rotate(0deg);}
    50% { transform: translate(-50%, 40px) rotate(8deg);}
    75% { transform: translate(-40%, 20px) rotate(0deg);}
}
@keyframes float-card-4 {
    0%,100% { transform: translate(0, -50%) rotate(8deg);}
    25% { transform: translate(10%, -60%) rotate(0deg);}
    50% { transform: translate(0, -70%) rotate(-8deg);}
    75% { transform: translate(-10%, -60%) rotate(0deg);}
}

/* Sections comunes */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.center {
    text-align: center;
    margin-top: 50px;
}

/* Services Preview */
.services-preview {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(131, 56, 236, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-secondary);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
    border-color: transparent;
}

.service-card:hover::before {
    height: 100%;
    opacity: 1;
}

.service-card:hover .service-icon {
    background: var(--white);
    color: var(--violet);
}

.service-card:hover h3 {
    color: var(--white);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.service-card:hover .service-link {
    color: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    margin-bottom: 25px;
    color: var(--gray-dark);
    transition: var(--transition);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--violet);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Portfolio Preview */
.portfolio-preview {
    background-color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(131, 56, 236, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f1f5f9, #e2e8f0);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(152, 211, 234, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--violet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.action-btn:hover {
    transform: translateY(-5px);
    background: var(--black);
    color: var(--white);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-tags span {
    background: rgba(131, 56, 236, 0.1);
    color: var(--violet);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Stats Section */
.stats {
    background: var(--black);
    color: var(--white);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
}

/* CTA Section */
.cta {
    background: var(--gradient-secondary);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Footer - ACTUALIZADO CON LA PALETA SOLICITADA */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section h3 span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--pink);
}

.footer-section i {
    margin-right: 10px;
    color: var(--pink);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--black);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animaciones AOS */
[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ESTILOS ESPECÍFICOS PARA PÁGINAS */

/* Services Detail */
.services-detail {
    padding: 100px 0;
    background: var(--white);
}

.services-tabs {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(131, 56, 236, 0.1);
}

.tab-btn {
    padding: 15px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--gray-dark);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--violet);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn:hover {
    color: var(--violet);
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 500px;
}

.tab-image {
    width: 80%;
    height: 80%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}

.tab-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tab-img-Portfolio {
    width: 100%;
    height: 100%;
    object-fit:fill;
    transition: transform 0.5s ease;
}

.tab-content-inner:hover .tab-img {
    transform: scale(1.05);
}

.tab-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.tab-info p {
    margin-bottom: 25px;
    color: var(--gray-dark);
    line-height: 1.7;
}

.tab-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.tab-info ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tab-info ul li i {
    color: var(--pink);
    margin-right: 10px;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(131, 56, 236, 0.1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.process-step p {
    color: var(--gray-dark);
}

/* Portfolio Filter */
.portfolio-filter {
    padding: 50px 0;
    background: var(--white);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--violet-light);
    color: var(--violet);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gradient-secondary);
    color: var(--white);
    border-color: transparent;
}

.portfolio-grid-section {
    padding: 50px 0 100px;
    background: var(--white);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(131, 56, 236, 0.1);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.testimonial-text {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(131, 56, 236, 0.05);
    border-radius: var(--radius);
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--pink-light);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}

.testimonial-text p {
    color: var(--black);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-info h4 {
    color: var(--black);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--black);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-dark);
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.about-stat .stat-label {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Values Section */
.values {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(131, 56, 236, 0.1);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.value-item p {
    color: var(--gray-dark);
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(131, 56, 236, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-social {
    opacity: 1;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--violet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-5px);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    color: var(--black);
    margin-bottom: 5px;
}
.member-info p {
    color: var(--gray-dark);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.contact-info p {
    color: var(--gray-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-text h3 {
    color: var(--black);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-text p {
    margin: 0;
    color: var(--gray-dark);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--black);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(131, 56, 236, 0.1);
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--white);
}

.map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(131, 56, 236, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-dark);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--violet);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(131, 56, 236, 0.05);
}

.faq-question h3 {
    color: var(--black);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--violet);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    color: var(--gray-dark);
    margin: 0;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .visual-element {
        width: 300px;
        height: 300px;
    }
    
    .tab-content-inner {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 80px);
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 40px 20px;
        z-index: 999;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        width: 90%;
        max-width: 260px;
        font-size: 0.95rem;
        padding: 10px 12px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-visual-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        position: static;
        width: 100%;
        height: auto;
        justify-items: center;
        align-items: center;
    }
    .floating-card {
        position: static;
        margin-bottom: 0;
        animation: none;
        width: 98%;
        max-width: 140px;
        font-size: 0.8rem;
        padding: 8px 8px;
    }
    .card-1, .card-2, .card-3, .card-4 {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }
    
    .visual-element-enhanced {
        display: none;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content-enhanced {
        flex-direction: column;
        gap: 30px;
    }
    .hero-visual-enhanced {
        height: 300px;
    }
    .visual-element-enhanced {
        width: 300px; height: 300px;
    }
    .tab-content-inner {
        grid-template-columns: 1fr;
        min-height: 300px;
    }
}
@media (max-width: 600px) {
    .container { padding: 0 10px; }
    .hero-title-enhanced { font-size: 2.2rem; }
    .hero-description-enhanced { font-size: 1rem; }
    .footer-links { gap: 10px; }
    .footer-logo { font-size: 1.1rem; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
}



/* ==================== */
/* SELECTOR DE IDIOMAS CON IMÁGENES LOCALES */
/* ==================== */

/* ==================== */
/* SELECTOR DE IDIOMAS CON IMÁGENES LOCALES - MEJORADO */
/* ==================== */

.lang-switcher-container {
    position: relative;
    margin-left: 20px;
}

.lang-switcher {
    position:relative;
    width: 80px;
    cursor:pointer;
    z-index: 1001;
    left: 140px;
   
}

.selected-lang {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    gap: 15px;
    min-width: auto;
}

.selected-lang:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}
.lang-text   {
    display: flex;
    color: var(--pink);
    align-items: center;
    gap: 6px;
}
.lang-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 120px;
    background: rgba(19, 23, 34, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 6px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.lang-switcher:hover .lang-list {
    opacity: 0.85;
    visibility: visible;
    transform: translateY(0);
}

.lang-list li {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    transition: all 0.2s ease;
    color: white;
    font-weight: 500;
    gap: 10px;
    white-space: nowrap;
}

.lang-list li:hover {
    background: rgba(255, 255, 255, 0.1);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.2s ease;
    object-fit: cover;
    flex-shrink: 0;
}

.lang-list li:hover .flag-icon {
    transform: scale(1.2);
}

.selected-lang .flag-icon {
    width: 18px;
    height: 13px;
}

.lang-code {
    font-size: 14px;
    font-weight: 600;
}

.lang-name {
    font-size: 14px;
}

.selected-lang i {
    font-size: 11px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.lang-switcher:hover .selected-lang i {
    transform: rotate(180deg);
}

/* Efecto de aparición suave para los elementos de la lista */
.lang-list li {
    opacity: 0.5;
    transform: translateX(-8px);
    transition: all 0.5s ease;
}

.lang-switcher:hover .lang-list li {
    opacity: 1;
    transform: translateX(0);
}

.lang-list li:nth-child(1) {
    transition-delay: 0.05s;
}

.lang-list li:nth-child(2) {
    transition-delay: 0.1s;
}

.lang-list li:nth-child(3) {
    transition-delay: 0.15s;
}

/* Responsive */
@media (max-width: 768px) {
    .lang-switcher-container {
        margin-left: 0;
        margin-top: 12px;
    }
    
    .lang-switcher {
        width: 100%;
        left: 0;
    }
    
    .selected-lang {
        justify-content: center;
        padding: 10px 15px;
    }
    
    .lang-list {
        width: 100%;
        left: 0;
    }
    
    .lang-list li {
        justify-content: center;
    }
}

/* Para móviles muy pequeños */
@media (max-width: 360px) {
    .selected-lang {
        padding: 8px 10px;
    }
    
    .lang-code {
        display: none;
    }
    
    .selected-lang .flag-icon {
        margin-right: 0;
    }
}
/* Estilos para el logo PNG */
.logo-png {
    height: 70px; /* Ajusta según necesites */
    width:auto;
    transition: var(--transition);
}

/* Efecto hover para el logo */
.logo-png:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .logo-png {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-png {
        height: 60px;
    }
}
/* Footer Legal */
.footer-legal {
    margin-bottom: 20px;
}

.footer-legal h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: white;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-legal li {
    margin-bottom: 8px;
}

.footer-legal a {
    color: #ddd;
    text-decoration: none;
}

.footer-legal a:hover {
    color: white;
    text-decoration: underline;
}

/* Banner de Cookies */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    color: var(--white);
    padding: 20px;
    text-align: center;
    display: none;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-notice-content p {
    margin: 0;
    flex: 1;
    text-align: left;
    color: var(--white);
    font-size: 0.9rem;
}

.cookie-notice-content a {
    color: var(--pink-light);
    text-decoration: underline;
    transition: var(--transition);
}

.cookie-notice-content a:hover {
    color: var(--white);
}

.cookie-accept-btn {
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Texto en formularios */
.form-legal-text {
    font-size: 0.9rem;
    color: #666;
    margin: 15px 0;
}

.form-legal-text a {
    color: #3498db;
    text-decoration: none;
}

.form-legal-text a:hover {
    text-decoration: underline;
}
/* Responsive para móviles */
@media (max-width: 768px) {
    .cookie-notice-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-notice-content p {
        text-align: center;
    }
    
    #cookie-notice {
        padding: 15px;
    }
}
/* ==================== */
/* PRIVACY POLICY STYLES */
/* ==================== */

.privacy-policy {
    padding: 140px 0 80px;
    background-color: var(--white);
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--black);
    position: relative;
    display: inline-block;
}

.privacy-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.privacy-meta {
    font-size: 1.1rem;
    color: var(--gray-dark);
}

.privacy-meta strong {
    color: var(--black);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(131, 56, 236, 0.1);
    transition: var(--transition);
}

.policy-section:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--violet);
    border-bottom: 2px solid var(--pink-light);
    padding-bottom: 10px;
}

.policy-section p {
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    color: var(--gray-dark);
}

.policy-section li::before {
    content: '•';
    color: var(--pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.company-info {
    background: rgba(131, 56, 236, 0.05);
    padding: 20px;
    border-radius: var(--radius);
    margin: 20px 0;
    border-left: 4px solid var(--violet);
}

.company-info p {
    margin-bottom: 10px;
}

.section-divider {
    border: none;
    height: 2px;
    background: var(--gradient-secondary);
    margin: 40px 0;
    opacity: 0.3;
}

.contact-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.contact-section h2 {
    color: var(--white);
    border-bottom-color: var(--pink);
}

.contact-section p {
    color: var(--white);
}

.contact-section a {
    color: var(--white);
    text-decoration: underline;
}

.contact-section a:hover {
    color: var(--pink-light);
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 120px 0 60px;
    }
    
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-section {
        padding: 15px;
    }
    
    .company-info {
        padding: 15px;
    }
}
