/* ===== VARIÁVEIS E CONFIGURAÇÕES GLOBAIS ===== */
:root {
    --primary-gradient: linear-gradient(135deg, #d3b868 0%, #008bd0 100%);
    --secondary-gradient: linear-gradient(135deg, #d3b868 0%, #cea95c 40%, #008bd0 100%);
    --accent-gradient: linear-gradient(135deg, #008bd0 0%, #d3b868 100%);
    --success-gradient: linear-gradient(135deg, #5a6525 0%, #d3b868 100%);
    --warning-gradient: linear-gradient(135deg, #d3b868 0%, #008bd0 100%);
    --info-gradient: linear-gradient(135deg, #5a6525 0%, #d3b868 100%);
    --bg-light: #dddddc;
    --text-light: #5a6525;
    --card-bg: #FFFFFF;
    --shadow-light: 0 10px 25px rgba(0, 139, 208, 0.08);
    --border-light: rgba(0, 139, 208, 0.1);
    --magical-glow: 0 0 20px rgba(0, 139, 208, 0.3);
    --magic-sparkle: radial-gradient(circle, rgba(7, 70, 50, 0.6) 1px, transparent 1px);
    --dark-primary-gradient: linear-gradient(135deg, #5a6525 0%, #008bd0 100%);
}

/* ===== ESTILOS GLOBAIS ===== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--magic-sparkle);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
    animation: sparkleMove 30s linear infinite;
    opacity: 0.3;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ===== ANIMAÇÕES ===== */
@keyframes sparkleMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

@keyframes floatCode {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes particleMove {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

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

@keyframes float {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.4; }
    50% { transform: scale(1.05) rotate(180deg); opacity: 0.7; }
}

@keyframes blink {
    0%, 50% { border-color: #ffffff; }
    51%, 100% { border-color: transparent; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@keyframes sectionDivider {
    0% { width: 120px; opacity: 0.7; }
    100% { width: 180px; opacity: 1; }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(188, 116, 58, 0.5); }
    50% { box-shadow: 0 0 20px rgba(188, 116, 58, 0.8); }
}

@keyframes rotateDynamic {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseBorderGradient {
    0%, 100% { 
        box-shadow: 0 0 0 2px rgba(188, 116, 58, 0.3), 0 0 0 4px rgba(0, 139, 208, 0.3);
    }
    50% { 
        box-shadow: 0 0 0 3px rgba(188, 116, 58, 0.5), 0 0 0 5px rgba(0, 139, 208, 0.5);
    }
}

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

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* ===== PARTÍCULAS E EFEITOS VISUAIS ===== */
.code-particle {
    position: fixed;
    pointer-events: none;
    font-size: 0.8rem;
    color: rgba(7, 70, 50, 0.7);
    z-index: 999;
    animation: floatCode 20s linear infinite;
}



/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    z-index: 1030;
}

.navbar-toggler {
    margin: 2px 0;
    border: 1px solid #008bd0 !important;
}

.navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #008bd0 !important;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--magical-glow);
}

.nav-link:hover i {
    color: white !important;
}

.navbar-brand {
    position: relative;
    display: inline-block;
}

.logo-text {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: transparent;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-text {
    font-family: 'Roboto Mono', monospace;
    font-weight: 300;
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    color: #000000;
    display: block;
    margin-top: -0.7em;
	margin-left: 0.5em;
    position: relative;
}

.sub-text::after {
    content: '';
    position: absolute;
    bottom: -0.2em;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-gradient);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.nav-link i {
    background: var(--warning-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* fallback */
    transition: all 0.3s ease;
}


/* ===== HEADER ===== */
#header {
    height: 100vh;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('assets/top/topo.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
/* Fallback para browsers sem suporte a WebP */
@supports not (background-image: url('assets/top/topo.webp')) {
    #header {
        background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('assets/top/topo.jpg');
    }
}
 #header h1 {
    background: var(--primary-gradient);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: dividerGradient 4s linear infinite;
}

#header h1, #header .typewriter {
    position: relative;
    z-index: 10;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#particles-js canvas {
    --line-color: #f79533; 
}

@keyframes glitchLines {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(10px); opacity: 0.5; }
    75% { opacity: 0.2; }
}

@keyframes glitchLinesVertical {
    0%, 100% { transform: translateX(0); opacity: 0.2; }
    50% { transform: translateX(5px); opacity: 0.4; }
    75% { opacity: 0.1; }
}

@keyframes glitchText {
    0% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(1px, -1px); }
    80% { transform: translate(-1px, 1px); }
    100% { transform: translate(0); }
}

@keyframes glitchTop {
    0% { transform: translate(2px, -2px); clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%); }
    50% { transform: translate(4px, -4px); clip-path: polygon(0 0, 100% 0, 100% 60%, 0 60%); }
    100% { transform: translate(2px, -2px); clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%); }
}

@keyframes glitchBottom {
    0% { transform: translate(-2px, 2px); clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%); }
    50% { transform: translate(-4px, 4px); clip-path: polygon(0 40%, 100% 40%, 100% 100%, 0 100%); }
    100% { transform: translate(-2px, 2px); clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%); }
}

#header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    background: var(--primary-gradient); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    z-index: 1;
    margin-bottom: 1rem;
    text-shadow: none;
    animation: fadeInUp 1s ease-out;
    font-weight: 700;
}

.typewriter {
    color: #ffffff;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    z-index: 1;
    border-right: 2px solid #ffffff;
    white-space: nowrap;
    overflow: hidden;
    animation: blink 0.75s step-end infinite;
    max-width: 90vw;
    margin: 0 auto;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 0 20px rgba(255,255,255,0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e6e6e6 30%, #cccccc 70%, #a6a6a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== MARQUEE ===== */
.marquee-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 2rem;
}

.marquee {
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-light);
}

.marquee-top {
    position: relative;
    z-index: 2;
    transform: rotate(2deg);
    background: linear-gradient(135deg, rgba(0, 139, 208, 0.3), rgba(188, 116, 58, 0.2));
    color: #5a6525;
    margin-top: 40px;
}

.marquee-bottom {
    position: relative;
    z-index: 1;
    margin-top: -1rem;
    transform: rotate(-2deg);
    background: linear-gradient(135deg, rgba(211, 184, 104, 0.3), rgba(0, 139, 208, 0.2));
    color: #008bd0;
}

.marquee-middle-top {
    position: relative;
    z-index: 2;
    transform: rotate(2deg);
    background: linear-gradient(135deg, rgba(0, 139, 208, 0.3), rgba(188, 116, 58, 0.2));
    color: #5a6525;
    margin-top: 20px;
}

.marquee-middle-bottom {
    position: relative;
    z-index: 1;
    margin-top: -1rem;
    transform: rotate(-2deg);
    background: linear-gradient(135deg, rgba(211, 184, 104, 0.3), rgba(0, 139, 208, 0.2));
    color: #008bd0;
    margin-bottom: 20px;
}

.marquee-text {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    width: max-content;
}

.marquee-text-reverse {
    animation: marquee-reverse 20s linear infinite;
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    width: max-content;
}

.marquee-text span {
    display: inline-block;
    margin-right: 20px;
}

/* ===== SECTIONS ===== */
section {
    padding: 6rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    scroll-margin-top: 140px;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section h2 {
    font-weight: 700;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-size: 2rem;
    position: relative;
}

section h2::before {
    content: '';
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    animation: sectionDivider 2s ease-in-out infinite alternate;
}

.dynamic-divider::before {
    width: 200px;
    animation: sectionDivider 2s ease-in-out infinite alternate, glowPulse 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(188, 116, 58, 0.5);
    top: -45px;
}

#sobre {
    padding-top: 7.5rem;
    margin-top: 20px;
}
#sobre .lead, #aboutModal .lead {
    font-size: 1rem; 
    font-weight: 300; 
    line-height: 1.5; 
}





.modal-footer {
    display: flex;
    justify-content: flex-end; 
    padding: 1rem; /
}

.modal-content {
    border-radius: 0.5rem; 
    background-color: #fff; 
}

@media (max-width: 576px) {
    .modal-footer {
        justify-content: flex-end;
    }
    .btn-close-modal {
        font-size: 0.9rem; 
        padding: 0.4rem 0.8rem;
    }
}

/* ===== SOBRE MIM - FOTO/VIDEO ===== */
.photo-container {
    position: relative;
    display: inline-block;
    width: 280px;
    height: 280px;
    margin-top: 20px;
}

.video-container {
    position: relative;
    display: inline-block;
    width: 280px;
    height: 280px;
    margin-top: 20px;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: conic-gradient(
        from 0deg, 
        rgba(188, 116, 58, 0.6) 0deg,
        rgba(0, 139, 208, 0.6) 90deg,
        rgba(188, 116, 58, 0.6) 180deg,
        rgba(0, 139, 208, 0.6) 270deg,
        rgba(188, 116, 58, 0.6) 360deg
    );
    background-size: 100% 100%;
    border-radius: 20px;
    z-index: -1;
    animation: rotateDynamic 8s linear infinite, pulseBorderGradient 2s ease-in-out infinite;
    pointer-events: none;
    border: none;
    box-shadow: 0 0 0 2px rgba(188, 116, 58, 0.3), 0 0 0 4px rgba(0, 139, 208, 0.3);
    box-sizing: border-box;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-light), 0 10px 25px rgba(90, 101, 37, 0.2);
    position: relative;
    z-index: 1;
}

