/* Base Styles */
:root {
    --primary: #0f0f1a;
    --secondary: #101428;
    --accent: #e2b33c;
    --accent-hover: #d4a82c;
    --text: #f0f0f0;
    --text-dark: #a7a7a7;
    --border: #2a2a4a;
    --card-bg: #1a1a30;
    --gradient-start: #0f0f1a;
    --gradient-end: #101428;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --glow: 0 0 15px rgba(226, 179, 60, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}


/* Importando a fonte Poppins do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Aplicando a fonte Poppins em todo o site */
* {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Alternativa: você também pode aplicar apenas ao elemento body */
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins';
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.separator {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto;
    position: relative;
}

.separator::before, .separator::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    top: -3px;
}

.separator::before {
    left: -5px;
}

.separator::after {
    right: -5px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    box-shadow: var(--glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(226, 179, 60, 0.6);
    color: var(--primary);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px) scale(1.03);
}

/* Header e Menu de Navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    z-index: 1000;
    background-color: rgba(15, 15, 26, 0);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}



.business-logo {
    max-height: 40px; /* Reduced from 50px to make it smaller */
    width: auto;
    display: block;
}

/* If you need responsive adjustments */
@media (max-width: 768px) {
    .business-logo {
        max-height: 24px; /* Smaller on mobile devices */
    }
}

/* Menu Toggle Button */
.menu-toggle {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 0 15px rgba(226, 179, 60, 0.5);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.05);
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Hamburger Animation */
.menu-toggle.active .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 20, 0.98);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-container {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 20px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-menu {
    width: 50px;
    height: 50px;
    background-color: rgba(226, 179, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background-color: var(--accent);
}

.close-menu i {
    color: var(--accent);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.close-menu:hover i {
    color: var(--primary);
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.nav-menu li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}

.nav-menu li.active {
    opacity: 1;
    transform: translateY(0);
}

.nav-menu a {
    display: block;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
    color: var(--text);
}

.nav-menu a span {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 5px;
    font-weight: 400;
    opacity: 0.7;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--accent);
    transform: translateY(-5px);
}

.nav-menu a:hover::after {
    width: 50%;
}

.menu-footer {
    text-align: center;
}

.menu-footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.menu-footer .social-icons a {
    width: 45px;
    height: 45px;
    background-color: rgba(226, 179, 60, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

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

.menu-footer .social-icons a i {
    color: var(--accent);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.menu-footer .social-icons a:hover i {
    color: var(--primary);
}

/* Home Section */
#home {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/placeholder.svg?height=1080&width=1920') center/cover no-repeat;
    opacity: 0.1;
}

.home-content {
    max-width: 600px;
    z-index: 1;
}

.home-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.home-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.home-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    z-index: 0;
}

/* Floating Icon Container */
.floating-image-container {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    perspective: 1000px;
}

.justice-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite, rotate3d 15s linear infinite;
    transform-style: preserve-3d;
    z-index: 3;
}

.justice-icon i {
    font-size: 180px;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(226, 179, 60, 0.5),
                 0 0 40px rgba(226, 179, 60, 0.3),
                 0 0 60px rgba(226, 179, 60, 0.2);
}

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

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(5deg) rotateX(2deg);
    }
    50% {
        transform: rotateY(0deg) rotateX(5deg);
    }
    75% {
        transform: rotateY(-5deg) rotateX(2deg);
    }
    100% {
        transform: rotateY(0deg) rotateX(0deg);
    }
}

/* Icon Shine Effect */
.image-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.055) 25%,
        rgba(255, 255, 255, 0.158) 50%,
        rgba(255, 255, 255, 0.041) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 4;
    pointer-events: none;
    animation: shine 8s linear infinite;
    transform: skewX(-20deg);
}

@keyframes shine {
    0% {
        transform: skewX(-20deg) translateX(-150%);
    }
    50% {
        transform: skewX(-20deg) translateX(150%);
    }
    100% {
        transform: skewX(-20deg) translateX(150%);
    }
}

/* Icon Reflection */
.icon-reflection {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%) rotateX(180deg) scaleY(0.3);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.2;
    filter: blur(5px);
    z-index: 1;
    animation: reflection 6s ease-in-out infinite;
}

.icon-reflection::before {
    content: '\f53e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 180px;
    color: var(--accent);
    opacity: 0.5;
}

