/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0e285b;
    --secondary-color: #a9e7ff;
    --accent-color: #d9cdff;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: none;
}

/* Hide mobile navigation elements on desktop */
.nav-toggle,
.nav-drawer,
.drawer-overlay {
    display: none;
}


.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(14, 40, 91, 0.2);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
    box-shadow: 0 4px 12px rgba(14, 40, 91, 0.3);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::before {
    width: 100%;
    box-shadow: 0 4px 12px rgba(14, 40, 91, 0.3);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown .dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 10px;
    padding: 8px 0;
    border: 1px solid var(--gray-200);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(14, 40, 91, 0.05), transparent);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 28px;
}

.dropdown-item:first-child {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-logo-bolt-mobile {
    display: none;
}


.hero-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 60px 60px 60px;
    background: transparent;
    position: relative;
    max-width: 50%;
    width: 100%;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.hero-logo img {
    width: 320px;
    height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.hero-logo img:hover {
    transform: scale(1.02);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}


/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary-color), #1e3a8a);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(14, 40, 91, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 40, 91, 0.4);
    background: linear-gradient(135deg, #1e3a8a, var(--primary-color));
}

.cta-button.large {
    padding: 22px 45px;
    font-size: 1.3rem;
    border-radius: 50px;
}

.cta-button i {
    font-size: 1.3rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: flex;
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    min-height: 500px;
}

.about-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('../img/background.webp') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.about-text {
    flex: 1;
    padding: 60px;
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
}

.about-description {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.9;
    font-weight: 400;
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(169, 231, 255, 0.05) 0%, rgba(217, 205, 255, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(14, 40, 91, 0.08);
    transition: var(--transition);
}

.about-description:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 40, 91, 0.12);
    border-left-color: var(--primary-color);
}

.about-description:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

/* Services Carousel - Desktop Only */
.services-carousel-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 4rem;
    overflow: hidden;
    display: none; /* Hidden by default */
}

.services-carousel {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    width: max-content;
    gap: 2rem;
    padding: 3rem 0;
    justify-content: center;
    align-items: center;
    transform: translateX(calc(50vw - 50% - 200px)); /* Center the middle card */
}

.carousel-card {
    flex: 0 0 400px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(14, 40, 91, 0.1);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid rgba(14, 40, 91, 0.05);
    display: flex;
    flex-direction: column;
    transform: scale(0.8);
    opacity: 0.5;
}

.carousel-card.active {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 25px 60px rgba(14, 40, 91, 0.25);
    z-index: 2;
}

.carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.carousel-card.active::before,
.carousel-card:hover::before {
    transform: scaleX(1);
}

.carousel-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(14, 40, 91, 0.15);
}

.carousel-card.active:hover {
    transform: scale(1.15);
    box-shadow: 0 25px 60px rgba(14, 40, 91, 0.25);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.service-image i {
    font-size: 5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.carousel-card:hover .service-image img {
    transform: scale(1.05);
}

.carousel-card:hover .service-image i {
    transform: scale(1.05);
}

.service-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    padding: 12px 24px;
    background: rgba(14, 40, 91, 0.05);
    border-radius: 25px;
    border: 2px solid transparent;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.service-link:hover {
    gap: 15px;
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 40, 91, 0.3);
}

/* Carousel Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(14, 40, 91, 0.3);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

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

.dot:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.dot.active:hover {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Services Grid - Default for mobile */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Show carousel only on desktop */
@media (min-width: 1024px) {
    .services-carousel-wrapper {
        display: block;
    }
    
    .services-grid {
        display: none;
    }
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(14, 40, 91, 0.1);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(14, 40, 91, 0.05);
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(14, 40, 91, 0.15);
}

/* Interview Section */
.interview {
    padding: 100px 0;
    background: var(--white);
}

.interview-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.interview-content {
    order: 1;
    text-align: center;
}

.interview-image {
    order: 2;
}

.interview-image img {
    width: 80%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.interview-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.interview-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.interview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.interview-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(14, 40, 91, 0.08);
    position: relative;
    overflow: hidden;
}

.interview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.interview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 40, 91, 0.15), 0 8px 16px rgba(14, 40, 91, 0.1);
    border-color: rgba(14, 40, 91, 0.15);
}