.profile-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-light), 0 10px 25px rgba(90, 101, 37, 0.2);
    position: relative;
    z-index: 1;
}

.profile-media video,
.profile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-container:hover .profile-media {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* ===== CARDS ===== */
.card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    background: var(--card-bg);
    box-shadow: var(--shadow-light);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 139, 208, 0.15);
}

.card-body {
    padding: 3rem;
}

.card i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: block;
    color: #bc743a !important;
}

.card:hover i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(188, 116, 58, 0.5));
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* ===== BOTÕES ===== */
.btn-custom {
    background: var(--warning-gradient);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.btn-custom::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-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--magical-glow);
    color: white !important;
}

/* ===== CAROUSEL DE TESTEMUNHOS ===== */
#testemunhos .carousel {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.carousel-inner {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.carousel-item {
    height: 0;
    padding-bottom: 50%;
    position: relative;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--bg-light);
}

/* Remove as setas padrão do Bootstrap */
.carousel-control-prev,
.carousel-control-next {
    display: none !important; /* Esconde as setas padrão */
}

/* Nossas setas personalizadas */
.custom-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.custom-carousel-prev,
.custom-carousel-next {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-light);
}

.custom-carousel-prev:hover,
.custom-carousel-next:hover {
    transform: scale(1.1);
    box-shadow: var(--magical-glow);
}

