/* Global Styles */
:root {
    --primary: #2d2d2d;
    --primary-dark: #1a1a1a;
    --secondary: #4ef291;
    --accent: #4ef291;
    --bg-dark: #2d2d2d;
    --bg-charcoal: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #FFFFFF;
    --text-muted: rgba(244, 243, 243, 0.7);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Varela Round', sans-serif;
    --font-body: 'Varela Round', sans-serif;
    --radius: 8px; /* Standard 8px radius */
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}

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

a:hover {
    color: var(--white);
}

.btn, .service-card, .img-fluid, .rounded, .navbar-brand img {
    border-radius: var(--radius) !important;
}

.btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary-dark);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--primary-dark);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Updated highlight for better contrast with charcoal */
.secondary-text, .highlighted {
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 2px;
}

.section-subheading {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

/* Navigation */
#mainNav {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: transparent;
    transition: var(--transition);
    z-index: 1030;
}

#mainNav.navbar-scrolled {
    background-color: var(--primary-dark) !important; /* Solid Charcoal */
    border-bottom: 2px solid var(--secondary); /* Neon Green Line */
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#mainNav .navbar-brand img {
    filter: brightness(0) invert(1); /* Force white */
    transition: var(--transition);
}

#mainNav.navbar-scrolled .navbar-brand img {
    filter: brightness(0) invert(1); /* Keep white on scroll */
}

#mainNav .navbar-nav .nav-item .nav-link {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--secondary) !important;
}

/* Service Swiper Customization */
.swiper-button-next, .swiper-button-prev {
    color: var(--secondary) !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
}

/* Toggle Switch */
.btn-switch {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: var(--primary-dark);
}

.btn-switch .btn {
    border-radius: var(--radius);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    background-color: transparent;
    color: var(--text-muted);
}

.btn-switch .active {
    background-color: var(--secondary) !important;
    color: var(--primary-dark) !important;
}

/* Secondary Buttons */
.btn-hero-rounded, .btn-hero {
    border-radius: var(--radius) !important;
}

/* Hero Section */
.hero-custom {
    padding-top: 10rem;
    padding-bottom: 8rem;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #1a1a1a;
}

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

