/* ================================
   ROLE DRILLING - ULTRA PREMIUM STYLES
   Versión 2026 con efectos avanzados
================================ */

/* === VARIABLES === */
:root {
    /* Colors - Paleta basada en el logo */
    --color-primary: #FF6B2C;
    --color-primary-dark: #E55520;
    --color-primary-light: #FF8851;
    --color-secondary: #0A0A0A;
    --color-secondary-light: #1A1A1A;
    --color-accent: #FF6B2C;
    --color-text: #2D2D2D;
    --color-text-light: #6B6B6B;
    --color-bg: #FFFFFF;
    --color-bg-light: #F9F9F9;
    --color-bg-dark: #0F0F0F;
    --color-border: #E5E5E5;
    --color-white: #FFFFFF;
    --color-black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B2C 0%, #E55520 100%);
    --gradient-secondary: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    --gradient-accent: linear-gradient(135deg, #FF8851 0%, #FF6B2C 50%, #E55520 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
    --shadow-glow: 0 0 20px rgba(255, 107, 44, 0.4);
    --shadow-glow-strong: 0 0 40px rgba(255, 107, 44, 0.6);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* === BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* === SELECTION === */
::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

::-moz-selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* === TEXT UTILITIES === */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #FFFFFF 0%, #FF8851 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === GLASS CARDS === */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.glass-card-dark {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition-slow);
    pointer-events: none;
}

.glass-card:hover .card-shine,
.glass-card-dark:hover .card-shine {
    left: 100%;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn__text {
    position: relative;
    z-index: 2;
}

.btn__icon {
    display: flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn--primary:hover .btn__icon {
    transform: translateX(4px);
}

.btn--primary:active {
    transform: translateY(-1px);
}

.btn--glow {
    position: relative;
}

.btn--glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.btn--glow:hover::before {
    opacity: 1;
}

.btn--outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    position: relative;
}

.btn--outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-white);
    transition: var(--transition);
    z-index: 0;
}

.btn--outline:hover::before {
    width: 100%;
}

.btn--outline:hover {
    color: var(--color-primary);
}

.btn--outline:hover .btn__text,
.btn--outline:hover .btn__icon {
    position: relative;
    z-index: 1;
}

.btn--outline:hover .btn__icon {
    transform: translateY(4px);
}

.btn--full {
    width: 100%;
}

/* === PRELOADER === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader__content {
    text-align: center;
}

.preloader__logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.preloader__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preloader__spinner {
    margin: 0 auto 1.5rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 44, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.preloader__text {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

/* === CUSTOM CURSOR === */
.cursor,
.cursor-trail {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s, height 0.3s, border 0.3s;
    display: none;
}

.cursor-trail {
    width: 40px;
    height: 40px;
    border-color: rgba(255, 107, 44, 0.3);
    transition: width 0.5s, height 0.5s;
}

@media (min-width: 1024px) {
    .cursor,
    .cursor-trail {
        display: block;
    }
}

/* === SCROLL PROGRESS === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: var(--z-fixed);
    transition: width 0.1s linear;
    box-shadow: var(--shadow-glow);
}

/* === HEADER / NAVIGATION === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: var(--z-fixed);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
}

.nav__logo {
    display: flex;
    align-items: center;
    z-index: 100;
}

.nav__logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.nav__logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 107, 44, 0.5));
}

.nav__list {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav__link {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav__link-text {
    position: relative;
    z-index: 2;
}

.nav__link-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 107, 44, 0.1);
    transition: var(--transition);
    z-index: 1;
}

.nav__link:hover .nav__link-hover,
.nav__link.active .nav__link-hover {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-primary);
}

.nav__link--cta {
    background: var(--gradient-primary);
    color: var(--color-white);
    position: relative;
}

.nav__link--cta:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav__cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.nav__link--cta:hover .nav__cta-glow {
    left: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 100;
}

.nav__toggle-line {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav__close {
    display: none;
    color: var(--color-white);
    cursor: pointer;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.75) 50%, rgba(255, 107, 44, 0.3) 100%);
    z-index: 2;
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 44, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 44, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    color: var(--color-primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__badge-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.hero__title {
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero__title-line {
    display: block;
}

.hero__title--accent {
    color: var(--color-primary-light);
}

.hero__title--gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero__description--highlight {
    color: var(--color-primary-light);
    font-weight: 600;
}

.hero__features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero__feature svg {
    color: var(--color-primary);
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero__scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__scroll-text {
    opacity: 0.8;
}

.hero__scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.5; }
}

/* Hero Floating Elements */
.hero__float {
    position: absolute;
    background: rgba(255, 107, 44, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.hero__float--1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero__float--2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero__float--3 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* === STATISTICS SECTION === */
.statistics {
    background: var(--color-secondary);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.stat-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.stat-card__number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card__label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.stat-card__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.2), transparent);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover .stat-card__glow {
    opacity: 1;
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-header__line {
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-header__title {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.section-header__description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header--light .section-header__subtitle {
    color: var(--color-primary-light);
}

.section-header--light .section-header__title {
    color: var(--color-white);
}

.section-header--light .section-header__description {
    color: rgba(255, 255, 255, 0.8);
}

/* === ABOUT SECTION === */
.about {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg-light);
    overflow: hidden;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.mission-vision__item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    transition: var(--transition);
}

.mission-vision__item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mission-vision__icon {
    flex-shrink: 0;
}

.icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.icon-wrapper__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.3), transparent);
    transform: translate(-50%, -50%);
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.mission-vision__content h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.75rem;
}