.interview-card:hover::before {
    transform: scaleX(1);
}

.card-image {
    height: 180px;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(14, 40, 91, 0.1);
    transition: all 0.3s ease;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 40, 91, 0.1), rgba(169, 231, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.interview-card:hover .card-image {
    box-shadow: 0 12px 35px rgba(14, 40, 91, 0.15);
}

.interview-card:hover .card-image::before {
    opacity: 1;
}

.interview-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
    text-align: center;
}

.interview-card:hover .card-content h3 {
    color: var(--primary-color);
}

.card-content ul {
    list-style: none;
    padding: 0;
}

.card-content li {
    padding: 0.6rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.card-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
    top: 0.5rem;
    transition: all 0.3s ease;
}

.interview-card:hover .card-content li {
    color: var(--gray-700);
}

.interview-card:hover .card-content li::before {
    color: var(--primary-color);
    transform: scale(1.1);
}

.interview-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    border: 1px solid rgba(14, 40, 91, 0.08);
    box-shadow: 0 10px 30px rgba(14, 40, 91, 0.08);
    position: relative;
    overflow: hidden;
}

.interview-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.cta-content {
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

.price {
    margin: 2rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(14, 40, 91, 0.05), rgba(169, 231, 255, 0.1));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(14, 40, 91, 0.1);
}

.old-price {
    display: block;
    font-size: 1.3rem;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.new-price {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(14, 40, 91, 0.1);
}

.cta-button.large {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #1e3a8a);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(14, 40, 91, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.cta-button.large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 40, 91, 0.4);
    background: linear-gradient(135deg, #1e3a8a, var(--primary-color));
}

.cta-button.large:hover::before {
    left: 100%;
}

.cta-video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1c1c1e, #2c2c2e);
    border-radius: 45px;
    padding: 8px;
    box-shadow: 
        0 0 0 4px #1c1c1e,
        0 0 0 8px #2c2c2e,
        0 0 0 12px #1c1c1e,
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #1c1c1e, #2c2c2e);
    border-radius: 2px 0 0 2px;
    transform: translateY(-50%);
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2px;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #1c1c1e, #2c2c2e);
    border-radius: 0 2px 2px 0;
    transform: translateY(-50%);
}

.phone-frame:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 0 4px #1c1c1e,
        0 0 0 8px #2c2c2e,
        0 0 0 12px #1c1c1e,
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 15px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 37px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 2;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #1c1c1e;
    border-radius: 2px;
}

.phone-notch::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: #1c1c1e;
    border-radius: 50%;
}

.phone-screen video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 37px;
    pointer-events: none;
}

/* iPhone Camera Module */
.phone-frame .camera-module {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #1c1c1e, #2c2c2e);
    border-radius: 20px;
    box-shadow: 
        0 0 0 2px #1c1c1e,
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.phone-frame .camera-module::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #333;
}

.phone-frame .camera-module::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
    background: #000;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #333;
}

/* iPhone Home Indicator */
.phone-screen::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    z-index: 3;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials .section-title {
    margin-bottom: 1rem;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 10px 30px rgba(14, 40, 91, 0.08),
        0 4px 15px rgba(14, 40, 91, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(14, 40, 91, 0.08);
    overflow: hidden;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: rgba(14, 40, 91, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(14, 40, 91, 0.15),
        0 8px 20px rgba(14, 40, 91, 0.1);
    border-color: rgba(14, 40, 91, 0.15);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.stars {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.stars i {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
    animation: starGlow 2s ease-in-out infinite;
    animation-delay: calc(var(--star-delay, 0) * 0.1s);
}

.stars i:nth-child(1) { --star-delay: 0; }
.stars i:nth-child(2) { --star-delay: 1; }
.stars i:nth-child(3) { --star-delay: 2; }
.stars i:nth-child(4) { --star-delay: 3; }
.stars i:nth-child(5) { --star-delay: 4; }

.testimonial-card:hover .stars i {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.5));
    animation: starPulse 0.6s ease-in-out;
}

@keyframes starGlow {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes starPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.15); }
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    margin: 0;
    font-weight: 500;
    text-align: left;
}

