/* ----------------- PALETA INDUSTRIAL/MASCULINA ----------------- */
:root {
    --primary: #0a0a0a;          /* Preto carvão */
    --secondary: #8B4513;        /* Marrom couro */
    --accent: #C19A6B;           /* Dourado madeira */
    --light: #D4AF37;            /* Dourado claro */
    --metal: #C0C0C0;            /* Prata */
    --white: #ffffff;
    --gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.2);
    --border-radius: 0;          /* Design industrial - cantos retos */
    --border-radius-sm: 4px;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: var(--primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    touch-action: manipulation;
}

h1, h2, h3, h4, h5, .logo {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* ----------------- ANIMAÇÕES ----------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    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);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ----------------- HEADER INDUSTRIAL ----------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 3px solid var(--secondary);
    transition: var(--transition);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-heavy);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.8rem;
    animation: rotate 20s linear infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.8rem;
    color: var(--white);
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 3px;
    font-weight: 300;
}

nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

/* ----------------- BUTTONS INDUSTRIAL ----------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
    border-radius: var(--border-radius);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), #6B2E0A);
    color: var(--white);
    border: 2px solid var(--secondary);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9A5A30, var(--secondary));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: rgba(193, 154, 107, 0.1);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-instagram {
    background: linear-gradient(135deg, #E1306C, #C13584);
    color: white;
    border: none;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
}

/* ----------------- HERO INDUSTRIAL ----------------- */
.hero {
    padding-top: 180px;
    padding-bottom: 150px;
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)), 
                url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(139, 69, 19, 0.05) 2px,
        rgba(139, 69, 19, 0.05) 4px
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero h1 span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
    z-index: -1;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--metal);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* ----------------- SERVICES SECTION ----------------- */
.services {
    background: var(--primary);
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--white);
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-subtitle {
    text-align: center;
    color: var(--metal);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--gray);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--secondary);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--secondary);
    transform: rotate(45deg);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.service-card p {
    color: var(--metal);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.service-price {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    margin-top: 20px;
}

/* ----------------- BARBERS SECTION ----------------- */
.barbers {
    background: var(--primary);
    position: relative;
}

.barbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238b4513' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.barbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.barber-card {
    background: var(--gray);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.barber-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-heavy);
}

.barber-image {
    height: 350px;
    overflow: hidden;
}

.barber-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.barber-card:hover .barber-image img {
    transform: scale(1.1);
}

.barber-info {
    padding: 30px;
}

.barber-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.barber-info p {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.barber-specialties {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.specialty {
    background: rgba(193, 154, 107, 0.1);
    color: var(--accent);
    padding: 5px 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(193, 154, 107, 0.3);
}

/* ----------------- GALLERY INDUSTRIAL ----------------- */
.gallery {
    background: var(--primary);
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    -webkit-tap-highlight-color: transparent;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    z-index: 2;
    box-shadow: var(--shadow-heavy);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--accent);
}

/* ----------------- BOOKING SECTION ----------------- */
.booking {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), 
                url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.booking p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--metal);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.feature p {
    color: var(--metal);
    font-size: 1rem;
    margin: 0;
}

/* ----------------- CONTACT SECTION ----------------- */
.contact {
    background: var(--primary);
    border-top: 3px solid var(--secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent);
    background: rgba(139, 69, 19, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-details p {
    color: var(--metal);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(139, 69, 19, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(139, 69, 19, 0.3);
    -webkit-tap-highlight-color: transparent;
}

.social-link:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.map-container {
    height: 400px;
    border: 3px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--metal);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent);
}

/* ----------------- FOOTER INDUSTRIAL ----------------- */
footer {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 3px solid var(--secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo-text {
    font-size: 2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo-sub {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 3px;
}

.footer-about p {
    color: var(--metal);
    margin: 20px 0;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--metal);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    -webkit-tap-highlight-color: transparent;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.footer-links a i {
    color: var(--accent);
    font-size: 0.9rem;
}

.hours h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.hours h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
}

.hours-list .day {
    color: var(--white);
}

.hours-list .time {
    color: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 69, 19, 0.2);
    color: var(--metal);
    font-size: 0.9rem;
}

/* ----------------- FLOATING BUTTONS ----------------- */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    -webkit-tap-highlight-color: transparent;
}

.floating-btn:hover {
    transform: scale(1.1);
    border-color: var(--white);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-whatsapp:hover {
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.floating-instagram {
    background: linear-gradient(135deg, #E1306C, #C13584);
}

.floating-instagram:hover {
    box-shadow: 0 15px 30px rgba(225, 48, 108, 0.4);
}

.floating-booking {
    background: linear-gradient(135deg, var(--secondary), #6B2E0A);
    animation: pulse 2s infinite;
}

.floating-booking:hover {
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.4);
}

/* ----------------- MODAL INDUSTRIAL ----------------- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    max-width: 900px;
    width: 100%;
    background: var(--gray);
    position: relative;
    animation: modalFadeIn 0.3s ease;
    border: 3px solid var(--secondary);
    box-shadow: var(--shadow-heavy);
}

.modal-header {
    padding: 25px;
    background: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--secondary);
}

.modal-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    text-transform: uppercase;
}

.close-modal {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.close-modal:hover {
    color: var(--white);
    background: rgba(139, 69, 19, 0.2);
}

.modal-body {
    padding: 40px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ----------------- ANIMATE ON SCROLL ----------------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------- LOADING ----------------- */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 4px solid rgba(139, 69, 19, 0.1);
    border-top: 4px solid var(--accent);
    border-radius: 0;
    animation: spin 1s linear infinite;
    margin-bottom: 30px;
}

.loading-text {
    color: var(--accent);
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ripple effect */
@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}