@keyframes reflection {
    0% {
        opacity: 0.1;
        transform: translateX(-50%) rotateX(180deg) scaleY(0.3);
    }
    50% {
        opacity: 0.2;
        transform: translateX(-50%) rotateX(180deg) scaleY(0.35);
    }
    100% {
        opacity: 0.1;
        transform: translateX(-50%) rotateX(180deg) scaleY(0.3);
    }
}

/* Particles Effect */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
    animation: particle-float 10s linear infinite;
    opacity: 0;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 15%; animation-delay: 1s; }
.particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 25%; animation-delay: 3s; }
.particle:nth-child(5) { top: 10%; left: 30%; animation-delay: 4s; }
.particle:nth-child(6) { top: 30%; left: 35%; animation-delay: 5s; }
.particle:nth-child(7) { top: 50%; left: 40%; animation-delay: 6s; }
.particle:nth-child(8) { top: 70%; left: 45%; animation-delay: 7s; }
.particle:nth-child(9) { top: 90%; left: 50%; animation-delay: 8s; }
.particle:nth-child(10) { top: 25%; left: 55%; animation-delay: 9s; }
.particle:nth-child(11) { top: 45%; left: 60%; animation-delay: 0.5s; }
.particle:nth-child(12) { top: 65%; left: 65%; animation-delay: 1.5s; }

@keyframes particle-float {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -100px) scale(0);
        opacity: 0;
    }
}

/* Light Beams */
.light-beam {
    position: absolute;
    top: -50%;
    right: 30%;
    width: 150px;
    height: 200%;
    background: linear-gradient(to bottom, 
        rgba(226, 179, 60, 0) 0%, 
        rgba(226, 179, 60, 0.05) 40%, 
        rgba(226, 179, 60, 0.1) 50%, 
        rgba(226, 179, 60, 0.05) 60%, 
        rgba(226, 179, 60, 0) 100%);
    transform: rotate(25deg);
    animation: beam-move 8s ease-in-out infinite;
    z-index: 1;
}

.light-beam-2 {
    right: 10%;
    width: 100px;
    animation-delay: 4s;
    transform: rotate(15deg);
}

@keyframes beam-move {
    0% {
        opacity: 0.3;
        transform: rotate(25deg) translateX(50px);
    }
    50% {
        opacity: 0.7;
        transform: rotate(25deg) translateX(0);
    }
    100% {
        opacity: 0.3;
        transform: rotate(25deg) translateX(50px);
    }
}

.glow-effect {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 179, 60, 0.2) 0%, rgba(226, 179, 60, 0) 70%);
    animation: pulse 4s infinite;
    right: -100px;
    z-index: 0;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.animate-text-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 5;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator i {
    font-size: 1.2rem;
    color: var(--accent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .floating-image-container {
        right: 5%;
        width: 350px;
        height: 350px;
    }
    
    .justice-icon i {
        font-size: 150px;
    }
    
    .icon-reflection::before {
        font-size: 150px;
    }
}

@media (max-width: 992px) {
    .floating-image-container {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        width: 300px;
        height: 300px;
        margin: 40px auto 0;
    }
    
    .justice-icon i {
        font-size: 120px;
    }
    
    .icon-reflection::before {
        font-size: 120px;
    }
    
    .home-image {
        position: relative;
        width: 100%;
        height: auto;
        transform: none;
        top: 0;
        display: flex;
        justify-content: center;
    }
    
    .home-content {
        max-width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .floating-image-container {
        width: 250px;
        height: 250px;
    }
    
    .justice-icon i {
        font-size: 100px;
    }
    
    .icon-reflection::before {
        font-size: 100px;
    }
}

/* Sobre Section */
/* Seção Sobre Nós Moderna */
#sobre-moderno {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary);
    overflow: hidden;
}

#sobre-moderno .sobre-background-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    clip-path: polygon(0 0, 60% 0, 40% 100%, 0% 100%);
    opacity: 0.2;
    z-index: 0;
}

#sobre-moderno .sobre-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#sobre-moderno .sobre-card {
    background-color: var(--secondary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

#sobre-moderno .sobre-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#sobre-moderno .nav-link {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#sobre-moderno .nav-link:hover {
    color: var(--accent);
}

#sobre-moderno .sobre-search {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

#sobre-moderno .sobre-search:hover {
    background-color: var(--accent);
}

#sobre-moderno .sobre-search i {
    color: var(--text);
}

#sobre-moderno .sobre-content {
    display: flex;
    position: relative;
}

#sobre-moderno .sobre-image-container {
    width: 40%;
    position: relative;
}

#sobre-moderno .sobre-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#sobre-moderno .sobre-info {
    width: 60%;
    padding: 40px;
    position: relative;
}