/* Botão Ver Testemunhos */
.facebook-reviews-btn {
    background: var(--warning-gradient);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.facebook-reviews-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;
}

.facebook-reviews-btn:hover::before {
    left: 100%;
}

.facebook-reviews-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--magical-glow);
    color: white;
    text-decoration: none;
}

.facebook-reviews-btn i {
    font-size: 1.2rem;
}

/* Mobile */
@media (max-width: 768px) {
    #testemunhos .carousel {
        max-width: 95vw;
        margin-bottom: 1.5rem;
    }
    
    .carousel-item {
        padding-bottom: 60%;
    }
    
    .custom-carousel-controls {
        gap: 1rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .custom-carousel-prev,
    .custom-carousel-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .facebook-reviews-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
}

/* ===== GALERIA DE TRABALHOS ===== */
.work-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 250px;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 139, 208, 0.15);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.work-item:hover img {
    transform: scale(1.05);
}

.gallery-btn.zoom-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: var(--secondary-gradient);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white !important;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 139, 208, 0.3);
    cursor: pointer;
}

.gallery-btn.zoom-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 139, 208, 0.4);
}

.details-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    display: flex !important; /* força a visibilidade */
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    transition: all 0.3s ease;
}


.details-overlay .btn-sm {
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
}
/* ===== FILTROS PORTFÓLIO ===== */
#portfolioFilters .d-flex {
    gap: 1rem;
}

