      :root {
            --primary: #3f276b;
            --primary-light: #5d3a9b;
            --secondary: #020220;
            --accent: #ff6b6b;
            --light: #f8f9fa;
            --dark: #212529;
            --text: #333333;
            --gray: #cccccc;
            --overlay: rgba(0, 0, 0, 0.6);
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Cardo', serif;
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.8;
            font-size: 1.1rem;
            background-color: #fafafa;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'DM Serif Display', serif;
            font-weight: 600;
            line-height: 1.3;
            color: var(--primary);
        }
        
        .montserrat {
            font-family: 'Montserrat', sans-serif;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        .container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            gap: 10px;
            white-space: nowrap;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: var(--shadow);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(63, 39, 107, 0.3);
        }
        
        .btn-secondary {
            background-color: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        .highlight {
            position: relative;
            display: inline-block;
            z-index: 1;
        }
        
        .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: rgba(63, 39, 107, 0.2);
            z-index: -1;
            transform: skew(-15deg);
            transition: var(--transition);
        }
        
        .highlight:hover::after {
            height: 18px;
            background-color: rgba(63, 39, 107, 0.3);
        }
        /* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo img {
    height: 50px;
    transition: var(--transition);
}

.header.scrolled .header-logo img {
    height: 40px;
}

.header-logo-text {
    display: flex;
    flex-direction: column;
}

.header-logo-text .title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--primary);
    line-height: 1.2;
    transition: var(--transition);
}

.header.scrolled .header-logo-text .title {
    font-size: 1.1rem;
}

.header-logo-text .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--text);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.header-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.header-nav-link:hover::after {
    width: 100%;
}

.header-nav-link:hover {
    color: var(--primary);
}

.header-cta {
    margin-left: 20px;
}

.menu-mobile {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    z-index: 1001;
}

/* Hero Styles */
.hero {
    position: relative;
    min-height: 130vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%), 
                url('pattern.png') center/cover;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(63, 39, 107, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.1;
}

