/* ==========================================
   ELUAN SCHMIDT - ADVOCACIA CRIMINAL
   Stylesheet Principal
   ========================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Colors */
    --color-bg-light: #f1f0f0;
    --color-white: #FFFFFF;
    --color-text-dark: #16212c;
    --color-gradient-start: #16212c;
    --color-gradient-end: #05343c;
    --color-gold-start: #ebc45e;
    --color-gold-end: #a06b25;
    --color-whatsapp-start: #25D366;
    --color-whatsapp-end: #349742;
    
    /* Typography */
    --font-heading: 'Sansation', 'Jura', sans-serif;
    --font-body: 'Jura', sans-serif;
    
    /* Spacing */
    --section-padding-desktop: 80px;
    --section-padding-mobile: 60px;
    --container-padding: 60px;
    --container-padding-mobile: 40px;
    
    /* Border Radius */
    --radius-large: 20px;
    --radius-medium: 12px;
    --radius-small: 8px;
    
    /* Shadows */
    --shadow-card: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-navbar: 0 2px 10px rgba(0,0,0,0.15);
    --shadow-button: 0 6px 12px rgba(37,211,102,0.3);
    --shadow-float: 0 4px 12px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-fast: 0.2s ease;
    --transition-navbar: 0.3s ease-in-out;
    --transition-accordion: 0.4s ease;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--color-text-dark);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

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

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    background: linear-gradient(to right,var(--color-gradient-start), var(--color-gradient-end), var(--color-gold-start), var(--color-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-title3 {
    font-size: 2.5rem;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.section-title1 {
    font-size: 2.5rem;
    background: linear-gradient(to right,var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-title2 {
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    opacity: 0.8;
}

.section-subtitle3 {
    font-size: 1.8rem;
    opacity: 0.8;
    background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-small);
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn i {
    font-size: 1.25rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-whatsapp-start), var(--color-whatsapp-end));
    color: var(--color-white);
}

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

.btn-submit {
    width: 100%;
    background: var(--color-whatsapp-start);
    color: var(--color-white);
    justify-content: center;
}

.btn-submit:hover {
    background: var(--color-whatsapp-end);
    transform: translateY(-2px);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-navbar);
    background: transparent;
}

.navbar.scrolled {
    background: var(--color-gradient-start);
    box-shadow: var(--shadow-navbar);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 100px;
    transition: var(--transition-navbar);
}

.navbar.scrolled .logo img {
    height: 100px;
}

.nav-menu {
    margin-left: 0;
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
    transition: var(--transition-base);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    /* Logo menor no mobile */
    .logo img {
        height: 50px;
    }
    
    .navbar.scrolled .logo img {
        height: 40px;
    }
    .nav-wrapper {
        padding: 0 20px; /* garante espaçamento nas laterais */
    }
    /* Mostra hamburger */
    .hamburger {
    display: flex;
    margin-left: auto;
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    background: lime !important;
    z-index: 99999 !important;
    border: 5px solid red !important;

    }
    
    /* Esconde e transforma menu em sidebar */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--color-gradient-start);
        flex-direction: column;
        padding: 100px 30px;
        gap: 30px;
        transition: var(--transition-navbar);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    padding: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-gradient-start), var(--color-gradient-end));
    opacity: 0.75;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    min-height: 100vh;
    position: relative; /* ADICIONA */
}

.hero-text {
    color: var(--color-white);
     align-self: center;
}

.hero-title {
    font-size: 4rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-image {
    position: absolute; /* ADICIONA */
    bottom: 0;          /* ADICIONA */
    right: 0;           /* ADICIONA */
    width: 50%;         /* ADICIONA */
    height: 100%;       /* ADICIONA */
    display: flex;      /* ADICIONA */
    align-items: flex-end; /* ADICIONA */
}

.hero-image img {
    width: 95%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    align-self: flex-end;
}


@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-image {
        display: none; /* Ocultar imagem no mobile */
    }

    .logo img {
        height: 60px; /* metade de 100px */
    }
    
    .navbar.scrolled .logo img {
        height: 30px; /* metade mantém proporção */
    }

}


.hero {
    padding: 140px 0 0; /* padding top maior pra não sobrepor logo */
    align-items: center; /* VOLTA align-items */
}