.mission-vision__content p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-vision__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 44, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Valores */
.valores {
    text-align: center;
}

.valores__title {
    margin-bottom: var(--spacing-xl);
    color: var(--color-secondary);
    font-size: 2.5rem;
}

.valores__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.valor {
    padding: var(--spacing-lg);
    transition: var(--transition);
    text-align: center;
}

.valor:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.valor__icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.valor__icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.valor:hover .valor__icon-wrapper img {
    transform: scale(1.1) rotate(5deg);
}

.valor__icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    transition: var(--transition);
    z-index: 1;
}

.valor:hover .valor__icon-bg {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1.2);
}

.valor h4 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.valor p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
}

.valor__hover-line {
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    margin: 1rem auto 0;
    transition: var(--transition);
}

.valor:hover .valor__hover-line {
    width: 60px;
}

/* About Background Shapes */
.about__bg-shape {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.05), transparent);
    border-radius: 50%;
    animation: float-slow 8s ease-in-out infinite;
}

.about__bg-shape--1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -200px;
}

.about__bg-shape--2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: -150px;
    animation-delay: 4s;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-50px); }
}

/* === SERVICES SECTION === */
.services {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: var(--color-secondary);
    color: var(--color-white);
    overflow: hidden;
}

.services__bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 44, 0.05) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: gradient-shift 10s ease infinite;
    z-index: 0;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.services .container {
    position: relative;
    z-index: 1;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.service {
    padding: 0;
    transition: var(--transition);
    position: relative;
}

.service:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.service__number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.service__image {
    height: 280px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: relative;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service:hover .service__image img {
    transform: scale(1.1);
}

.service__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service:hover .service__image-overlay {
    opacity: 1;
}

.service__image-icon {
    color: var(--color-white);
    transform: scale(0);
    transition: var(--transition-bounce);
}

.service:hover .service__image-icon {
    transform: scale(1);
}

.service__content {
    padding: var(--spacing-lg);
}

.service__content h3 {
    color: var(--color-primary-light);
    margin-bottom: var(--spacing-sm);
    font-size: 1.75rem;
}

.service__content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service__features {
    margin-bottom: var(--spacing-md);
}

.service__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.service__features li svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.service__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 44, 0.1);
    border: 1px solid rgba(255, 107, 44, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-primary-light);
    font-weight: 600;
    transition: var(--transition);
}

.service__cta:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: translateX(5px);
}

/* Services Particles */
.services__particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
}

.services__particle--1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.services__particle--2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.services__particle--3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-30px) translateX(30px); opacity: 1; }
}

/* === PROJECTS SECTION === */
.projects {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg-light);
    overflow: hidden;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xxl);
}

.gallery__item {
    position: relative;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery__item:hover {
    transform: translateY(-10px);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.15);
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent 60%);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--color-white);
    opacity: 0;
    transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.gallery__content h4 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.gallery__content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.gallery__view {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary-light);
    font-weight: 600;
    transition: var(--transition);
}

.gallery__view:hover {
    gap: 1rem;
}

.gallery__border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    pointer-events: none;
}

.gallery__item:hover .gallery__border {
    border-color: var(--color-primary);
}

/* Team */
.team {
    margin-top: var(--spacing-xxl);
    text-align: center;
}

.team__title {
    margin-bottom: var(--spacing-sm);
    font-size: 2.5rem;
}

.team__description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.team__item {
    padding: 0;
    transition: var(--transition);
}

.team__item:hover {
    transform: translateY(-10px);
}

.team__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
}

.team__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team__item:hover .team__image-wrapper img {
    transform: scale(1.1);
}

.team__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.team__item:hover .team__overlay {
    transform: translateY(0);
}

.team__info h4 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team__info p {
    color: var(--color-primary-light);
    margin: 0;
}

/* Projects Background Shapes */
.projects__bg-shape {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.05), transparent);
    border-radius: 50%;
    animation: float-slow 10s ease-in-out infinite;
}

.projects__bg-shape--1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
}

.projects__bg-shape--2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    animation-delay: 5s;
}

/* === CLIENTS SECTION === */
.clients {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: var(--color-secondary);
    color: var(--color-white);
    overflow: hidden;
}

.clients__bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 107, 44, 0.05) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: gradient-shift 12s ease infinite;
    z-index: 0;
}

.clients .container {
    position: relative;
    z-index: 1;
}

