
:root {
    --accent: #62152d;
    --accent-soft: rgba(98, 21, 45, 0.08);
    --text: #1a1a1a;
    --muted: #666666;
    --card-bg: #ffffff;
    --body-bg: #fdfdfd;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    --radius: 18px;
    --wrap: 850px;
    --btn-cta: #62152d;
}

.container {
    max-width: var(--wrap);
}

@font-face {
    font-family: 'Indivisible';
    src: url('fonts/Indivisible-Bold.eot');
    src: local('Indivisible Bold'), local('Indivisible-Bold'),
    url('fonts/Indivisible-Bold.eot?#iefix') format('embedded-opentype'),
    url('fonts/Indivisible-Bold.woff2') format('woff2'),
    url('fonts/Indivisible-Bold.woff') format('woff'),
    url('fonts/Indivisible-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--body-bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    padding: 40px 0 20px;
    margin: auto;
    max-width: 1050px;
}

.banner {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: transparent;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    animation: bannerFade 1.2s ease-out forwards;
}

@keyframes bannerFade {
    from {
    opacity: 0;
    transform: scale(1.02);
    }

    to {
    opacity: 1;
    transform: scale(1);
    }
}

/* .banner img {
    width: 100%;
    height: 100%;
    object-fit: fill;
} */

.brand {
    margin-top: 24px;
    margin: auto;
    max-width: 800px;
    text-align: center;
}

h1,
#tituloPrincipal {
    margin: 20px auto;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: bold;
    letter-spacing: -0.03em;
    color: var(--accent);
    font-family: 'Indivisible', sans-serif;
}

.brand ul {
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    list-style: "- ";
    display: inline-block;
    text-align: left;
}