/* Video Background */
.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.28) saturate(0.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn-hero {
    background: var(--secondary);
    color: var(--primary-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(78, 242, 145, 0.3);
}

.btn-hero:hover {
    background: #ffffff;
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(78, 242, 145, 0.5);
}

.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Subpage Heroes */
.hero-subpage {
    min-height: 70vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.hero-subpage .hero-title {
    font-size: 4rem;
}

/* Hero Tag - Premium Label */
.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-custom {
        padding-top: 8rem;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subpage {
        min-height: 60vh;
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .hero-subpage .hero-title {
        font-size: 2.2rem;
    }
}

/* Page Headers */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 300px;
    /* background-image: url('../img/background1.png'); */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    display: flex;
    align-items: center;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

/* Services */
.service-card {
  background: rgba(45, 45, 45, 0.6); /* Charcoal glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 4px; /* Striking sharp corners for premium feel */
  padding: 2.5rem;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 242, 145, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    background: rgba(45, 45, 45, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card h2.titulo-principal {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.service-card h3.titulo-verde {
  color: var(--secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.service-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(78, 242, 145, 0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    background: var(--secondary);
    transform: scale(1.1);
}

.service-card .icon-wrapper img {
    width: 28px !important;
    height: 28px !important;
    filter: brightness(0) saturate(100%) invert(86%) sepia(21%) architecture(1586deg) brightness(101%) contrast(92%); /* Adjusted Green filter approximation */
    transition: var(--transition);
}

.service-card:hover .icon-wrapper img {
    filter: brightness(0);
}

.service-detail .service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.service-detail .service-features li {
    margin-bottom: 0.5rem;
}

/* Portfolio */
.portfolio-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-img {
    overflow: hidden;
}

.portfolio-img img {
    transition: var(--transition);
    width: 100%;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-info {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-info h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.portfolio-filters .btn {
    margin-right: 5px;
    margin-bottom: 10px;
}

.portfolio-filters .btn.active {
    background-color: var(--primary);
    color: var(--white);
}

/* Testimonials */
.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    height: 100%;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 1.5em;
    color: var(--primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.testimonial-author h5 {
    margin-bottom: 0;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--secondary);
}

/* Team */
.team-member {
    text-align: center;
    margin-bottom: 20px;
}

.team-member img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    margin-top: 15px;
    margin-bottom: 5px;
}

.team-member p {
    margin-bottom: 15px;
}

.team-member .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.team-member .social-icons a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #e9e9e9;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-badge {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
}

.timeline-content h4 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-badge {
        left: 40px;
    }
    
    .timeline-content {
        width: calc(100% - 90px);
        margin-left: 90px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 90px;
    }
}

/* Contact */
.contact-info .icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

/* Footer */
.footer {
    background-color: #0F1114;
    color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer hr {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Error Page */
.error-page {
    background-color: #f8f9fa;
}

.error-page h1 {
    font-size: 8rem;
    color: var(--primary);
}

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

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

/* Responsive */
@media (max-width: 992px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.8rem;
    }
    
    .section-subheading {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}


/* Botão duplo */
.btn-switch {
    border: 1px solid #ccc;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-switch .btn {
    border-radius: 0;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #fff;
    color: var(--secondary);
    border: none;
}

.btn-switch .btn-switch-left {
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
}

.btn-switch .btn-switch-right {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
}

.btn-switch .active {
    background-color: var(--secondary);
    color: var(--primary-dark);
}

.swiper-servicos {
  padding-bottom: 2rem;
}

.swiper-navigation {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.swiper-slide {
  height: auto !important;
}
.swiper-slide.hidden-slide {
  display: none !important;
}
.service-card .icon-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.service-img {
  max-height: 320px;       /* altura uniforme */
  object-fit: contain;     /* evita corte e distorção */
  width: 100%;
}

/* .icon-wrapper img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
} */

.btn-hero-rounded {
  background-color: var(--secondary) !important;
  color: var(--primary-dark) !important;
  border-radius: var(--radius) !important;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-hero-rounded:hover {
  background-color: #ffffff !important;
  color: var(--primary-dark) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-green-theme {
  background: var(--bg-dark);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.about-green-theme::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(78, 242, 145, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.about-title {
  color: #ffffff !important;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.about-subtitle {
  color: var(--secondary) !important;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.about-desc {
  color: var(--text-muted) !important;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
}

.about-green-theme .img-fluid {
    border-radius: 4px; /* Sharp corners */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
}

/* CTA Section */
.cta-section {
    background: var(--primary-dark) !important; /* Deep Charcoal */
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(78, 242, 145, 0.05) 0%, transparent 80%);
    z-index: 0;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-section .btn-hero {
    background: var(--secondary);
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(78, 242, 145, 0.2);
}

.cta-section .btn-hero:hover {
    background: #ffffff;
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background-color: #111111; /* Solid charcoal */
    color: var(--text-muted);
    padding: 8rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer a {
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer .social-icons a {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    color: #ffffff;
    margin-right: 12px;
    transition: var(--transition);
}

.footer .social-icons a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.about-float-image {
  position: absolute;
  left: -100px;
  bottom: 0;
  height: 340px;
  z-index: 0;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Estilo personalizado para alertas de sucesso */
.alert-success {
    background-color: #2FFFAD !important; /* Verde Tegge */
    color: #333 !important; /* Cinza escuro para texto */
    border: none;
    font-weight: 500;
    padding: 1rem 1.25rem;
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}

/* Botão de fechar no alerta */
.alert-success .btn-close {
    filter: invert(40%) grayscale(1); /* deixa o ícone cinza escuro */
    opacity: 0.7;
}
.alert-success .btn-close:hover {
    opacity: 1;
}

.titulo-principal {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff; /* branco */
}

.titulo-verde {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4EF291; /* verde Tegge */
    margin-top: 8px;
}

.service-card p {
    color: #ffffff;
    margin-top: 10px;
}

.icon-wrapper img {
    display: block;
    margin: 0 auto;
}
.service-card {
  padding: 30px !important;
  min-height: 330px;
}

.swiper-slide {
  width: 300px !important;
}
.flash-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 9999;
}

.flash-message {
    min-width: 380px;
    max-width: 90vw;
    padding: 14px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.12);
    animation: flashSlideDown 0.4s ease-out;
}

/* Sucesso */
.flash-success {
    background: #11e29b; /* Verde Tegge */
    color: #004c3f;
}

/* Erro */
.flash-error {
    background: #ff6961;
    color: white;
}

.flash-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flash-icon {
    font-size: 1.3rem;
}

.flash-close {
    border: none;
    background: transparent;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.7;
}

.flash-close:hover {
    opacity: 1;
}

@keyframes flashSlideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}