.clients__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.client {
    padding: var(--spacing-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.client:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.client__wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client__wrapper img {
    max-height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.client:hover .client__wrapper img {
    opacity: 1;
    filter: brightness(1) invert(0) drop-shadow(0 0 15px rgba(255, 107, 44, 0.5));
}

.client__hover {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition-bounce);
    z-index: 3;
}

.client:hover .client__hover {
    transform: translateX(-50%) scale(1);
    bottom: -40px;
}

/* Trust Badge */
.clients__trust {
    margin-top: var(--spacing-xxl);
}

.clients__trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    max-width: 700px;
    margin: 0 auto;
}

.clients__trust-badge svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.clients__trust-content h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.clients__trust-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Clients Particles */
.clients__particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: particle-float 5s ease-in-out infinite;
    opacity: 0.5;
}

.clients__particle--1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.clients__particle--2 {
    top: 70%;
    right: 12%;
    animation-delay: 2s;
}

.clients__particle--3 {
    bottom: 20%;
    left: 25%;
    animation-delay: 4s;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg);
}

.testimonials__content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
}

.testimonials__quote {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: rgba(255, 107, 44, 0.2);
    z-index: 1;
}

.testimonials__content img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    margin: 0 auto;
}

.testimonials__decoration {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonials__star {
    color: var(--color-primary);
    font-size: 1.5rem;
    animation: star-twinkle 2s ease-in-out infinite;
}

.testimonials__star:nth-child(1) { animation-delay: 0s; }
.testimonials__star:nth-child(2) { animation-delay: 0.2s; }
.testimonials__star:nth-child(3) { animation-delay: 0.4s; }
.testimonials__star:nth-child(4) { animation-delay: 0.6s; }
.testimonials__star:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* === CONTACT SECTION === */
.contact {
    position: relative;
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg-light);
    overflow: hidden;
}

.contact__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.contact__info {
    padding: var(--spacing-lg);
}

.contact__info h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
    font-size: 2rem;
}

.contact__item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact__item:hover {
    background: rgba(255, 107, 44, 0.05);
    transform: translateX(10px);
}

.contact__item-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--color-white);
}

.contact__item-content h4 {
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact__item-content p {
    color: var(--color-text-light);
    margin: 0;
}

.contact__item-content a {
    color: var(--color-text-light);
    transition: var(--transition);
}

.contact__item-content a:hover {
    color: var(--color-primary);
}

.contact__social {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.contact__social h4 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.contact__social-links {
    display: flex;
    gap: 1rem;
}

.contact__social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--color-white);
    transition: var(--transition);
}

.contact__social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Contact Form */
.contact__form {
    padding: var(--spacing-lg);
}

.form__group {
    margin-bottom: var(--spacing-md);
}

.form__group--full {
    grid-column: 1 / -1;
}

.form__group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.form__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form__input-wrapper svg {
    position: absolute;
    left: 1rem;
    color: var(--color-text-light);
    pointer-events: none;
    z-index: 2;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
}

.form__group textarea {
    resize: vertical;
    min-height: 150px;
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 44, 0.1);
}

.form__privacy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
    padding: 1rem;
    background: rgba(255, 107, 44, 0.05);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.form__privacy svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

/* Contact Background Shapes */
.contact__bg-shape {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.05), transparent);
    border-radius: 50%;
    animation: float-slow 12s ease-in-out infinite;
}

.contact__bg-shape--1 {
    width: 450px;
    height: 450px;
    top: -225px;
    left: -225px;
}

.contact__bg-shape--2 {
    width: 350px;
    height: 350px;
    bottom: -175px;
    right: -175px;
    animation-delay: 6s;
}

/* === FOOTER === */
.footer {
    position: relative;
    background: var(--color-secondary);
    color: var(--color-white);
    padding-top: var(--spacing-xxl);
}

.footer__top {
    padding-bottom: var(--spacing-xl);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer__logo {
    height: 70px;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 0 15px rgba(255, 107, 44, 0.3));
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer__certification {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 107, 44, 0.1);
    border: 1px solid rgba(255, 107, 44, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-primary-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer__links h4,
.footer__services h4,
.footer__contact h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-light);
    font-size: 1.25rem;
}

.footer__links ul,
.footer__services ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a,
.footer__services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer__links a:hover,
.footer__services a:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact-item svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.footer__contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__contact-item a:hover {
    color: var(--color-white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) 0;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer__bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer__bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__bottom-links a:hover {
    color: var(--color-primary);
}

.footer__wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer__wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    transform: rotateY(180deg);
}

.footer__wave path {
    fill: var(--color-bg-light);
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: var(--z-sticky);
    box-shadow: var(--shadow-lg);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.scroll-top__progress {
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border: 3px solid transparent;
    border-top-color: var(--color-primary-light);
    border-radius: 50%;
    transform: rotate(-90deg);
    transition: var(--transition-fast);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: var(--z-sticky);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-float__pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* === AOS ANIMATIONS === */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* === UTILITIES === */
.no-scroll {
    overflow: hidden;
}