.hero h1 span {
    display: block;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-services {
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

.service-icon {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 1.2rem;
}

.service-text {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: bold;
}


.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-media {
    flex: 1;
    position: relative;
    perspective: 1000px;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    border: 10px solid white;
}

.hero-media:hover .video-container {
    transform: rotateY(0) rotateX(0) scale(1.02);
}

.video-container video {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.video-play-button:hover {
    background-color: var(--primary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-scroll {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary);
    cursor: pointer;
    z-index: 5;
}

.scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 2s infinite;
}

.scroll-icon {
    width: 40px;
    height: 60px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    animation: bounce 2s infinite;
}

.scroll-icon::before {
    content: '';
    width: 6px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 3px;
}

/* WhatsApp Float Button */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-list {
    list-style: none;
    margin-bottom: 40px;
}

.mobile-menu-item {
    margin-bottom: 20px;
}

.mobile-menu-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu-cta {
    width: 100%;
    text-align: center;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles - Mobile First Approach */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .service-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .header-nav {
        display: none;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        flex-direction: column-reverse; /* Inverte a ordem para vídeo primeiro */
        padding-top: 0;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 0;
    }
    
    .hero-services {
        display: inline-block;
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-media {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .video-container {
        transform: none;
    }
    
    .hero-media:hover .video-container {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 0 50px;
    }
   
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 1 0 calc(50% - 20px);
        margin-bottom: 20px;
    }
    
    .float-whatsapp {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
    
    .video-container {
        border-width: 8px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0 40px;
    }
    .hero {
    min-height: 190vh;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h1 span.highlight {
        font-size: 1.5rem;
    }
    
    .header-logo img {
        height: 40px;
    }
    
    .header-logo-text .title {
        font-size: 1.1rem;
    }
    
    .header.scrolled .header-logo img {
        height: 35px;
    }
    
    .header.scrolled .header-logo-text .title {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-item {
        padding-left: 30px;
    }
    
    .service-icon {
        font-size: 1rem;
    }
    
    .hero-media {
        margin-bottom: 20px;
    }
    
    .video-container {
        border-width: 5px;
        border-radius: 15px;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .mobile-menu {
        max-width: 300px;
        padding: 70px 20px 20px;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .service-text {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        flex: 1 0 100%;
    }
}
    /* about  */
    .section {
        padding: 100px 0;
        position: relative;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .section-title span {
        position: relative;
    }
    
    .section-title span::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 0;
        width: 100%;
        height: 12px;
        background-color: rgba(63, 39, 107, 0.2);
        z-index: -1;
        transform: skew(-15deg);
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        color: var(--text);
        font-weight: 500;
        letter-spacing: 1px;
    }
    
    .about-content {
        display: flex;
        align-items: center;
        gap: 60px;
    }
    
    .about-image-container {
        flex: 1;
        position: relative;
        max-width: 500px;
    }
    
    .about-image-wrapper {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }
    
    .about-image {
        width: 100%;
        display: block;
        position: relative;
        z-index: 2;
    }
    
    .image-border {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 100%;
        height: 100%;
        border: 3px solid var(--primary);
        border-radius: 15px;
        z-index: 1;
    }
    
    .image-dots {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 100px;
        height: 100px;
        background-image: radial-gradient(var(--primary) 2px, transparent 2px);
        background-size: 15px 15px;
        z-index: 0;
    }
    
    .status-badge {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        padding: 10px 25px;
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 3;
    }
    
    .online-indicator {
        display: inline-block;
        width: 12px;
        height: 12px;
        background-color: #25D366;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
        100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }
    
    .about-text {
        flex: 1;
    }
    
    .about-name {
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: var(--primary);
    }
    
    .about-description {
        font-size: 1.2rem;
        margin-bottom: 30px;
        line-height: 1.8;
    }
    
    .about-highlights {
        margin: 40px 0;
    }
    
    .highlight-item {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .highlight-item i {
        color: var(--primary);
        font-size: 1.5rem;
        margin-top: 3px;
    }
    
    .highlight-item p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .highlight-item strong {
        color: var(--primary);
        font-weight: 700;
    }
    
    .about-cta {
        background-color: rgba(63, 39, 107, 0.05);
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        margin-top: 40px;
    }
    
    .cta-text {
        font-size: 1.2rem;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    /* Responsividade */
    @media (max-width: 992px) {
        .about-content {
            flex-direction: column;
        }
        
        .about-image-container {
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.3rem;
        }
    }
    
    @media (max-width: 768px) {
        .section {
            padding: 70px 0;
        }
        
        .section-header {
            margin-bottom: 40px;
        }
        
        .about-name {
            font-size: 1.8rem;
        }
        
        .highlight-item {
            flex-direction: column;
            text-align: center;
        }
        
        .highlight-item i {
            margin-bottom: 10px;
        }
    }

/* Estilos Gerais */
.services-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #efe3ff 0%, #c0d7fc 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-weight: 700;
}

.section-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid de Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Cards */
.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), 
              rgba(106, 76, 147, 0.1) 0%, 
              transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.card-content {
  padding: 30px;
  flex-grow: 1;
  text-align: center;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6A4C93 0%, #3A86FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(106, 76, 147, 0.3);
  transition: all 0.3s;
}

.service-card:hover .card-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 25px rgba(106, 76, 147, 0.4);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #6A4C93;
  font-weight: 600;
}

.service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF6B6B;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}

.card-button {
  background: linear-gradient(135deg, #6A4C93 0%, #3A86FF 100%);
  color: white;
  border: none;
  padding: 10px 10px 10px 10px; /* padding irregular */
  width: auto;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 45px;
  margin: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex; /* não ocupa 90% para não forçar alinhamento */
  align-items: center;
  justify-content: center;
  box-shadow: 2px 4px 15px rgba(58, 134, 255, 0.4);
  
}



.card-button:hover {
  background: linear-gradient(135deg, #5a3c83 0%, #2a76ef 100%);
  box-shadow: 2px 4px 15px rgba(58, 134, 255, 0.8);
}

.card-button i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.card-button:hover i {
  transform: translateX(5px);
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 30px;
  border-radius: 15px;
  max-width: 900px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  position: relative;
  animation: modalFadeIn 0.4s;
}

@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(-50px);}
  to {opacity: 1; transform: translateY(0);}
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 25px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #6A4C93;
}

.modal-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.modal-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6A4C93 0%, #3A86FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 2rem;
  color: #6A4C93;
  margin: 0;
}

.modal-body {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.modal-text {
  flex: 1;
}

.modal-text h3 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 20px;
}

.modal-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.modal-text li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 35px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #555;
}

.modal-text i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #6A4C93;
  font-size: 1.2rem;
}

.modal-text p {
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
}

.modal-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  display: none; /* Hidden on mobile */
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-footer {
  text-align: center;
}

.agendar-btn {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.agendar-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #e65a5a 0%, #e67d43 100%);
}

/* Responsividade */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .card-content {
    padding: 25px 20px;
  }
  
  .modal-content {
    margin: 10% auto;
    padding: 20px;
  }
  
  .modal-header {
    flex-direction: column;
    text-align: center;
  }
  
  .modal-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .modal-body {
    flex-direction: column;
  }
  
  .modal-image {
    display: block;
    order: -1;
    margin-bottom: 20px;
    max-height: 200px;
  }
}

@media (min-width: 992px) {
  .modal-image {
    display: block;
  }
}

/* Efeitos Especiais */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #6A4C93 0%, #3A86FF 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* Animações */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.service-card:hover {
  animation: float 3s ease-in-out infinite;
}

/* Importação de fontes premium */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&display=swap');

/* Variáveis de design */
:root {
  --primary-color: #6A4C93;
  --primary-light: #8E6CB3;
  --secondary-color: #FF9E7D;
  --dark-text: #2D3748;
  --light-text: #4A5568;
  --lighter-text: #718096;
  --background-light: #F8FAFC;
  --background-white: #FFFFFF;
  --border-radius: 12px;
  --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* Reset e estilos base */
.psychologist-presentation {
  padding: 100px 0;
  background-color: var(--background-light);
  font-family: 'Manrope', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
}

.elegant-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Estilos para o retrato da Dra. Luara */
.doctor-portrait {
  position: relative;
  flex: 1;
  max-width: 400px;
  min-width: 350px;
}

.portrait-frame {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  aspect-ratio: 3/4;
  z-index: 2;
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  padding: 30px 20px 20px;
  color: white;
}

.crp-badge {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.expertise-tags {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.expertise-tag {
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.expertise-tag:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.portrait-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  top: 20px;
  left: 20px;
  z-index: 1;
  transition: var(--transition);
}

.doctor-portrait:hover .portrait-decoration {
  top: 15px;
  left: 15px;
}

/* Estilos para o conteúdo profissional */
.professional-content {
  flex: 1.5;
}

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 15px;
  line-height: 1.2;
}

.highlight-name {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.highlight-name::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(106, 76, 147, 0.2);
  z-index: -1;
}

.professional-slogan {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
}

.professional-slogan::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.specialty-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.specialty-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--light-text);
}

.specialty-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Widget de serviços */
.service-explorer {
  background: var(--background-white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.explorer-header {
  margin-bottom: 30px;
}

.explorer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.explorer-subtitle {
  color: var(--lighter-text);
  font-size: 1rem;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-option {
  background: var(--background-white);
  border: 1px solid #EDF2F7;
  border-radius: var(--border-radius);
  padding: 25px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  z-index: 1;
}

.service-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.option-content {
  position: relative;
  z-index: 2;
}

.option-icon-bg {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}

.service-option:hover .option-icon-bg {
  transform: rotate(15deg) scale(1.1);
}

.service-option h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-text);
}

.service-option p {
  color: var(--lighter-text);
  font-size: 0.95rem;
}

.option-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(106, 76, 147, 0.1) 0%, rgba(142, 108, 179, 0.05) 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.service-option:hover .option-hover-effect {
  opacity: 1;
}

/* Painel de detalhes dos serviços */
.service-details-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 40px;
}

.service-details-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.details-container {
  background: var(--background-white);
  border-radius: var(--border-radius);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.service-details-overlay.active .details-container {
  transform: translateY(0);
  opacity: 1;
}

.close-details-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--background-light);
  border: none;
  font-size: 1.2rem;
  color: var(--light-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.close-details-btn:hover {
  background: var(--primary-color);
  color: white;
}

.service-detail {
  padding: 50px;
}

.detail-header {
  margin-bottom: 40px;
  text-align: center;
}

.detail-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
}

.detail-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.detail-subtitle {
  color: var(--light-text);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.detail-content {
  max-width: 700px;
  margin: 0 auto;
}

.detail-section {
  margin-bottom: 40px;
}

.detail-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-number {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  opacity: 0.3;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.feature-card {
  background: var(--background-light);
  border-radius: var(--border-radius);
  padding: 25px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--light-text);
  font-size: 0.95rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.benefit-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EDF2F7;
}

.benefit-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.benefit-list strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.benefit-list p {
  color: var(--light-text);
  font-size: 0.95rem;
  margin: 0;
}

.cta-section {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #EDF2F7;
}

.cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.main-cta-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(106, 76, 147, 0.2);
}

.main-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(106, 76, 147, 0.3);
}

.cta-note {
  color: var(--lighter-text);
  font-size: 0.9rem;
  margin-top: 15px;
}

/* Responsividade */
@media (max-width: 1024px) {
  .elegant-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .doctor-portrait {
    max-width: 100%;
    min-width: auto;
  }
  
  .main-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .elegant-container {
    padding: 0 20px;
  }
  
  .service-options {
    grid-template-columns: 1fr;
  }
  
  .service-detail {
    padding: 30px 20px;
  }
  
  .detail-header h2 {
    font-size: 1.8rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }
  
  .professional-slogan {
    font-size: 1rem;
  }
  
  .service-explorer {
    padding: 20px;
  }
}
