/* Global Styles - Mesa Digital Light Theme */
:root {
    --primary: #2B2B2B;
    --primary-dark: #1a1a1a;
    --accent: #D97757;
    --accent-dark: #c06445;
    --secondary: #6c757d;
    --text-muted: #595F6B;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #2B2B2B;
    --dark-bg: #0A0A0F;
    --white: #ffffff;
    --form-bg: #F3EEE8;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Mulish', sans-serif;
    color: #2B2B2B;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #2B2B2B;
}

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

a:hover {
    color: var(--accent-dark);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

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

.section-heading {
    font-family: 'Mulish', sans-serif;
    font-size: 30px;
    font-weight: 300;
    color: #2B2B2B;
    text-align: center;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.highlighted {
    font-weight: 600;
    color: #D97757;
}

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

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

#mainNav.navbar-scrolled {
    background-color: rgba(43, 43, 43, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

#mainNav .navbar-collapse.show,
#mainNav .navbar-collapse.collapsing {
    background-color: rgba(43, 43, 43, 0.97);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 0.5rem;
}

#mainNav .navbar-brand {
    padding: 0;
}

.navbar-logo {
    height: 64px;
    width: auto;
}

.footer-logo {
    height: 52px;
    width: auto;
    display: block;
    margin-bottom: 18px;
}

#mainNav .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

#mainNav .navbar-nav .nav-item .nav-link:hover,
#mainNav .navbar-nav .nav-item .nav-link.active {
    color: #ffffff;
}

#mainNav .navbar-nav.ms-3 {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
    #mainNav {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        background-color: transparent;
        backdrop-filter: none;
    }

    #mainNav .navbar-nav .nav-item .nav-link {
        color: rgba(255, 255, 255, 0.85);
        padding: 0.75rem 0;
        margin: 0 1rem;
    }

    #mainNav .navbar-nav .nav-item .nav-link:hover,
    #mainNav .navbar-nav .nav-item .nav-link.active {
        color: #ffffff;
    }

    #mainNav .navbar-nav.ms-3 {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    #mainNav.navbar-scrolled {
        background-color: rgba(43, 43, 43, 0.97);
        backdrop-filter: blur(10px);
        padding-top: 1rem;
        padding-bottom: 1rem;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    }

    #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link {
        color: rgba(255, 255, 255, 0.85);
    }

    #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:hover,
    #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link.active {
        color: #ffffff;
    }

    #mainNav.navbar-scrolled .btn-login {
        background-color: var(--accent);
        color: #fff;
    }
}

/* Navbar toggler */
#mainNav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

#mainNav .navbar-toggler .fas {
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background-color: var(--primary);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-left: 5%;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Mulish', sans-serif;
    font-size: 2.75rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-family: 'Mulish', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.hero-custom {
    background: #2B2B2B;
    padding-top: 6rem;
    padding-bottom: 4rem;
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    overflow: hidden;
    position: relative;
    min-height: 50vh;
}

.hero-bg {
    background: url('../img/hero-bg3.jpg') center center / cover no-repeat;
    min-height: 55vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43,43,43,0.85) 0%, rgba(43,43,43,0.7) 50%, rgba(43,43,43,0.65) 100%);
    z-index: 1;
}

.hero-custom h1 {
    font-weight: 300;
    font-size: 2.4rem;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.hero-custom p {
    font-weight: 300;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.hero-img {
    max-width: 75%;
    height: auto;
    border-radius: 0.75rem;
}

.hero-img-subtle {
    opacity: 0.55;
    filter: saturate(0.3) sepia(0.4) brightness(0.9);
    border-radius: 1rem;
    mix-blend-mode: luminosity;
}

.btn-hero {
    background: #D97757;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 2rem;
    transition: 0.3s ease-in-out;
}

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

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

    .hero p {
        font-size: 1.2rem;
    }
}

/* Page Headers */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 300px;
    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-color: #2B2B2B;
  border-radius: 16px;
  padding: 1.5rem;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
}

.card-illustration {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
    transition: var(--transition);
}

.service-card:hover .card-illustration {
    transform: scale(1.05);
}

.service-card .icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
  color: #D97757;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #ffffff;
  font-size: 0.95rem;
}

.service-card .btn-link {
    color: #D97757;
    text-decoration: none;
    font-weight: 500;
    display: block;
    text-align: center;
}

.service-card .btn-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.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(--accent);
}

.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(--accent);
    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(--accent);
    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(--accent);
    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: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: #25D366;
    color: #fff;
    transform: translateY(-3px);
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    opacity: 0.1;
}

/* WhatsApp Floating Button */
#whatsapp-floating {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 9999;
    transition: transform .2s ease, box-shadow .2s ease;
    animation: subtlePulse 2.6s infinite ease-in-out;
}

#whatsapp-floating:hover {
    transform: scale(1.10);
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

@keyframes subtlePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

#whatsapp-tooltip {
    position: fixed;
    bottom: 100px;
    left: 25px;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 9999;
    white-space: nowrap;
}

#whatsapp-floating:hover + #whatsapp-tooltip {
    opacity: 1;
}

/* Navbar Login Button */
.btn-login {
    background-color: var(--accent);
    color: #ffffff;
    transition: all 0.3s;
}

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