/* Contact & CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.contact-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(169, 231, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.unified-card {
    position: relative;
    z-index: 2;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 
        0 10px 30px rgba(14, 40, 91, 0.08),
        0 4px 15px rgba(14, 40, 91, 0.05);
    border: 1px solid rgba(14, 40, 91, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.unified-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.unified-card:hover::before {
    transform: scaleX(1);
}

.card-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 40, 91, 0.2), transparent);
    margin: 2.5rem 0;
    position: relative;
}

.card-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.unified-card .cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.unified-card .cta-button {
    background: linear-gradient(135deg, var(--primary-color), #1e3a8a);
    color: var(--white);
    padding: 20px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(14, 40, 91, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.unified-card .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.unified-card .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 40, 91, 0.4);
    background: linear-gradient(135deg, #1e3a8a, var(--primary-color));
}

.unified-card .cta-button:hover::before {
    left: 100%;
}

.unified-card .cta-button i {
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.unified-card .cta-button:hover i {
    transform: scale(1.1);
    animation: whatsappBounce 0.6s ease-in-out;
}

@keyframes whatsappPulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.05);
    }
}

@keyframes whatsappBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.1); }
}

/* Social Section */
.unified-card .social-section {
    position: relative;
    z-index: 2;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 150px;
    border: 1px solid rgba(14, 40, 91, 0.08);
    box-shadow: 0 4px 15px rgba(14, 40, 91, 0.05);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(14, 40, 91, 0.15);
    border-color: rgba(14, 40, 91, 0.15);
}

.social-link:hover::before {
    transform: scaleX(1);
}