.filter-btn {
    background: var(--warning-gradient);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.filter-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;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--magical-glow);
    color: white;
}

.filter-btn.active {
    background: var(--warning-gradient);
    transform: translateY(-2px);
    box-shadow: var(--magical-glow);
}

/* Mobile */
@media (max-width: 768px) {
    #portfolioFilters .d-flex {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}
/* ===== MODAL IMAGEM ZOOM ===== */
#imageZoomModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-light);
}

#imageZoomModal .modal-header {
    border-bottom: 1px solid var(--border-light);
    background: var(--warning-gradient);
    color: white;
    border-radius: 20px 20px 0 0 !important;
    position: relative;
}

#imageZoomModal .modal-header i {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    opacity: 0.8;
}

#imageZoomModal .modal-header h5 {
    margin-left: 3rem;
}

#imageZoomModal .modal-body {
    background: var(--bg-light);
    border-radius: 0 0 20px 20px;
}

#zoomImage {
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-light);
}
/* ===== MODAL DETALHES TRABALHOS ===== */
.project-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--warning-gradient);
}

.info-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: var(--primary-color);
    width: 20px;
}

.contact-options {
    background: linear-gradient(135deg, rgba(0, 139, 208, 0.05), rgba(188, 116, 58, 0.05));
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.contact-options .btn {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-options .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mobile */
@media (max-width: 768px) {
    .modal-body .row {
        flex-direction: column;
    }
    
    .modal-body .col-md-4 {
        margin-top: 1rem;
    }
    
    .project-info {
        padding: 1rem;
    }
    
    .contact-options {
        padding: 1rem;
    }
    
    .contact-options .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* ===== FORMULÁRIOS ===== */
.form-control {
    border-radius: 15px;
    border: 2px solid var(--border-light);
    padding: 1rem;
    transition: all 0.3s ease;
    background: var(--card-bg);
    color: var(--text-light);
}

.form-control:focus {
    border-color: #008bd0;
    box-shadow: var(--magical-glow);
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: none;
}

.form-group {
    position: relative;
}

.form-group.invalid .form-control {
    border-color: #dc3545;
}

.form-group.invalid .error-message {
    display: block;
}

.form-check-input {
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.form-group.invalid .form-check-input {
    border-color: #dc3545;
}

.form-check-label.small-text,
.form-group small.small-text {
    font-size: 0.85rem;
}

.terms-link {
    color: #5a6525;
    text-decoration: underline;
    cursor: pointer;
}

.terms-link:hover {
    color: #008bd0;
}

/* ===== INPUTS COM ÍCONES ===== */
.input-with-icon {
    position: relative;
    width: 100%;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bc743a;
    font-size: 1.1rem;
    z-index: 3;
}

.input-with-icon .form-control {
    padding-left: 45px;
}

.input-with-icon textarea.form-control {
    padding-top: 1rem;
}

/* Para o textarea, ajusta o ícone para o topo */
.input-with-icon textarea + i {
    top: 1.5rem;
    transform: translateY(0);
}

/* Estados dos inputs com ícones */
.input-with-icon .form-control:focus {
    border-color: #008bd0;
    box-shadow: var(--magical-glow);
}

.input-with-icon .form-control:focus + i {
    color: #008bd0;
}

/* Para mobile */
@media (max-width: 768px) {
    .input-with-icon i {
        left: 12px;
        font-size: 1rem;
    }
    
    .input-with-icon .form-control {
        padding-left: 40px;
    }
}

/* ===== MODAIS ===== */
.modal {
    z-index: 1060;
}

.modal-backdrop {
    z-index: 1050;
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-light);
}

.modal-header {
    border-bottom: 1px solid var(--border-light);
    background: var(--warning-gradient);
    color: white;
    border-radius: 20px 20px 0 0 !important;
    position: relative;
}

.modal-header i {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    opacity: 0.8;
}

.modal-header h5 {
    margin-left: 3rem;
}

.contact-card h3 {
    display: none;
}

.contact-card p {
    font-weight: 500;
    font-size: 1rem;
}

.form-check {
    margin-top: 1rem;
}

/* ===== MODAL SOBRE MIM ===== */
.about-card {
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.about-card i {
    font-size: 2.5rem;
    color: #008bd0;
    margin-bottom: 1rem;
    display: block;
}

.about-card h6 {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.about-card .small {
    color: #5a6525;
    line-height: 1.4;
}

.skill-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.skill-item:hover {
    background: rgba(0, 139, 208, 0.1);
}

.skill-item i {
    color: #5a6525;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.skill-item span {
    font-weight: 500;
    color: var(--text-light);
}

.bi-quote {
    color: #d3b868;
    font-size: 1.2rem;
    margin: 0 0.5rem;
}

/* ===== FLOATING BUTTONS ===== */
.floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.floating a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.floating a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    z-index: -1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.whatsapp::before {
    background: linear-gradient(135deg, #008bd0, #bc743a);
}

.scroll-top::before {
    background: linear-gradient(135deg, #008bd0, #bc743a);
}

.floating a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 139, 208, 0.3);
}

.floating a i {
    color: white !important;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-gradient);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100vw;
    left: 0;
    right: 0;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><defs><pattern id="grain" width="100" height="10" patternUnits="userSpaceOnUse"><circle cx="25" cy="5" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="10" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    animation: wave 10s ease-in-out infinite;
}

footer h5 {
    position: relative;
    z-index: 1;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    z-index: -1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 139, 208, 0.3);
}

.footer-nav {
    margin-top: 1rem;
}

.footer-nav .nav {
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav .nav-link {
    color: white !important;
    opacity: 0.8;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: opacity 0.3s ease;
}

.footer-nav .nav-link:hover {
    opacity: 1;
    color: white !important;
}

.footer-divider {
    background: white;
    height: 1px;
    border: none;
    opacity: 0.5;
    margin: 1.5rem auto;
    width: 50%;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ===== UTILITÁRIOS ===== */
.bi {
    display: inline-block !important;
    vertical-align: middle;
    font-size: inherit;
}

[class^="bi-"]::before,
[class*=" bi-"]::before {
    display: inline-block !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    vertical-align: -0.125em !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-family: "bootstrap-icons" !important;
}

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

.d-none {
    display: none !important;
}

.d-none {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* ===== TÍTULOS DAS SEÇÕES DAS MODAIS COM GRADIENTE SECUNDÁRIO ===== */
.modal-section-title {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* ===== SUBTÍTULOS DAS MODAIS ===== */
.modal-subtitle {
    color: #008bd0;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== LISTAS DAS MODAIS COM SETAS E GRADIENTE PRIMARY ===== */
.modal-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.modal-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    padding-left: 1.5rem;
    position: relative;
}

.modal-list li::before {
    background: var(--primary-gradient);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 13l-5-5 5-5 1.5 1.5-3.5 3.5 3.5 3.5-1.5 1.5z'/%3E%3C/svg%3E") no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 13l-5-5 5-5 1.5 1.5-3.5 3.5 3.5 3.5-1.5 1.5z'/%3E%3C/svg%3E") no-repeat;
    width: 12px;
    height: 12px;
    border: none;
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Fallback para browsers que não suportam border-image */
.modal-list li::before {
    background: var(--primary-gradient);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 13l-5-5 5-5 1.5 1.5-3.5 3.5 3.5 3.5-1.5 1.5z'/%3E%3C/svg%3E") no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 13l-5-5 5-5 1.5 1.5-3.5 3.5 3.5 3.5-1.5 1.5z'/%3E%3C/svg%3E") no-repeat;
    width: 12px;
    height: 12px;
    border: none;
}

/* ===== LINKS DO FORMULÁRIO COM EFEITO DA NAVBAR ===== */
.terms-link,
.coockies-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    margin: 0.25rem 0;
    cursor: pointer;
}

.terms-link::before,
.coockies-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.terms-link:hover::before,
.coockies-link:hover::before {
    left: 0;
}

.terms-link:hover,
.coockies-link:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--magical-glow);
    text-decoration: none;
}

/* ===== MELHORIAS GERAIS PARA AS MODAIS ===== */
.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-body strong {
    color: #bc743a;
}

.modal-body a {
    color: #008bd0;
    text-decoration: none;
    font-weight: 500;
}

.modal-body a:hover {
    color: #bc743a;
    text-decoration: underline;
}
/* ===== LINKS DE POLÍTICA CENTRALIZADOS COM ÍCONES ===== */
.policy-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.policy-link-item {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    border: 2px solid var(--border-light);
    background: var(--card-bg);
    cursor: pointer;
}

.policy-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.policy-link-item:hover::before {
    left: 0;
}

.policy-link-item:hover {
    color: white !important;
    transform: translateY(-3px);
    box-shadow: var(--magical-glow);
    text-decoration: none;
    border-color: transparent;
}

.policy-link-item i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.policy-link-item:hover i {
    color: white !important;
    transform: scale(1.1);
}

/* Para mobile */
@media (max-width: 768px) {
    .policy-links {
        gap: 0.5rem;
    }
    
    .policy-link-item {
        padding: 0.6rem 1.2rem;
        min-width: 200px;
        font-size: 0.9rem;
    }
}

/* ===== FONT MODAIS ===== */
.contact-options .btn {
    color: white !important;
    text-decoration: none !important;
}

.contact-options .btn:hover {
    color: white !important;
    text-decoration: none !important;
}

.contact-options .btn i {
    color: white !important;
}

/* Estilo específico para os botões de contato */
.contact-options .btn-whatsapp,
.contact-options .btn-email {
    background: var(--primary-gradient) !important;
    border: none !important;
    color: white !important;
    text-decoration: none !important;
}

.contact-options .btn-whatsapp:hover,
.contact-options .btn-email:hover {
    background: var(--secondary-gradient) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

/* Apenas para as modais de conteúdo */
#aboutModal .modal-body p,
#aboutModal .modal-body li,
#detailsModal .modal-body p,
#privacyModal .modal-body p,
#privacyModal .modal-body li,
#cookiesModal .modal-body p,
#cookiesModal .modal-body li,
#detailsModal .lead {
    font-size: 1rem !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
}

/* Mensagens de erro do formulário - mais específico */
#contactForm .error-message {
    font-size: 0.875rem !important;
    font-weight: 400 !important;
}

/* Textos do formulário - mais específico */
#contactForm .form-check-label.small-text,
#contactForm .form-group small.small-text {
    font-size: 0.85rem !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
}

/* Ajustes de margem para as modais */
#aboutModal .modal-body p,
#detailsModal .modal-body p,
#privacyModal .modal-body p,
#cookiesModal .modal-body p {
    margin-bottom: 1rem;
}

#aboutModal .modal-body li,
#privacyModal .modal-body li,
#cookiesModal .modal-body li {
    margin-bottom: 0.5rem;
}

/* Texto da modal "O Que Faço" alinhado à esquerda */
#detailsModal .lead {
    text-align: left !important;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    html, body {
        width: 100vw !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        position: relative;
    }
    
    #header {
        width: 100vw !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    #header > div {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 15px !important;
    }
    
    footer {
        width: 100vw !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 2rem 15px !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .navbar {
        width: 100vw !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 15px !important;
    }
    
    .navbar .container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .marquee-container {
        width: 100vw !important;
        max-width: 100% !important;
        margin: 10px 0 2rem 0 !important;
        padding: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
    
    .marquee {
        width: 100% !important;
        margin: 0 !important;
        padding: 1rem 15px !important;
    }
    
    .marquee-top {
        transform: rotate(2deg) !important;
    }
    
    .marquee-bottom {
        transform: rotate(-2deg) !important;
    }
    
    .marquee-middle-top {
        transform: rotate(2deg) !important;
    }
    
    .marquee-middle-bottom {
        transform: rotate(-2deg) !important;
    }
    
    .container {
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 auto;
    }
    
    section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        scroll-margin-top: 120px;
    }
    
    section h2::before {
        top: -35px;
    }
    
    #sobre {
        padding-top: 5rem !important;
    }
    
    .video-container {
        margin-top: 20px !important;
        margin-bottom: 1.5rem !important;
    }
    
    #sobre .d-flex.justify-content-center.gap-3 {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        width: 100%;
    }
    
    #sobre .d-flex.justify-content-center.gap-3 .btn {
        width: 100% !important;
        max-width: 280px;
        margin: 0.25rem 0 !important;
    }
    
    /* Carousel mobile */
    #testemunhos .carousel {
        max-width: 90vw;
    }
    
    .carousel-item {
        padding-bottom: 56.25%; /* 16:9 ratio para mobile */
    }
    
    .carousel-item img {
        object-fit: contain;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev::before,
    .carousel-control-next::before {
        width: 15px;
        height: 15px;
        border-width: 0 2px 2px 0;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .gallery-btn.zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
    
    .details-overlay {
        height: 40px;
    }
    
    .details-overlay .btn-sm {
        padding: 0.2rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .floating {
        bottom: 20px;
        right: 20px;
    }
    
    .floating a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    section h2 {
        font-size: 1.75rem;
    }
    
    .social-icons {
        gap: 0.5rem;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
    
    .footer-nav .nav-link {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.8rem;
    }
    
    .work-item {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .sub-text::after {
        bottom: -0.1em;
        height: 1.5px;
    }
}

/* Força visibilidade de modais abertas */
.modal.show .modal-content {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
}

@media (min-width: 1200px) {
    #imageZoomModal .modal-dialog {
        max-width: none;
        width: auto;
        margin: 1.75rem auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #imageZoomModal .modal-content {
        max-width: 95vw;
        width: fit-content;
        border-radius: 8px;
        margin: 0 auto;
    }
    
    #imageZoomModal .modal-body {
        padding: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #zoomImage {
        max-width: 95vw;
        max-height: 90vh;
        width: auto;
        height: auto;
        object-fit: contain;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
        image-rendering: pixelated;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
        filter: contrast(1.1) sharpen(0.5);
    }
}

#imageZoomModal .modal-header,
#imageZoomModal .modal-footer {
    justify-content: center;
    padding: 0.5rem 1rem;
}

#imageZoomModal .modal-title {
    font-size: 1.1rem;
}

#imageZoomModal .modal-content {
    background: transparent;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

#imageZoomModal .modal-header {
    background: var(--warning-gradient);
    color: white;
    border-radius: 0;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#imageZoomModal .modal-header .modal-title {
    display: flex;
    align-items: center;
    margin: 0 0 0 1.5rem;
    font-size: 1.1rem;
    flex-grow: 1;
    margin-top: 0.25rem;
}

#imageZoomModal .modal-header i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

#imageZoomModal .modal-header .btn-close {
    margin-left: auto;
    opacity: 0.8;
    filter: invert(1);
}

#imageZoomModal .modal-header .btn-close:hover {
    opacity: 1;
}

#imageZoomModal .modal-body {
    background: var(--bg-light);
    border-radius: 0;
    padding: 0.5rem;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: none;
}

#imageZoomModal .modal-footer {
    background: var(--bg-light);
    border-radius: 0;
    border-top: 1px solid var(--border-light);
    padding: 0.75rem 1rem;
    justify-content: flex-end;
}


#workWebsite {
    color: #008bd0;
    transition: color 0.3s ease;
}

#workWebsite:hover {
    color: #bc743a;
    text-decoration: underline !important;
}

.info-item a.small {
    font-size: 0.875rem;
}