/* CTA Section */
.cta-section {
    background-color: var(--primary);
    position: relative;
    overflow: visible;
    font-family: 'Mulish', sans-serif;
}

/* Service Detail Sections */
.service-detail h2 {
    font-family: 'Mulish', sans-serif;
}

.service-detail-light h2 {
    color: var(--primary);
}

.service-detail-light .lead,
.service-detail-light p,
.service-detail-light .service-features {
    color: var(--text-muted);
}

.service-detail-light .service-features i {
    color: var(--accent);
}

.service-detail-dark h2 {
    color: #ffffff;
}

.service-detail-dark .lead,
.service-detail-dark p,
.service-detail-dark .service-features {
    color: rgba(255,255,255,0.85);
}

.service-detail-dark .service-features i {
    color: #ffffff;
}

/* Card Dark Theme (About page MVV) */
.card-dark {
    background-color: var(--primary);
    border: none;
}

.card-dark .card-title {
    color: var(--accent);
    font-family: 'Mulish', sans-serif;
}

.card-dark .card-text,
.card-dark .list-unstyled {
    font-family: 'Mulish', sans-serif;
    color: white;
}

.card-dark .fa-check {
    color: var(--accent);
}

.mvv-icon {
    font-size: 2.5rem;
    color: var(--accent);
}

/* Text Color Utilities */
.text-muted-custom {
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-bg {
    background-color: var(--form-bg);
}

/* Light Section Background */
.section-light {
    background-color: #fafafa;
}

/* Contact Section with subtle overlay */
.contact-section {
    background-color: #f5f3f0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217,119,87,0.04) 0%, transparent 50%, rgba(43,43,43,0.03) 100%);
    pointer-events: none;
}

/* Contact Section (index) */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-item i {
    width: 18px;
    text-align: center;
}

/* Contact Page - detailed items */
.contact-items-page {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item-page {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 0.75rem;
    background-color: rgba(217, 119, 87, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
}

.contact-item-page strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

/* Contact Page - form card */
.contact-page-form {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-input {
    border: 1px solid #e0e0e0;
    border-radius: 2rem !important;
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    background-color: #fff;
}

textarea.contact-input {
    resize: none;
}

.contact-section .contact-input {
    background-color: #ffffff;
    border-color: #ddd;
}

.contact-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.1);
}

/* CTA Box */
.cta-box {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 1.25rem;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* Contact Title (left side) */
.contact-title {
    font-family: 'Mulish', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

/* WhatsApp CTA Button */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.6rem 1.5rem;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    color: white;
}

/* Partner Logo */
.partner-logo {
    height: 120px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer a:hover {
    color: var(--accent);
    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(--accent);
}

/* 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: #2B2B2B;
    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: #2B2B2B;
    color: white;
}

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

.swiper-servicos:not(.swiper-initialized) .swiper-wrapper {
  opacity: 0;
}

.swiper-servicos.swiper-initialized .swiper-wrapper {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.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;
  object-fit: contain;
  width: 100%;
}

.btn-hero-rounded {
  background-color: #2B2B2B;
  color: #ffffff;
  border: none;
  border-radius: 2rem;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(43, 43, 43, 0.15);
}

.btn-hero-rounded:hover {
  background-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(217, 119, 87, 0.25);
}

.about-green-theme {
  background-color: #D97757;
  position: relative;
  overflow: hidden;
}

.about-bg {
  background: url('../img/group.png') center center / cover no-repeat;
  min-height: 45vh;
  display: flex;
  align-items: center;
}

.about-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,43,43,0.82) 0%, rgba(50,50,50,0.75) 50%, rgba(43,43,43,0.7) 100%);
  z-index: 1;
}

.about-title,
.about-subtitle,
.about-desc {
  color: #ffffff;
}

.about-green-theme .about-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 2.25rem;
  font-family: 'Mulish', sans-serif;
  margin-bottom: 1rem;
}

.about-green-theme .about-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.about-green-theme .about-desc {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

.about-green-theme .btn-hero-rounded {
  background-color: var(--accent);
  color: white;
}

.about-green-theme .btn-hero-rounded:hover {
  background-color: var(--accent-dark);
  color: white;
}

.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: #D97757 !important;
    color: #ffffff !important;
    border: none;
    font-weight: 500;
    padding: 1rem 1.25rem;
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}

.alert-success .btn-close {
    filter: invert(100%);
    opacity: 0.7;
}
.alert-success .btn-close:hover {
    opacity: 1;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Platform Features (index) */
.platform-feature {
    padding: 2rem 1.5rem;
    border: 1px solid #eee;
    border-radius: 1rem;
    height: 100%;
    transition: var(--transition);
}

.platform-feature:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(217, 119, 87, 0.08);
    transform: translateY(-4px);
}

.platform-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background-color: rgba(217, 119, 87, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.platform-feature-icon i {
    font-size: 1.25rem;
    color: var(--accent);
}

.platform-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.platform-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

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

.titulo-verde {
    font-size: 1.1rem;
    font-weight: 600;
    color: #D97757;
    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: #D97757;
    color: #ffffff;
}

/* 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;
    color: #ffffff;
}

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

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