/* ========================================
   VARIABLES & RESET
   ======================================== */
:root {
    --color-space: #0a0e27;
    --color-space-light: #1a1f3a;
    --color-cosmic: #2d1b4e;
    --color-nebula: #4a148c;
    --color-star: #ffd700;
    --color-accent: #00d4ff;
    --color-accent-bright: #7c4dff;
    --color-text: #e8eaf6;
    --color-text-dim: #b0b8d4;
    --color-white: #ffffff;
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Crimson Text', serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-space);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========================================
   ANIMATED STARFIELD BACKGROUND
   ======================================== */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, var(--color-space-light) 0%, var(--color-space) 100%);
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 60px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 90px 10px, white, transparent);
    background-size: 200px 200px;
    animation: twinkle 3s infinite;
    opacity: 0.4;
}

.stars2 {
    background-image: 
        radial-gradient(1px 1px at 40px 60px, white, transparent),
        radial-gradient(1px 1px at 110px 90px, white, transparent),
        radial-gradient(1px 1px at 160px 40px, white, transparent);
    background-size: 250px 250px;
    animation: twinkle 4s infinite;
    opacity: 0.3;
}

.stars3 {
    background-image: 
        radial-gradient(1px 1px at 75px 125px, white, transparent),
        radial-gradient(1px 1px at 190px 20px, white, transparent);
    background-size: 300px 300px;
    animation: twinkle 5s infinite;
    opacity: 0.2;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    backdrop-filter: blur(20px);
    background: rgba(10, 14, 39, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.logo-image {
    /* Tamanho responsivo usando clamp (mínimo, preferido, máximo) */
    height: clamp(50px, 8vw, 90px);
    width: auto;
    transition: var(--transition-fast);
    animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.9)) 
                drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
        transform: scale(1.05);
    }
}

.logo-image:hover {
    animation: none;
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1)) 
            drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-star);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 10px var(--color-star), 0 0 20px var(--color-star); }
    50% { text-shadow: 0 0 20px var(--color-star), 0 0 40px var(--color-star); }
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-text {
    display: none; /* Esconde o texto pois a logo já tem o nome */
}

/* Ajustes específicos por breakpoint */
@media (min-width: 1920px) {
    /* Telas 4K e ultra-wide */
    .logo-image {
        height: 90px;
    }
}

@media (min-width: 1400px) and (max-width: 1919px) {
    /* Desktop grande */
    .logo-image {
        height: 80px;
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    /* Desktop médio / Laptop */
    .logo-image {
        height: 70px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* Tablet landscape */
    .logo-image {
        height: 60px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    /* Tablet portrait / Celular grande landscape */
    .logo-image {
        height: 55px;
    }
}

@media (max-width: 480px) {
    /* Celular portrait */
    .logo-image {
        height: 50px;
    }
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    color: var(--color-text);
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-bright));
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-white);
}

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

.nav-link-cta {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-bright));
    border-radius: 50px;
    color: var(--color-white);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-fast);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-bright));
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 20, 140, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}


.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-bright), var(--color-star));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-dim);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

/* ========================================
   SECTIONS
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   EXPERIENCE CARDS
   ======================================== */
.experience {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 31, 58, 0.3) 50%, transparent 100%);
}

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

.experience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.experience-card[data-delay="0"] { animation-delay: 0.1s; }
.experience-card[data-delay="1"] { animation-delay: 0.2s; }
.experience-card[data-delay="2"] { animation-delay: 0.3s; }
.experience-card[data-delay="3"] { animation-delay: 0.4s; }

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

.experience-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.card-text {
    font-size: 1.05rem;
    color: var(--color-text-dim);
    line-height: 1.7;
}

/* ========================================
   HIGHLIGHTS SECTION
   ======================================== */
.highlights {
    background: radial-gradient(circle at 80% 50%, rgba(74, 20, 140, 0.15) 0%, transparent 60%);
}

.highlights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlights-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.highlight-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
}

.highlight-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.highlight-content p {
    color: var(--color-text-dim);
    line-height: 1.7;
}

.highlights-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 77, 255, 0.2));
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.image-frame:hover::before {
    opacity: 1;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 31, 58, 0.3) 50%, transparent 100%);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-bright);
    box-shadow: 0 15px 40px rgba(124, 77, 255, 0.2);
}

.testimonial-stars {
    color: var(--color-star);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--color-star);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-family: var(--font-display);
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--color-white);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-preview {
    overflow: hidden;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.95rem;
    color: var(--color-text-dim);
}

.gallery-cta {
    text-align: center;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ========================================
   FLASH MESSAGES
   ======================================== */
.flash-container {
    position: fixed;
    top: 6rem;
    right: 2rem;
    z-index: 2000;
    max-width: 400px;
}

.flash {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(20px);
    border: 1px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.flash-success {
    background: rgba(0, 212, 0, 0.1);
    border-color: rgba(0, 212, 0, 0.3);
    color: #00ff00;
}

.flash-error {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
}

.flash-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 39, 0.8));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-subtitle {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-text {
    color: var(--color-text-dim);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-dim);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 6rem 1rem 4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .highlights-content {
        grid-template-columns: 1fr;
    }
    
    .experience-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Z-INDEX FIX - OVERLAY CORRECTION
   ======================================== */
main {
    position: relative;
    z-index: 1;
    background: var(--color-space);
    min-height: 100vh;
}

/* Flash messages above content but below modals */
.flash-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

/* ========================================
   CRITICAL Z-INDEX FIX - VERSÃO FINAL
   SOLUÇÃO DEFINITIVA PARA OVERLAY
   ======================================== */

/* Page wrapper - contém todo o conteúdo */
.page-wrapper {
    position: relative;
    z-index: 100;
    background: var(--color-space);
    min-height: 100vh;
}

/* Main content com fundo sólido e z-index adequado */
.main-content {
    position: relative;
    z-index: 100;
    background: var(--color-space);
    min-height: 100vh;
}

/* Sections dentro do contexto correto - SEM z-index alto */
section {
    position: relative;
    z-index: 1 !important;
    background: transparent;
}

/* Hero também dentro do contexto - SEM z-index alto */
.hero {
    position: relative;
    z-index: 1 !important;
}

/* Navbar SEMPRE no topo - z-index mais alto */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
}

/* Stars container sempre no fundo - z-index baixo */
.stars-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Flash messages acima de tudo */
.flash-container {
    position: fixed !important;
    top: 100px !important;
    right: 20px !important;
    z-index: 100000 !important;
    max-width: 400px;
}

/* Footer dentro do wrapper */
.footer {
    position: relative;
    z-index: 1;
}

/* Garantir que body tenha contexto de empilhamento */
body {
    position: relative;
    isolation: isolate;
}

/* IMPORTANTE: Remover transform de sections que podem causar novo contexto */
section {
    transform: none !important;
}