#sobre-moderno .sobre-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

#sobre-moderno .sobre-rating {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sobre-moderno .sobre-tag,
#sobre-moderno .sobre-year,
#sobre-moderno .sobre-award,
#sobre-moderno .sobre-clients {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
}

#sobre-moderno .sobre-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text);
    letter-spacing: 2px;
}

#sobre-moderno .sobre-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

#sobre-moderno .tab-link {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

#sobre-moderno .tab-link::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

#sobre-moderno .tab-link:hover,
#sobre-moderno .tab-link.active {
    color: var(--accent);
}

#sobre-moderno .tab-link.active::after {
    width: 100%;
}

#sobre-moderno .sobre-tab-content {
    position: relative;
    min-height: 200px;
}

#sobre-moderno .tab-pane {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#sobre-moderno .tab-pane.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

#sobre-moderno .sobre-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

#sobre-moderno .sobre-description p {
    margin-bottom: 15px;
}

#sobre-moderno .valores-list {
    list-style: none;
    padding: 0;
}

#sobre-moderno .valores-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

#sobre-moderno .valores-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 2px;
}

#sobre-moderno .equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

#sobre-moderno .equipe-membro {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

#sobre-moderno .equipe-membro:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

#sobre-moderno .equipe-avatar {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sobre-moderno .equipe-avatar i {
    font-size: 2rem;
    color: var(--primary);
}

#sobre-moderno .equipe-membro h4 {
    color: var(--text);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

#sobre-moderno .equipe-membro p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

#sobre-moderno .sobre-rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
}

#sobre-moderno .sobre-rating-stars i {
    color: var(--accent);
}

#sobre-moderno .rating-text {
    margin-left: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

#sobre-moderno .sobre-cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(226, 179, 60, 0.3);
}

#sobre-moderno .sobre-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(226, 179, 60, 0.4);
}

#sobre-moderno .sobre-navigation-arrows {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
}

#sobre-moderno .nav-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s ease;
}

#sobre-moderno .nav-arrow:hover {
    background-color: var(--accent);
    color: var(--primary);
}

/* Responsividade */
@media (max-width: 992px) {
    #sobre-moderno .sobre-content {
        flex-direction: column;
    }
    
    #sobre-moderno .sobre-image-container,
    #sobre-moderno .sobre-info {
        width: 100%;
    }
    
    #sobre-moderno .sobre-image-container {
        height: 400px;
    }
    
    #sobre-moderno .sobre-title {
        font-size: 2.5rem;
    }
    
    #sobre-moderno .sobre-tabs {
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    #sobre-moderno .tab-link::after {
        bottom: -6px;
    }
    
    #sobre-moderno .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #sobre-moderno .sobre-meta {
        gap: 10px;
    }
    
    #sobre-moderno .sobre-image-container {
        height: 300px;
    }
    
    #sobre-moderno .sobre-info {
        padding: 30px 20px;
    }
    
    #sobre-moderno .sobre-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    #sobre-moderno .sobre-tabs {
        gap: 15px;
    }
    
    #sobre-moderno .tab-link {
        font-size: 0.8rem;
    }
    
    #sobre-moderno .sobre-navigation-arrows {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    #sobre-moderno .sobre-image-container {
        height: 250px;
    }
    
    #sobre-moderno .sobre-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    #sobre-moderno .sobre-title {
        font-size: 1.8rem;
    }
    
    #sobre-moderno .sobre-tabs {
        gap: 10px;
    }
    
    #sobre-moderno .tab-link {
        font-size: 0.7rem;
    }
    
    #sobre-moderno .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    #sobre-moderno .equipe-grid {
        grid-template-columns: 1fr;
    }
}
/* Especialidades Section */
.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.especialidade-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.especialidade-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.especialidade-card:hover {
    transform: translateY(-10px);
}