.social-link i {
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.social-link span {
    font-weight: 600;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer .footer-logo img {
    height: 80px !important;
    object-fit: contain !important;
    max-width: none !important;
    max-height: none !important;
}

@media (max-width: 480px) {
    .footer .footer-logo img {
        width: 140px !important;
        height: 70px !important;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        padding: 120px 50px 60px 50px;
        max-width: 60%;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-logo {
        text-align: center;
    }
    
    .hero-logo img {
        width: 280px;
        height: 70px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        padding: 120px 40px 60px 40px;
        max-width: 70%;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-logo {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-logo img {
        width: 240px;
        height: 60px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .interview-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 15px !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Garantir que todos os elementos respeitem a largura da tela */
    .navbar, .hero, .about, .services, .interview, .testimonials, .contact-cta, .footer {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .navbar {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        overflow-x: hidden !important;
    }
    
    .nav-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 0 15px !important;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero {
        min-height: 100vh;
    }
    
    /* Garantir que não haja scroll horizontal */
    .services-carousel-wrapper {
        display: none !important;
    }
    
    .hero {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-container {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        height: 100vh;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-content {
        padding: 120px 20px 40px;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        flex: 1;
    }
    
    .hero-logo-bolt-mobile {
        display: block;
        margin-bottom: 1rem;
        animation: boltPulse 2s ease-in-out infinite;
    }
    
    .hero-logo-bolt-mobile img {
        width: 180px;
        height: auto;
        filter: drop-shadow(0 4px 8px rgba(14, 40, 91, 0.3));
    }
    
    @keyframes boltPulse {
        0%, 100% {
            transform: scale(1);
            filter: drop-shadow(0 4px 8px rgba(14, 40, 91, 0.3));
        }
        50% {
            transform: scale(1.05);
            filter: drop-shadow(0 6px 12px rgba(14, 40, 91, 0.5));
        }
    }
    
    .hero-title {
        margin-bottom: 0;
        width: 100%;
    }
    
    .hero-subtitle {
        margin-bottom: 0;
        width: 100%;
    }
    
    .hero-description {
        margin-bottom: 0;
        width: 100%;
        max-width: 600px;
    }
    
    .cta-button {
        margin: 0;
        width: 100%;
        max-width: 300px;
    }

    .hero-logo {
        text-align: center;
        margin-bottom: 1.2rem;
    }
    
    .hero-logo img {
        width: 200px;
        height: 50px;
    }

    .hero-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        text-align: center;
        max-width: 100%;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
        min-height: auto;
    }

    .about-content::after {
        width: 100%;
        height: 300px;
        position: relative;
        order: -1;
    }

    .about-text {
        max-width: 100%;
        padding: 40px 30px;
    }

    .about-text .section-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .about-description {
        font-size: 1.1rem;
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .interview-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .interview-content {
        order: 2;
    }

    .interview-image {
        display: none !important;
    }

    .interview-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .interview-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    
    .testimonial-card::after {
        font-size: 3rem;
        top: 0.8rem;
        right: 1.2rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .social-link {
        min-width: 200px;
    }

    .contact-cta {
        padding: 80px 0;
    }
    
    .unified-card {
        padding: 2.5rem;
        max-width: 700px;
    }
    
    .unified-card h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .unified-card .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .unified-card .cta-button {
        padding: 18px 36px;
        font-size: 1.1rem;
    }
    
    .card-divider {
        margin: 2rem 0;
    }
    
    .unified-card .social-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        padding: 1.5rem;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Garantir que não haja scroll horizontal */
    .services-carousel-wrapper {
        display: none !important;
    }

    .hero-content {
        padding: 20px;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
    }
    

    .hero-logo {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-logo img {
        width: 180px;
        height: 45px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        min-height: auto;
    }

    .about-content::after {
        height: 250px;
    }

    .about-text {
        padding: 30px 20px;
    }

    .about-text .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-description {
        font-size: 1rem;
        padding: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.7;
    }

    .services {
        padding: 60px 0;
    }

    .interview {
        padding: 60px 0;
    }

    .testimonials {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-cta {
        padding: 60px 0;
    }
    
    .unified-card {
        padding: 2rem;
        border-radius: 20px;
        max-width: 100%;
    }
    
    .unified-card h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .unified-card h2::after {
        width: 60px;
        height: 2px;
    }
    
    .unified-card .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .unified-card .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .card-divider {
        margin: 1.5rem 0;
    }
    
    .unified-card .social-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .unified-card .social-title::after {
        width: 40px;
        height: 2px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        min-width: 200px;
        padding: 1.5rem;
    }
    
    .social-link i {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        border-radius: 50px;
    }

    .cta-button.large {
        padding: 18px 36px;
        font-size: 1.1rem;
    }


    .service-content {
        padding: 2rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .interview-card {
        padding: 1.5rem;
    }

    
    .testimonial-card::after {
        font-size: 2.5rem;
        top: 0.6rem;
        right: 1rem;
    }
    
    .stars {
        font-size: 1rem;
        gap: 6px;
        margin-bottom: 1.2rem;
    }
    
    .testimonial-card p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .social-link {
        min-width: 150px;
        padding: 1.5rem;
    }

    .social-link i {
        font-size: 1.5rem;
    }

    .price {
        text-align: center;
    }

    .old-price {
        font-size: 1rem;
    }

    .new-price {
        font-size: 1.5rem;
    }

    .interview-footer {
        padding: 1.5rem;
    }

    .interview-footer p {
        font-size: 1rem;
    }

    .footer {
        padding: 1.5rem 0;
    }

    .footer-logo {
        font-size: 1rem;
    }
}

/* Footer Dev Info */
.footer-dev-info {
    margin-top: 1rem;
    text-align: center;
}

.footer-dev-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
}

.footer-dev-info a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-dev-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-dev-info .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
}

.mobile-break {
    display: none;
}

@media (max-width: 480px) {
    .footer-dev-info .separator {
        display: none;
    }
    
    .mobile-break {
        display: block;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 360px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .hero {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Garantir que não haja scroll horizontal */
    .services-carousel-wrapper {
        display: none !important;
    }

    .hero-content {
        padding: 15px;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
    }
    

    .hero-logo {
        text-align: center;
        margin-bottom: 0.8rem;
    }
    
    .hero-logo img {
        width: 160px;
        height: 40px;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    

    .section-title {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .interview-content h3 {
        font-size: 1.1rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Phone Frame Responsive */
@media (max-width: 768px) {
    .phone-frame {
        width: 250px;
        height: 500px;
        padding: 6px;
        border-radius: 35px;
    }
    
    .phone-screen {
        border-radius: 29px;
    }
    
    .phone-notch {
        width: 120px;
        height: 25px;
        border-radius: 0 0 15px 15px;
    }
    
    .phone-notch::before {
        width: 50px;
        height: 3px;
        top: 6px;
    }
    
    .phone-notch::after {
        width: 6px;
        height: 6px;
        top: 10px;
        right: 15px;
    }
    
    .phone-frame .camera-module {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        top: 15px;
    }
    
    .phone-frame .camera-module::before {
        width: 15px;
        height: 15px;
        top: 12px;
        left: 12px;
    }
    
    .phone-frame .camera-module::after {
        width: 12px;
        height: 12px;
        top: 12px;
        right: 12px;
    }
    
    .phone-screen::after {
        width: 100px;
        height: 4px;
        bottom: 6px;
    }
    
    .phone-screen video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 29px;
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .phone-frame {
        width: 200px;
        height: 400px;
        padding: 5px;
        border-radius: 30px;
    }
    
    .phone-screen {
        border-radius: 25px;
    }
    
    .phone-notch {
        width: 100px;
        height: 20px;
        border-radius: 0 0 12px 12px;
    }
    
    .phone-notch::before {
        width: 40px;
        height: 3px;
        top: 5px;
    }
    
    .phone-notch::after {
        width: 5px;
        height: 5px;
        top: 8px;
        right: 12px;
    }
    
    .phone-frame .camera-module {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        top: 12px;
    }
    
    .phone-frame .camera-module::before {
        width: 12px;
        height: 12px;
        top: 10px;
        left: 10px;
    }
    
    .phone-frame .camera-module::after {
        width: 10px;
        height: 10px;
        top: 10px;
        right: 10px;
    }
    
    .phone-screen::after {
        width: 80px;
        height: 3px;
        bottom: 5px;
    }
    
    .phone-screen video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 25px;
        pointer-events: none;
    }
}

/* Scroll animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Custom scrollbar - Desktop */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e3a8a;
}

/* Custom scrollbar - Mobile (transparent) */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 0px;
        background: transparent;
    }

    ::-webkit-scrollbar-track {
        background: transparent;
    }

    ::-webkit-scrollbar-thumb {
        background: transparent;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: transparent;
    }
    
    /* Forçar que não haja scroll horizontal */
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    animation: pulse 2s infinite;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Hide WhatsApp button when on home section (desktop and mobile) */
.whatsapp-float.hide-on-home {
    display: none !important;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-float:focus {
    outline: 3px solid rgba(37, 211, 102, 0.3);
    outline-offset: 3px;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Back to Top Button - Above WhatsApp */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.back-to-top:hover {
    background: var(--gray-800);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    /* Hide WhatsApp button when on home section */
    .whatsapp-float.hide-on-home {
        display: none !important;
    }
    
    /* WhatsApp button controlled by JavaScript */
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    /* Hide WhatsApp button when on home section */
    .whatsapp-float.hide-on-home {
        display: none !important;
    }
    
    /* WhatsApp button controlled by JavaScript */
    
    .back-to-top {
        bottom: 70px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Mobile Navigation Styles - Android Action Bar */
@media (max-width: 768px) {
    /* Android Style Action Bar for Mobile */
    .navbar {
        display: block !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
        border-bottom: 1px solid #e0e0e0 !important;
        height: 56px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
    }
    
    .navbar.scrolled {
        background: #ffffff !important;
        backdrop-filter: none !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12) !important;
        border-bottom: 1px solid #e0e0e0 !important;
    }
    
    .nav-container {
        padding: 0 16px !important;
        justify-content: space-between !important;
        height: 56px !important;
        position: relative !important;
        align-items: center !important;
        display: flex !important;
    }
    
    .nav-menu {
        display: flex !important; /* Show menu in action bar on mobile */
        gap: 0 !important;
        justify-content: flex-start !important;
        flex: 1 !important;
        align-items: center !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        z-index: auto !important;
    }
    
    .nav-logo {
        display: flex !important;
        align-items: center !important;
        margin-right: 16px !important;
        height: 100% !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-logo img {
        display: block !important;
        height: 60px !important;
        width: auto !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-logo:hover {
        transform: scale(1.05) !important;
    }
    
    .nav-logo:hover img {
        transform: scale(1.1) !important;
    }
    
    /* Beautiful Hamburger Button */
    .nav-toggle {
        display: flex !important;
        z-index: 1002 !important;
        background: transparent !important;
        box-shadow: none !important;
        position: absolute !important;
        right: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 50px !important;
        height: 50px !important;
        border-radius: 12px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border: none !important;
        padding: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        cursor: pointer !important;
    }
    
    .nav-toggle:hover {
        background: rgba(14, 40, 91, 0.05) !important;
        transform: translateY(-50%) scale(1.05) !important;
    }
    
    .bar {
        width: 24px !important;
        height: 3px !important;
        background: var(--primary-color) !important;
        margin: 4px 0 !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border-radius: 2px !important;
        transform-origin: center !important;
        display: block !important;
    }
    
    /* Animação para X - Barra do meio desaparece */
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0 !important;
        transform: scaleX(0) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    /* Animação para X - Barra superior vira parte do X */
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    /* Animação para X - Barra inferior vira parte do X */
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    /* Enhanced hover effects for bars - only when not active */
    .nav-toggle:hover:not(.active) .bar {
        background: var(--primary-color) !important;
        transform: scaleX(1.1) !important;
    }
    
    /* Hover effects when in X state */
    .nav-toggle.active:hover .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg) scaleX(1.1) !important;
    }
    
    .nav-toggle.active:hover .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) scaleX(1.1) !important;
    }
    
    /* Smooth transition back to hamburger */
    .nav-toggle:not(.active) .bar {
        transform: none !important;
        opacity: 1 !important;
    }
    
    /* Navigation Drawer - Deslizante da direita para esquerda */
    .nav-drawer {
        position: fixed !important;
        top: 56px !important;
        right: -100% !important;
        width: 85% !important;
        max-width: 350px !important;
        height: calc(100vh - 56px) !important;
        background: #ffffff !important;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15) !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        z-index: 1003 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: block !important;
        visibility: visible !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        outline: none !important;
    }
    
    .nav-drawer.active {
        right: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 56px !important;
        left: auto !important;
        bottom: 0 !important;
        width: 85% !important;
        max-width: 350px !important;
        height: calc(100vh - 56px) !important;
        z-index: 1003 !important;
    }
    
    .drawer-content {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .drawer-menu {
        flex: 1 !important;
        padding: 20px 0 0 0 !important;
        overflow-y: auto !important;
        margin-top: 20px !important;
        padding-bottom: 0 !important;
    }
    
    .drawer-link {
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        padding: 16px 24px !important;
        color: var(--gray-700) !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        font-size: 16px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        border-left: 4px solid transparent !important;
        position: relative !important;
    }
    
    .drawer-link:hover {
        background: rgba(14, 40, 91, 0.05) !important;
        color: var(--primary-color) !important;
        border-left-color: var(--primary-color) !important;
        transform: translateX(4px) !important;
    }
    
    .drawer-link i {
        font-size: 18px !important;
        width: 24px !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
    }
    
    .drawer-link:hover i {
        transform: scale(1.1) !important;
    }
    
    .drawer-menu > a:last-of-type,
    .drawer-menu > div:last-of-type {
        margin-bottom: 0 !important;
    }
    
    .drawer-footer {
        display: block !important;
        visibility: visible !important;
        padding: 16px 24px 20px 24px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        border-top: 1px solid rgba(0, 0, 0, 0.12) !important;
        background: #ffffff !important;
        flex-shrink: 0 !important;
    }
    
    .drawer-whatsapp {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        padding: 16px 24px !important;
        background: #25d366 !important;
        color: #ffffff !important;
        text-decoration: none !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        font-size: 16px !important;
    }
    
    /* Drawer Dropdown */
    .drawer-dropdown {
        position: relative !important;
    }
    
    .drawer-dropdown-toggle {
        justify-content: space-between !important;
    }
    
    .drawer-chevron {
        margin-left: auto !important;
        font-size: 14px !important;
        transition: transform 0.3s ease !important;
    }
    
    .drawer-dropdown.active .drawer-chevron {
        transform: rotate(180deg) !important;
    }
    
    .drawer-submenu {
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        background: rgba(14, 40, 91, 0.02) !important;
    }
    
    .drawer-dropdown.active .drawer-submenu {
        max-height: 500px !important;
    }
    
    .drawer-sublink {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 12px 24px 12px 48px !important;
        color: var(--gray-600) !important;
        text-decoration: none !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        transition: all 0.3s ease !important;
        border-left: 3px solid transparent !important;
    }
    
    .drawer-sublink:hover {
        background: rgba(14, 40, 91, 0.05) !important;
        color: var(--primary-color) !important;
        border-left-color: var(--primary-color) !important;
        padding-left: 52px !important;
    }
    
    .drawer-sublink i {
        font-size: 6px !important;
        width: auto !important;
        color: var(--primary-color) !important;
    }
    
    .drawer-whatsapp:hover {
        background: #128c7e !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
        color: #ffffff !important;
    }
    
    .drawer-whatsapp i {
        font-size: 20px !important;
        transition: all 0.3s ease !important;
    }
    
    .drawer-whatsapp:hover i {
        transform: scale(1.1) !important;
    }
    
    /* Drawer Overlay */
    .drawer-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.5) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
        z-index: 1002 !important;
    }
    
    .drawer-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Mobile nav links styling */
    .nav-link {
        display: none !important; /* Hide individual nav links on mobile - they're in the drawer */
    }
}

/* Service Modals */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 40, 91, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 1100px;
    max-height: 92vh;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(14, 40, 91, 0.4);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 12px;
    font-size: 24px;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    color: #ffffff;
    background: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(14, 40, 91, 0.3);
}

.modal-header {
    padding: 3rem 2.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.modal-header h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: 2.5rem;
    max-height: calc(92vh - 200px);
    overflow-y: auto;
}

.modal-section {
    margin-bottom: 2.5rem;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--secondary-color);
    position: relative;
}

.modal-section h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.modal-section p {
    color: var(--gray-700);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.modal-section ul {
    list-style: none;
    padding: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1.5rem;
}

.modal-section li {
    color: var(--gray-700);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.modal-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    top: 0.7rem;
}

.modal-investment {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 30px rgba(14, 40, 91, 0.2);
}

.modal-investment .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 22px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modal-investment .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 40, 91, 0.1), transparent);
    transition: left 0.5s;
}

.modal-investment .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.modal-investment .cta-button:hover::before {
    left: 100%;
}

.modal-investment .cta-button i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.modal-investment .cta-button:hover i {
    transform: scale(1.1);
}

.modal-investment h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.modal-investment h3::after {
    display: none;
}

.investment-options {
    margin-bottom: 2rem;
}

.investment-option {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0.8rem 0;
}

.investment-option strong {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
}


.modal-plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.modal-plan-option {
    padding: 2rem;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-plan-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
}

.modal-plan-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(14, 40, 91, 0.1);
    transform: translateY(-2px);
}

.modal-plan-option:last-of-type {
    margin-bottom: 0;
}

.modal-plan-option .modal-section {
    flex-grow: 1;
}

.modal-plan-option .modal-investment-inline {
    margin-top: auto;
}

.modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 3rem 0;
    color: var(--gray-500);
    font-weight: 600;
    font-size: 1.1rem;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.modal-divider span {
    padding: 0 2rem;
}

.modal-investment-inline {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 30px rgba(14, 40, 91, 0.2);
}

.modal-investment-inline h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.modal-investment-inline .investment-option {
    color: #ffffff;
    font-size: 1.1rem;
}

.modal-investment-inline .investment-option strong {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
}

.modal-investment-inline .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 22px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modal-investment-inline .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 40, 91, 0.1), transparent);
    transition: left 0.5s;
}

.modal-investment-inline .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.modal-investment-inline .cta-button:hover::before {
    left: 100%;
}

.modal-investment-inline .cta-button i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.modal-investment-inline .cta-button:hover i {
    transform: scale(1.1);
}


/* Mobile Styles for Modals */
@media (max-width: 768px) {
    .modal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translate(0, 0) scale(0.9);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .service-modal.active .modal-content {
        transform: translate(0, 0) scale(1);
    }

    .modal-header {
        padding: 1.5rem;
        border-radius: 0;
        flex-shrink: 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .modal-header h2 {
        font-size: 1.75rem;
        font-weight: 700;
    }

    .modal-body {
        padding: 2rem 1.5rem;
        flex: 1 1 auto;
        min-height: 0;
        max-height: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 24px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .modal-section h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .modal-section p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .modal-section li {
        font-size: 1.05rem;
    }

    .modal-investment {
        padding: 2rem;
        border-radius: 16px;
    }

    .modal-investment h3 {
        font-size: 1.5rem;
    }

    .investment-option {
        font-size: 1.1rem;
    }

    .investment-option strong {
        font-size: 1.6rem;
    }

    .modal-plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-plan-option {
        padding: 2rem;
        border-radius: 16px;
    }

    .modal-section ul {
        background: var(--gray-50);
        border-radius: 12px;
        padding: 1.25rem;
    }

    .modal-section li {
        padding: 0.75rem 0 0.75rem 2rem;
        position: relative;
    }

    .modal-section li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: 700;
        font-size: 1.1rem;
    }

    .modal-divider {
        margin: 2rem 0;
    }

    .modal-investment-inline {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .modal-investment-inline h4 {
        font-size: 1.2rem;
    }

    .modal-investment-inline .cta-button {
        padding: 22px 40px;
        font-size: 1.15rem;
    }

    .modal-investment .cta-button {
        padding: 22px 40px;
        font-size: 1.15rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translate(0, 0) scale(0.9);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .service-modal.active .modal-content {
        transform: translate(0, 0) scale(1);
    }

    .modal-header {
        border-radius: 0;
        padding: 1.25rem 1rem;
        flex-shrink: 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .modal-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
    }

    .modal-body {
        padding: 1.5rem 1rem;
        flex: 1 1 auto;
        min-height: 0;
        max-height: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 24px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .modal-section {
        margin-bottom: 2rem;
    }

    .modal-section:last-of-type {
        margin-bottom: 1.5rem;
    }

    .modal-section h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--gray-900);
    }

    .modal-section p {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--gray-700);
        margin-bottom: 0.75rem;
    }

    .modal-section ul {
        padding: 0;
        list-style: none;
        background: var(--gray-50);
        border-radius: 12px;
        padding: 1rem;
    }

    .modal-section li {
        font-size: 1rem;
        padding: 0.75rem 0 0.75rem 2rem;
        color: var(--gray-700);
        position: relative;
    }

    .modal-section li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: 700;
        font-size: 1.1rem;
    }

    .modal-investment {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        margin-top: 2rem;
    }

    .modal-investment .cta-button {
        padding: 20px 36px;
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .modal-investment h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .investment-option {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .investment-option strong {
        font-size: 1.5rem;
        display: block;
        margin-top: 0.5rem;
    }

    .modal-plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-plan-option {
        padding: 1.5rem;
        border-radius: 16px;
        border: 2px solid var(--gray-200);
    }

    .modal-plan-option h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .modal-investment-inline {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .modal-investment-inline h4 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .modal-investment-inline .cta-button {
        padding: 20px 36px;
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .modal-investment .cta-button {
        padding: 20px 36px;
        font-size: 1.1rem;
    }
}



