:root {
    /* Paleta de Cores Moderna - Tons Sofisticados */
    --primary-color: #1e3a5f;
    --primary-hover: #152c4a;
    --primary-light: #2d5a8a;
    --secondary-color: #d4a855;
    --secondary-light: #e8c885;
    --accent-color: #00b894;
    --bg-color: #f8fafc;
    --bg-dark: #0f172a;
    --card-bg: #ffffff;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --danger-color: #ef4444;
    --success-color: #10b981;

    /* Gradientes Modernos */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    --gradient-gold: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 50%, var(--secondary-color) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-dark) 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
    --nav-scrolled-bg: rgba(15, 23, 42, 0.95);
    /* Fallback to a solid dark header */

    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 32px rgba(212, 168, 85, 0.3);
}

/* Reset Moderno com Scroll Suave */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Animações Globais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@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%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.text-center {
    text-align: center;
}

/* Hidden State */
.hidden {
    display: none !important;
}

/* Loader Moderno com Glassmorphism */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: rotation 0.8s linear infinite;
    margin-bottom: 15px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Toast com animação moderna */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg-dark);
    color: white;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10010;
    animation: slideInRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 500;
}

/* Inputs Modernos */
input,
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--card-bg);
    color: var(--text-color);
    font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

input::placeholder {
    color: var(--text-light);
}

/* Botões Modernos com Efeitos */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.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: var(--gradient-primary);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.4);
}