.hero-content {
    gap: 40px; /* reduz gap */
    /* REMOVE min-height e position */
}

.hero-text {
    max-width: 600px; /* limita largura do texto */
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem); /* responsivo fluido */
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 2rem); /* responsivo fluido */
}

.hero-image {
    justify-self: end; /* alinha à direita */
    align-self: flex-end; /* cola no fundo */
    width: 100%;
    max-width: 600px; /* limita tamanho máximo */
    /* REMOVE position absolute */
}

/* ADICIONA breakpoint intermediário */
@media (max-width: 1600px) {
    .hero-title {
        font-size: clamp(1.75rem, 4vw, 3rem);
    }
}
/* ==================== BIO SECTION ==================== */
.bio-section {
    padding: var(--section-padding-desktop) 0;
    background: var(--color-bg-light);
}

.bio-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.bio-image {
    position: relative;
}

.bio-image img {
    width: 100%;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.bio-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    padding: 15px 30px;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-card);
    text-align: center;
    min-width: 250px;
}

.bio-badge span {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
}

.oab-number {
    font-size: 0.9rem;
    color: var(--color-gold-end);
    margin-top: 5px;
}

.bio-content {
    padding-right: 40px;
    background: var(--color-gradient-start);
    border-radius: 20px;
}

.section-header {
    margin-bottom: 2rem;
}

.bio-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 1.15rem;
    color: white;
    padding: 0 1rem 0 1rem;
}

.bio-text strong {
    font-weight: 600;
    color: var(--color-white);
    padding-top: -1rem;
}

/* Stats */
.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
    margin-left: 2rem;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-card);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .bio-section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .bio-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bio-content {
        padding-right: 0;
    }
    
    .bio-text p {
        font-size: 1rem;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==================== ESPECIALIDADES SECTION ==================== */
.especialidades-section {
    padding: var(--section-padding-desktop) 0;
    background: var(--color-white);
}

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

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.especialidade-card {
    background: var(--color-bg-light);
    padding: 40px 30px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

.especialidade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-white);
    stroke-width: 2;
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .especialidades-section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .especialidades-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .especialidade-card {
        padding: 30px 25px;
    }
}

/* ==================== CTA DARK SECTION ==================== */
.cta-dark {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(22, 33, 44, 0.92), rgba(5, 52, 60, 0.92));
}

.cta-content {
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cta-dark {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: var(--section-padding-desktop) 0;
    background: var(--color-bg-light);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-medium);
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: var(--color-bg-light);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: var(--transition-accordion);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-accordion);
}

.faq-answer p {
    padding: 0 30px 25px;
    line-height: 1.8;
    font-size: 1rem;
    color: var(--color-text-dark);
    opacity: 0.85;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Desktop Only FAQ Items */
@media (max-width: 768px) {
    .faq-section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .faq-item.desktop-only {
        display: none;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 20px 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: var(--section-padding-desktop) 0;
    background: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.form-container {
    background: var(--color-bg-light);
    padding: 40px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--color-text-dark);
    opacity: 0.8;
}

.whatsapp-link {
    color: var(--color-whatsapp-start);
    font-weight: 600;
}

.whatsapp-link:hover {
    color: var(--color-whatsapp-end);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: var(--radius-small);
    background: var(--color-white);
    transition: var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold-start);
}

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

.form-privacy {
    font-size: 0.85rem;
    text-align: center;
    color: var(--color-text-dark);
    opacity: 0.7;
    margin-top: -10px;
}

.form-message {
    padding: 15px;
    border-radius: var(--radius-small);
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .contact-section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
        min-height: auto;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(to bottom, var(--color-gradient-start), var(--color-gradient-end));
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-list,
.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-list li,
.hours-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list svg,
.hours-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list a:hover {
    color: var(--color-gold-start);
}

.emergency {
    color: var(--color-whatsapp-start);
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-legal {
    text-align: left;
}

.footer-legal p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-gold-start);
}

.footer-links span {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        text-align: center;
    }
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-whatsapp-start), var(--color-whatsapp-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-float);
    z-index: 999;
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.whatsapp-float i {
    font-size: 32px;
    color: var(--color-white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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