main {
    display: block;
    margin: auto;
    padding: 20px 0 60px;
    max-width: 1050px;
    overflow: hidden;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.card-logo {
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.card-logo img {
    max-width: 100%;
    height: auto;
}

.about-text p {
    margin: 0 0 16px;
    font-weight: 500;
    font-size: 17px;
    color: #333;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.feature-item {
    background: var(--accent-soft);
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(140, 45, 45, 0.1);
}

.feature-item b {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 4px;
}

.feature-item span strong {
    color: var(--accent);
    font-weight: 800;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-cta {
    background: var(--btn-cta);
    color: white;
    box-shadow: 0 8px 20px rgba(140, 45, 45, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(98, 21, 45, 0.3);
    background: #501124;
    color: white;
}

.btn-outline {
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(140, 45, 45, 0.2);
}

.btn-outline:hover {
    background: rgba(140, 45, 45, 0.15);
    color: var(--accent);
}

.section-title {
    text-align: center;
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    opacity: 0.9;
}

.list-card h3 {
    margin: 0 0 16px;
    text-align: center;
    font-weight: 900;
    color: var(--accent);
}

.list-card ul {
    padding-left: 20px;
    margin: 0;
}

.list-card li {
    margin-bottom: 5px;
    color: #444;
}

details {
    margin-bottom: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    overflow: hidden;
}

summary {
    padding: 16px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

summary:hover {
    background: var(--accent-soft);
}

.faq-content {
    overflow: hidden;
    transition: height 0.4s ease-out;
    color: #555;
}

.faq-content-inner {
    padding: 0 16px 16px 20px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.faq-content-summary {
    margin: 16px;
    padding-left: 16px;
    border-left: solid var(--accent);
}

details[open] summary::after {
    transform: rotate(90deg);
}


.contact-pill {
    margin-bottom: 12px;
}

.contact-pill small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.contact-pill span {
    display: block;
    font-size: 15px;
    font-weight: 500;
}

footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    text-align: left;
}

.footer-links {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    header {
    padding: 20px 0 0;
    }

    .banner {
    margin-bottom: 20px;
    }

    .brand {
    display: block !important;
    text-align: left;
    }

    #tituloPrincipal {
    text-align: left;
    padding: 0 20px;
    }

    .card-logo {
    height: 200px;
    min-height: 200px;
    }

    .card-logo img {
    max-width: 200px;
    }
}

.borda {
    border: 2px solid black;
}

/* Estilos do Carrossel de Depoimentos */
.carousel-depoimentos {
    background: linear-gradient(180deg, var(--accent-soft) 0%, rgba(255,255,255,0) 100%);
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: 1;
}

.carousel-inner-depo {
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 550px;
    margin: auto;
    background: white;
    border: 1px solid var(--border);
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 600px;
    transition: transform 0.5s ease;
}

.carousel-item:hover img {
    transform: scale(1.02);
}

/* Botões de paginação (anterior/próximo) */
.btn-nav {
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(140, 45, 45, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    flex-shrink: 0;
}

.btn-nav:hover, .btn-nav:active {
    background: var(--accent);
    color: white;
}

.carousel-indicators {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
    gap: 8px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--accent);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.3;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    width: 20px;
    border-radius: 10px;
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.google-stars {
    color: #fbbc04;
    font-size: 20px;
    letter-spacing: 2px;
}

/* Animações de Scroll-Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Hover Effects for Cards */
.list-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

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

/* Banner Animation improvement */
.banner img {
    width: 100%;
    height: auto;
    display: block;
    animation: bannerFade 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
    transition: none;
    opacity: 1;
    transform: none;
    visibility: visible;
    }
}

/* Team Cards */
.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}
.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.team-img-container {
    position: relative;
    width: clamp(140px, 28vw, 200px);
    height: clamp(140px, 28vw, 200px);
    margin: 0 auto;
}
.team-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--accent-soft);
    border: 3px solid var(--accent);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.team-img-wrap::after {
    content: '📸';
    font-size: clamp(40px, 8vw, 60px);
    opacity: 0.2;
    position: absolute;
}
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}
.team-img-secondary {
    position: absolute;
    bottom: -6%;
    right: -6%;
    width: 55%;
    height: 55%;
    border-radius: 50%;
    border: 3px solid var(--card-bg);
    background-color: var(--accent-soft);
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-name {
    font-weight: 900;
    color: var(--accent);
    font-size: 19px;
    margin-top: 15px;
    margin-bottom: 4px;
}
.team-crm {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}
.team-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 14px;
    line-height: 1.4;
}
.team-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}
.team-specialties {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0;
    text-align: left;
}
.team-specialties li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #555;
    margin-bottom: 3px;
    line-height: 1.25;
}
.team-specialties li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
    line-height: 14px;
}

@media (max-width: 768px) {
    .team-scroll-mobile {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    padding-left: 5vw;
    padding-right: 5vw;
    -ms-overflow-style: none;
    scrollbar-width: none;
    justify-content: flex-start !important;
    }
    .team-scroll-mobile::-webkit-scrollbar {
    display: none;
    }
    .team-scroll-mobile > div {
    flex: 0 0 85vw;
    max-width: 85vw;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.6;
    transform: scale(0.95);
    }
    .team-scroll-mobile > div.active-card {
    opacity: 1;
    transform: scale(1);
    }
    .carousel-mobile-wrapper {
    position: relative;
    }
    .carousel-indicators-mobile {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    }
    .carousel-indicators-mobile .dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
    }
    .carousel-indicators-mobile .dot.active {
    background-color: var(--accent);
    transform: scale(1.3);
    }
    .btn-scroll-mobile {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    width: 40px;
    height: 80px;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    cursor: pointer;
    box-shadow: none;
    font-size: 28px;
    transition: opacity 0.3s;
    opacity: 0.6;
    user-select: none;
    }
    .btn-scroll-mobile:active {
    opacity: 1;
    transform: translateY(-50%) scale(0.95);
    }
    .btn-scroll-mobile.left { 
    left: 10px; 
    }
    .btn-scroll-mobile.right { 
    right: 10px; 
    animation: pulseRight 2s infinite ease-in-out;
    }
    @keyframes pulseRight {
    0% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(4px); }
    100% { transform: translateY(-50%) translateX(0); }
    }
}
.btn-scroll-mobile {
    display: none;
}