.btn-gold {
    background: var(--gradient-gold);
    background-size: 200% 200%;
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 168, 85, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-danger {
    background: transparent;
    color: var(--danger-color);
    border: 2px solid var(--danger-color);
}

.btn-danger:hover {
    background: var(--danger-color);
    color: white;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Botão Ícone Circular */
.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-icon:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.btn-icon.danger {
    background: transparent;
    color: var(--danger-color);
    border: 1.5px solid var(--danger-color);
}

.btn-icon.danger:hover {
    background: var(--danger-color);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Scrollbar Customizada Elegante */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* ============================================
   LANDING PAGE - HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero);
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=80') center/cover;
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

.hero-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 1s ease-out;
    transition: all 0.3s ease;
}

.hero-navbar.scrolled {
    background: var(--nav-scrolled-bg);
    padding: 12px 5%;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-navbar.scrolled .hero-logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.hero-navbar.scrolled .hero-logo-text {
    font-size: 1.5rem;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.hero-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-logo-text span {
    color: var(--secondary-color);
}

.hero-nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.hero-nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.hero-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.hero-nav-links a:hover {
    color: white;
}

.hero-nav-links a:hover::after {
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 10;
    margin-top: auto;
    margin-bottom: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 85, 0.2);
    border: 1px solid var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
    width: 100%;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SECTIONS GERAIS
   ============================================ */

.section {
    padding: 100px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   ABOUT / DIFERENCIAIS
   ============================================ */

.about-section {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 500;
    color: var(--text-color);
}

/* ============================================
   SERVIÇOS
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   GALERIA DE PROJETOS
   ============================================ */

.projects-section {
    background: var(--bg-dark);
    padding: 100px 20px;
}

.projects-section .section-title {
    color: white;
}

.projects-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.project-overlay span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.testimonial-info h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--gradient-primary);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 168, 85, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ============================================
   CONTATO
   ============================================ */

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 58, 95, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-item-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bg-color);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Custom Admin Forms --- */
.management-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.management-form input[type="text"] {
    width: 100%;
}

.management-form button[type="submit"] {
    width: 100%;
    justify-content: center;
    padding: 12px;
}

.depoimento-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.depoimento-form .depoimento-form-row {
    display: flex;
    gap: 10px;
}

.depoimento-form .bottom-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.depoimento-form .flex-1 {
    flex: 1;
}

.depoimento-form button {
    height: fit-content;
    margin-bottom: 5px;
}

/* Estrelas interativas nos cards de depoimentos */
.dep-stars-row {
    display: flex;
    gap: 3px;
    margin-top: 3px;
}

.dep-star {
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.15s, color 0.15s;
    color: var(--secondary-color);
}

.dep-star:hover {
    transform: scale(1.3);
}

.dep-star.star-on {
    color: var(--secondary-color);
}

.dep-star.star-off {
    color: #ccc;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVO)
========================================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-nav-links {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 50px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .about-content h2 {
        font-size: 2rem;
        word-break: break-word;
        /* Prevent awkward hyphenation */
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .admin-content {
        padding: 15px 10px;
        /* Reduced side padding */
    }

    h1,
    h2,
    h3,
    h4,
    .project-select-card h3 {
        word-break: break-word;
        hyphens: auto;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Slightly smaller for mobile */
    }

    .project-select-card {
        padding: 15px;
    }

    .project-selection-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .admin-header {
        padding: 10px 15px;
        flex-direction: row;
        align-items: center;
    }

    .admin-header .flex {
        width: auto;
        gap: 8px;
    }

    .admin-header .hero-logo-text {
        font-size: 1.1rem !important;
    }

    .admin-header .desktop-only {
        display: none !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .client-details-card {
        padding: 20px !important;
    }

    .client-details-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .client-details-actions {
        margin-left: 0;
        width: 100%;
    }

    .client-details-actions button {
        width: 100%;
        justify-content: center;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .toast-container {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 20px;
        top: auto;
    }

    /* Modal Form Overrides */
    .management-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .management-form>div {
        width: 100%;
    }

    .management-form button[type="submit"],
    .management-form label[for="portfolio-img-upload"] {
        width: 100%;
        justify-content: center;
    }

    .depoimento-form .depoimento-form-row,
    .depoimento-form .bottom-row {
        flex-direction: column;
        align-items: stretch;
    }

    .depoimento-form button {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PHOTO GALLERY STYLES
   ============================================ */

.gallery-date-group {
    margin-bottom: 30px;
}

.gallery-date-header {
    position: sticky;
    top: 65px;
    background: var(--bg-color);
    padding: 12px 0;
    z-index: 50;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    margin-bottom: 15px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.media-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.media-card img,
.media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-card .video-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.media-card .delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--danger-color);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 1rem;
}

.media-card:hover .delete-btn {
    opacity: 1;
}

/* Carousel / Lightbox */
.carousel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.carousel-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 10;
}

.carousel-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    user-select: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: carouselFadeIn 0.25s ease-out;
}

#carousel-media-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
}

@keyframes carouselFadeIn {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-slide video {
    max-width: 90vw;
    max-height: 80vh;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 25px;
}

.carousel-nav.next {
    right: 25px;
}

.carousel-actions {
    position: absolute;
    bottom: 25px;
    display: flex;
    gap: 15px;
}

.carousel-actions .btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.carousel-actions .btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Custom Select */
.custom-select-wrapper {
    position: relative;
    min-width: 180px;
}

.custom-select-trigger {
    background: white;
    border: 2px solid var(--border-color);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.custom-select-trigger:hover {
    border-color: var(--primary-color);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.custom-select-options.open {
    display: block;
    animation: fadeInUp 0.2s ease-out;
}

.custom-select-option {
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-select-option:hover {
    background: var(--bg-color);
}

/* Dialog / Modal */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    z-index: 10005;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.dialog-box {
    background: white;
    padding: 35px;
    border-radius: var(--radius-xl);
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dialog-box h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.3rem;
}

.dialog-box .dialog-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

/* Theme Picker */
/* Theme Picker Trigger removed (now in navbar) */

.theme-picker-panel {
    position: fixed;
    top: 80px;
    right: 5%;
    background: white;
    padding: 25px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    min-width: 280px;
    animation: fadeIn 0.3s ease-out;
}

.theme-picker-panel h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.color-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.color-row label {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-color);
}

.color-row input[type="color"] {
    width: 45px;
    height: 45px;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm);
}

.preset-colors {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.preset-color {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.preset-color:hover {
    transform: scale(1.15);
    border-color: var(--text-color);
}

/* ============================================
   ADMIN PANEL STYLES
   ============================================ */

.admin-header {
    background: var(--primary-color);
    padding: 15px 25px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.admin-header .hero-logo-text {
    color: white;
}

.admin-content {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 70px);
    background: var(--bg-color);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Progress Bar */
.progress-bar {
    position: relative;
    height: 24px;
    background: var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 12px;
    transition: width 0.5s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
}

/* Project Cards */
.project-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.project-select-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.project-select-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.project-select-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.project-select-card:hover::before {
    transform: scaleY(1);
}

.project-select-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.project-select-card .address {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.project-select-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* Client Cards */
.client-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 12px;
}

.client-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--secondary-color);
}

.client-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
}

.client-info {
    flex: 1;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 4px;
}

.client-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.client-actions {
    display: flex;
    gap: 8px;
    transition: opacity 0.2s;
}

.btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--bg-color);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-icon:hover {
    background: var(--primary-color);
    color: white;
}

.btn-icon.danger:hover {
    background: var(--danger-color);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    z-index: 10005;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 1.3rem;
    color: var(--text-color);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.modal-body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 2rem;
    color: var(--text-color);
}

.page-header .subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb .separator {
    color: var(--text-light);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

/* Fab Button */
.fab-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 100;
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.4);
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Tabs */
.tabs-container {
    display: flex;
    gap: 5px;
    background: var(--bg-color);
    padding: 5px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.tab-btn:hover {
    color: var(--text-color);
}

.tab-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px 16px;
    gap: 10px;
    transition: all 0.3s;
}

.search-bar:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.search-bar i {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.search-bar input {
    border: none;
    outline: none;
    flex: 1;
    padding: 8px 0;
    background: transparent;
}

/* Filter Tags */
.filter-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-tag {
    padding: 8px 16px;
    border-radius: 50px;
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    padding: 15px;
    background: var(--bg-color);
    border-radius: var(--radius-md);
}

.info-item label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span {
    font-weight: 500;
    color: var(--text-color);
}

/* Action Bar */
.action-bar {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

/* Project Info Header */
.project-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-info-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Detalhes do Cliente UI */
.client-details-card {
    padding: 30px;
}

.client-details-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.client-details-info {
    flex: 1;
    min-width: 0;
}

.client-details-info h2 {
    margin-bottom: 5px;
    word-break: break-word;
}

.client-details-actions {
    margin-left: auto;
}

/* =========================================
   MOBILE FIXES (RESPONSIVO MÁX: 768px)
========================================= */
@media (max-width: 768px) {
    .admin-content {
        padding: 15px 10px;
    }

    h1,
    h2,
    h3,
    h4,
    .project-select-card h3 {
        word-break: break-word;
        hyphens: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .project-select-card {
        padding: 15px;
    }

    .project-selection-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .admin-header {
        padding: 10px 15px;
        flex-direction: row;
        align-items: center;
    }

    .admin-header .flex {
        width: auto;
        gap: 8px;
    }

    .admin-header .hero-logo-text {
        font-size: 1.1rem !important;
    }

    .admin-header .desktop-only {
        display: none !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
    }

    .client-details-card {
        padding: 20px !important;
    }

    .client-details-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .client-details-actions {
        margin-left: 0;
        width: 100%;
    }

    .client-details-actions button {
        width: 100%;
        justify-content: center;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .toast-container {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 20px;
        top: auto;
    }

    /* Form responsiveness fixes */
    .project-info-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px !important;
        gap: 20px;
    }

    .project-info-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .project-info-actions button {
        width: 100%;
        justify-content: center;
    }

    .project-info-actions #month-filter-container {
        width: 100%;
    }

    .management-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .management-form>div {
        width: 100%;
    }

    .management-form button[type="submit"],
    .management-form label[for="portfolio-img-upload"] {
        width: 100%;
        justify-content: center;
    }

    .depoimento-form .depoimento-form-row,
    .depoimento-form .bottom-row {
        flex-direction: column;
        align-items: stretch;
    }

    .depoimento-form button {
        width: 100%;
        justify-content: center;
    }

    .media-card .delete-btn {
        opacity: 1;
    }
}