.especialidade-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(226, 179, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

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

.especialidade-card:hover .card-icon {
    background-color: var(--accent);
}

.especialidade-card:hover .card-icon i {
    color: var(--primary);
}

.especialidade-card h3 {
    margin-bottom: 15px;
}

/* Profissionais Section */
.profissionais-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.profissionais-slider::-webkit-scrollbar {
    display: none;
}

.profissional-card {
    min-width: 280px;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.profissional-image {
    height: 300px;
    overflow: hidden;
}

.profissional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.profissional-info {
    padding: 20px;
    text-align: center;
}

.profissional-info h3 {
    margin-bottom: 5px;
}

.cargo {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 5px;
}

.especialidade {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(226, 179, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a i {
    color: var(--accent);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-5px) rotate(360deg);
}

.social-links a:hover i {
    color: var(--primary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: none;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

/* Espaco Section */
.espaco-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(15, 15, 26, 0.9), rgba(15, 15, 26, 0));
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    margin-bottom: 5px;
}

/* Diferenciais Section */
.diferenciais-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diferencial-item {
    display: flex;
    gap: 20px;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.diferencial-icon {
    min-width: 60px;
    height: 60px;
    background-color: rgba(226, 179, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.diferencial-text h3 {
    margin-bottom: 10px;
}

/* Processo Section */
.processo-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.processo-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
}

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

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 1;
    margin-right: 30px;
    box-shadow: var(--glow);
}

.timeline-content {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex: 1;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--card-bg);
    transform: rotate(45deg);
}

/* Depoimentos Section */
.depoimentos-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.depoimentos-track {
    display: flex;
    transition: transform 0.5s ease;
    touch-action: pan-y;
    gap: 30px; /* Adiciona espaço entre os cartões */
}

.depoimento-card {
    min-width: 100%;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    opacity: 0.5;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.depoimento-card.active {
    opacity: 1;
    transform: scale(1);
}

.depoimento-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(226, 179, 60, 0.2);
}

.depoimento-text {
    font-style: italic;
    margin-bottom: 30px;
    padding-left: 40px;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.autor-inicial {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.autor-inicial.feminino {
    background: linear-gradient(135deg, #e83e8c, #9c27b0);
    color: white;
}

.autor-inicial.masculino {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
}

.autor-inicial:hover {
    transform: scale(1.1);
}

.autor-info h4 {
    margin-bottom: 0;
}

.autor-info p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
}

.depoimentos-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.depoimentos-dots {
    display: flex;
    gap: 10px;
}

.depo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.depo-dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

.depo-prev-btn, .depo-next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: none;
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.depo-prev-btn:hover, .depo-next-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

/* Adiciona animação de entrada e saída para os depoimentos */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}
/* Casos Section */
.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.caso-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent);
}

.caso-card:hover {
    transform: translateY(-10px);
}

.caso-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.caso-area {
    background-color: rgba(226, 179, 60, 0.1);
    color: var(--accent);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.caso-desc {
    margin-bottom: 20px;
}

.caso-resultado {
    padding-top: 15px;
    border-top: 1px solid var(--border);
    font-weight: 600;
}

.caso-resultado span {
    color: var(--accent);
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-icon {
    color: var(--accent);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 1000px;
}

/* Serviços Section */
.servicos-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--card-bg);
    border: none;
    border-radius: 50px;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.tab-pane {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    display: none;
    box-shadow: var(--shadow);
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.tab-pane ul {
    margin-top: 20px;
    padding-left: 20px;
}

.tab-pane ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.tab-pane ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Informações Section - Redesigned */
.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card-modern {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.info-icon-wrapper {
    position: relative;
    padding: 30px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.info-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(226, 179, 60, 0.3) 0%, rgba(226, 179, 60, 0) 70%);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.info-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(226, 179, 60, 0.5);
}

.info-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.info-content {
    padding: 30px;
}

.info-content h3 {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.info-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.info-details {
    margin-top: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.info-label {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-value {
    color: var(--text);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.info-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.info-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 2px;
}

.idiomas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.idioma-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.idioma-item i {
    color: var(--accent);
}

/* Agende Section - Modern Styling */
.agende-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #010b14 0%, #021222 100%);
    overflow: hidden;
  }
  
  /* Section Header */
  .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #f8b500);
    margin: 0 auto 20px;
    border-radius: 2px;
  }
  
  .section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
  }
  
  /* Animated Background */
  .animated-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
  }
  
  .bg-shape:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: linear-gradient(135deg, rgba(226, 179, 60, 0.1) 0%, rgba(226, 179, 60, 0.05) 100%);
    animation: float 15s infinite alternate ease-in-out;
  }
  
  .bg-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    background: linear-gradient(135deg, rgba(226, 179, 60, 0.08) 0%, rgba(226, 179, 60, 0.03) 100%);
    animation: float 20s infinite alternate-reverse ease-in-out;
  }
  
  .bg-shape:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 15%;
    background: linear-gradient(135deg, rgba(226, 179, 60, 0.06) 0%, rgba(226, 179, 60, 0.02) 100%);
    animation: float 18s infinite alternate ease-in-out;
    animation-delay: 5s;
  }
  
  /* Contact Cards */
  .contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .contact-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), #f8b500);
    z-index: 1;
    transition: height 0.3s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .contact-card:hover::before {
    height: 8px;
  }
  
  .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(226, 179, 60, 0.1) 0%, rgba(226, 179, 60, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
  }
  
  .card-icon i {
    font-size: 28px;
    color: var(--accent);
    transition: all 0.3s ease;
  }
  
  .contact-card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(226, 179, 60, 0.15) 0%, rgba(226, 179, 60, 0.1) 100%);
  }
  
  .contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }
  
  .contact-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  .card-link {
    display: inline-block;
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
  }
  
  .card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
  }
  
  .card-link:hover {
    color: #d9a520;
  }
  
  .card-link:hover::after {
    width: 100%;
  }
  
  /* Form Section */
  .form-section {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .form-intro {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .form-intro h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .form-intro p {
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Form Wrapper */
  .form-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
  }
  
  /* Form Progress */
  .form-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
  }
  
  .progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    margin-bottom: 8px;
    transition: all 0.3s ease;
  }
  
  .step-label {
    font-size: 0.9rem;
    color: #999;
    transition: all 0.3s ease;
  }
  
  .progress-step.active .step-number {
    background: var(--accent);
    color: white;
  }
  
  .progress-step.active .step-label {
    color: #333;
    font-weight: 500;
  }
  
  .progress-step.completed .step-number {
    background: #4CAF50;
    color: white;
  }
  
  .progress-line {
    flex: 1;
    height: 3px;
    background: #eee;
    position: relative;
    z-index: 1;
    margin: 0 15px;
  }
  
  .progress-line-fill {
    height: 100%;
    background: var(--accent);
    width: 0;
    transition: width 0.5s ease;
  }
  
  /* Form Container */
  .form-container {
    padding: 40px;
  }
  
  /* Form Steps */
  .form-step {
    display: none;
  }
  
  .form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  /* Form Elements */
  .form-group {
    margin-bottom: 25px;
    position: relative;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(226, 179, 60, 0.1);
  }
  
  /* Floating Labels */
  .floating-label {
    position: relative;
  }
  
  .floating-label label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: #999;
    pointer-events: none;
    transition: all 0.2s ease;
    background-color: transparent;
    padding: 0 5px;
    font-size: 1rem;
  }
  
  .floating-label .form-control:focus ~ label,
  .floating-label .form-control:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--accent);
    background-color: white;
  }
  
  .floating-label .form-control {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  
  /* Hide placeholder when label is floating */
  .floating-label .form-control::placeholder {
    color: transparent;
  }
  
  /* Select Styling */
  .select-wrapper {
    position: relative;
  }
  
  .select-wrapper select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
  }
  
  .select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: transform 0.2s ease;
  }
  
  .select-wrapper:focus-within .select-icon {
    transform: translateY(-50%) rotate(180deg);
    color: var(--accent);
  }
  
  /* Date Input */
  .date-input {
    position: relative;
  }
  
  .date-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
  }
  
  .date-input:focus-within .date-icon {
    color: var(--accent);
  }
  
  /* Time Options */
  .time-select label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
  }
  
  .time-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .time-option {
    position: relative;
  }
  
  .time-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .time-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f9f9f9;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
  }
  
  .time-option label i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #999;
    transition: all 0.3s ease;
  }
  
  .time-option label span {
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
    transition: all 0.3s ease;
  }
  
  .time-option label small {
    font-size: 0.8rem;
    color: #999;
    transition: all 0.3s ease;
  }
  
  .time-option input:checked + label {
    border-color: var(--accent);
    background: rgba(226, 179, 60, 0.05);
  }
  
  .time-option input:checked + label i {
    color: var(--accent);
  }
  
  .time-option input:checked + label span {
    color: #333;
  }
  
  .time-option input:checked + label small {
    color: #666;
  }
  
  /* Custom Checkbox */
  .checkbox-wrapper {
    display: flex;
    align-items: flex-start;
  }
  
  .checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
  }
  
  .checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 6px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .checkbox-custom i {
    color: white;
    font-size: 14px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
  }
  
  .checkbox-wrapper input[type="checkbox"]:checked + .checkbox-label .checkbox-custom {
    background-color: var(--accent);
    border-color: var(--accent);
  }
  
  .checkbox-wrapper input[type="checkbox"]:checked + .checkbox-label .checkbox-custom i {
    opacity: 1;
    transform: scale(1);
  }
  
  .checkbox-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
  }
  
  .checkbox-text a {
    color: var(--accent);
    text-decoration: none;
    transition: text-decoration 0.2s ease;
  }
  
  .checkbox-text a:hover {
    text-decoration: underline;
  }
  
  /* Form Buttons */
  .form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }
  
  .btn-prev, .btn-next {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .btn-prev {
    background: #f1f1f1;
    color: #666;
  }
  
  .btn-prev:hover {
    background: #e5e5e5;
  }
  
  .btn-next {
    background: #f1f1f1;
    color: #666;
  }
  
  .btn-next:hover {
    background: #e5e5e5;
  }
  
  .btn-primary {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--accent), #f8b500);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 179, 60, 0.3);
  }
  
  /* Submit Button */
  .submit-btn {
    position: relative;
    overflow: hidden;
  }
  
  .btn-text, .btn-loading {
    transition: opacity 0.3s ease;
  }
  
  .btn-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
  }
  
  .submit-btn.loading .btn-text {
    opacity: 0;
  }
  
  .submit-btn.loading .btn-loading {
    opacity: 1;
  }
  
  /* Spinner */
  .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    margin-right: 10px;
    animation: spin 1s linear infinite;
  }
  
  /* Success Message */
  .success-message {
    padding: 60px 40px;
    text-align: center;
    display: none;
    animation: zoomIn 0.5s ease-out;
  }
  
  .success-icon {
    width: 100px;
    height: 100px;
    background: rgba(226, 179, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
  }
  
  .success-icon i {
    font-size: 50px;
    color: var(--accent);
  }
  
  .success-message h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
  }
  
  .success-message p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .success-message .btn-primary {
    margin-top: 10px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes float {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(20px, 20px);
    }
    100% {
      transform: translate(-20px, -20px);
    }
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .contact-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .agende-section {
      padding: 60px 0;
    }
    
    .section-header h2 {
      font-size: 2rem;
    }
    
    .contact-cards {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .form-row {
      grid-template-columns: 1fr;
    }
    
    .time-options {
      grid-template-columns: 1fr;
    }
    
    .form-progress {
      padding: 20px;
    }
    
    .form-container {
      padding: 30px 20px;
    }
    
    .form-buttons {
      flex-direction: column;
      gap: 15px;
    }
    
    .btn-prev, .btn-next, .btn-primary {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .section-header h2 {
      font-size: 1.75rem;
    }
    
    .progress-step .step-label {
      display: none;
    }
  }

/* Contato Section */
.contato-content {
    display: flex;
    gap: 50px;
}

.contato-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contato-map {
    flex: 1;
}

.contato-card {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.contato-card:hover {
    transform: translateY(-5px);
}

.contato-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(226, 179, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contato-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.contato-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(226, 179, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a i {
    color: var(--accent);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-5px) rotate(360deg);
}

.social-icons a:hover i {
    color: var(--primary);
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.map-container:hover .map-overlay {
    opacity: 1;
}


.map-container {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-container:hover iframe {
    filter: grayscale(50%);
}

/* Footer */
#footer {
    background-color: var(--secondary);
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(226, 179, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a i {
    color: var(--accent);
    font-size: 1.2rem;
}

.footer-social a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.footer-social a:hover i {
    color: var(--primary);
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

.footer-form {
    display: flex;
    margin-top: 20px;
}

.footer-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.footer-form button {
    width: 50px;
    background-color: var(--accent);
    border: none;
    border-radius: 0 5px 5px 0;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: var(--glow);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-hover);
    transform: translateY(-5px) scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .home-content h2 {
        font-size: 3rem;
    }
    
    .home-image {
        width: 40%;
    }
    
    .espaco-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .home-content h2 {
        font-size: 2.5rem;
    }
    
    .home-image {
        display: none;
    }
    
    .home-content {
        max-width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    #sobre .sobre-content {
        flex-direction: column;
    }
    
    .agende-content {
        flex-direction: column;
    }
    
    .contato-content {
        flex-direction: column;
    }
    
    .espaco-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu ul {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .espaco-gallery {
        grid-template-columns: 1fr;
    }
    
    .idiomas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 2rem;
    }
    
    .home-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .especialidades-grid {
        grid-template-columns: 1fr;
    }
    
    .diferenciais-content {
        grid-template-columns: 1fr;
    }
    
    .casos-grid {
        grid-template-columns: 1fr;
    }
    
    .info-container {
        grid-template-columns: 1fr;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
    }
}