:root {
    --primary-color: #666369;
    --secondary-color: #6c6c6c;
    --white: #FFFFFF;
    --accent-color: #4ADE80;
    --border-radius: 8px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: 70px; /* Espaço para o cabeçalho fixo */
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Animações */

/* Animação para o ícone de chat */
@keyframes pulseChat {
    0% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
        color: #00E676;
    }
    25% {
        color: #00C853;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
        color: #00E676;
    }
    75% {
        color: #00C853;
    }
    100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
        color: #00E676;
    }
}

.chat-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.animated-chat-icon {
    font-size: 28px;
    color: #00E676;
    animation: pulseChat 2s infinite ease-in-out;
    display: inline-block;
}

/* Animação para o cartão da empresa */
@keyframes floatCard {
    0% {
        transform: translateY(0) rotate(0deg);
        box-shadow: 0 5px 15px rgba(102, 45, 145, 0.2);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
        box-shadow: 0 15px 20px rgba(102, 45, 145, 0.3);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
        box-shadow: 0 10px 25px rgba(102, 45, 145, 0.25);
    }
    75% {
        transform: translateY(-8px) rotate(0.5deg);
        box-shadow: 0 12px 20px rgba(102, 45, 145, 0.3);
    }
    100% {
        transform: translateY(0) rotate(0deg);
        box-shadow: 0 5px 15px rgba(102, 45, 145, 0.2);
    }
}

.company-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    box-shadow: 0 5px 15px rgba(102, 45, 145, 0.2);
    max-width: 220px;
    text-align: center;
    color: #262262;
    animation: floatCard 6s ease-in-out infinite;
    transform-origin: center bottom;
    z-index: 5;
}

.company-card h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #262262;
}

.company-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666369;
}

/* Animação para destacar seções */
@keyframes sectionHighlight {
    0% {
        box-shadow: 0 0 0 rgba(102, 45, 145, 0);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 30px rgba(102, 45, 145, 0.3);
        transform: translateY(-5px);
    }
    100% {
        box-shadow: 0 0 0 rgba(102, 45, 145, 0);
        transform: translateY(0);
    }
}

.section-highlight {
    animation: sectionHighlight 1.5s ease-in-out;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.header {
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

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

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

.logo-img {
    max-height: 40px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 30px;
    }
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background: var(--primary-color);
    border-radius: 3px;
    transform-origin: center;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.nav ul {
    display: flex;
    gap: 30px;
}

.nav ul li a {
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.text-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #060611;
    text-decoration: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section Styles */
.hero {
    background-color: #262262;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(90deg, #262262 0%, #332d7a 100%);
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://via.placeholder.com/800x600/ffffff/ffffff');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
    border-radius: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    align-items: center;
    padding: 60px 0 60px 40px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    color: var(--white);
    max-width: 550px;
    padding-top: 40px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 90%;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    margin-bottom: 30px;
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 90%;
}

.hero-content h2 {
    font-weight: 700;
    line-height: 1.2;
    max-width: 90%;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.benefits-list li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

.check-icon {
    color: #00E676;
    font-weight: bold;
    margin-right: 10px;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.benefits li strong {
    font-weight: 600;
}

.pricing {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 2px solid #fff;
    padding-left: 15px;
}

.pricing p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.price {
    font-size: 42px !important;
    font-weight: 700;
    color: var(--white);
    opacity: 1 !important;
    line-height: 1.4;
}

.price span {
    font-size: 18px;
    font-weight: normal;
}

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

.btn-primary {
    background-color: #00E676;
    color: #333;
    border: none;
    transition: all 0.3s ease;
    padding: 15px 30px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #1a5a9e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-image {
    position: relative;
    height: 100%;
    width: 100%;
    background-image: url('../../public/images/imagem_principal.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    border-radius: 0;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    bottom: -60px
}

.ra-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.ra-logo {
    height: 40px;
}

.company-card {
    position: absolute;
    bottom: 30px;
    left: 70px;
    background-color: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    z-index: 5;
}

.company-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    text-align: center;
}

.company-card p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Ajustes responsivos para o company-card */
@media (max-width: 1200px) {
    .company-card h3 {
        font-size: 1.6rem;
    }
    
    .company-card p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

@media (max-width: 992px) {
    .company-card h3 {
        font-size: 1.4rem;
        line-height: 1.15;
    }
    
    .company-card p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .company-card h3 {
        font-size: 1.3rem;
        line-height: 1.1;
        margin-bottom: 5px;
    }
    
    .company-card p {
        font-size: 0.85rem;
        line-height: 1.25;
    }
}

.company-card p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.chat-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: #362944;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.chat-icon span {
    font-size: 30px;
    color: white;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 0;
    color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 2px;
}

.testimonial-title {
    font-size: 14px;
    margin-bottom: 2px;
}

.testimonial-since {
    font-size: 12px;
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: left;
        padding-top: 20px;
        padding-left: 15px;
    }
    
    .benefits-list li {
        text-align: left;
        justify-content: flex-start;
    }
    
    .benefits-list {
        display: block;
        margin: 0 0 25px 0;
        padding-left: 10px;
    }
    
    .cta-buttons {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 15px;
        padding-left: 10px;
    }
    
    .hero-image {
        margin-top: 50px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        min-height: 450px;
    }
    
    .hero::after {
        display: none;
    }
    
    .company-card {
        position: relative;
        left: 20px;
        bottom: 30px;
        margin: 20px 0 20px 15px;
        max-width: 200px;
        transform: none;
        padding: 12px 15px;
        border-radius: 10px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 100px 0;
    background-color: #f8f9fc;
}

.pricing-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.pricing-section h2 {
    font-size: 2.5rem;
    color: #262262;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-section .section-header p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-tab {
    padding: 10px 25px;
    border: none;
    background: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
}

.pricing-tab.active {
    background-color: #1a2040;
    color: white;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #1a2040;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    background-color: #1a2040;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}

.pricing-card-header h3 {
    font-size: 1.8rem;
    color: #262262;
    margin-bottom: 10px;
    text-align: center;
}

.pricing-card-header p {
    color: #666;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 25px;
    min-height: 40px;
}

.pricing-card-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.price-original {
    color: #888;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 5px;
}

.price-prefix {
    font-size: 1rem;
    color: #555;
    margin-right: 5px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #262262;
}

.price-suffix {
    font-size: 1rem;
    color: #555;
    margin-left: 5px;
}

.price-discount {
    color: #4ADE80;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card-button {
    display: block;
    background-color: #1a2040;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.pricing-card-button:hover {
    background-color: #262262;
    transform: translateY(-2px);
}

.pricing-card-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
}

.feature-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #e6eaf2;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #1a2040;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #777;
}

/* Online CTA Section Styles */
.online-cta {
    background-color: #1a2040;
    background-image: none;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.online-cta-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.online-cta-content {
    flex: 1;
    padding: 60px 40px 60px 60px;
    color: var(--white);
}

.online-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.online-cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 30px;
}

.btn-cta {
    background-color: #4ADE80;
    color: #1a2040;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    box-shadow: 0 4px 10px rgba(74, 222, 128, 0.3);
}

.btn-cta:hover {
    background-color: #3cbe6c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74, 222, 128, 0.4);
}

.online-cta-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.online-accountant-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-right: -1px;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Seção de Depoimentos */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fc;
}

.testimonials-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a2040;
}

.testimonials-section .section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 0;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a2040;
}

.author-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #666;
}

.author-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

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

.carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1a2040;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background-color: #262262;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    margin: 0 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #1a2040;
    transform: scale(1.2);
}

/* Responsive Pricing Section */
@media (max-width: 1100px) {
    .pricing-cards {
        gap: 20px;
    }
    
    .pricing-card {
        max-width: 320px;
        padding: 30px 20px;
    }
    
    .pricing-card-header h3 {
        font-size: 1.6rem;
    }
    
    .price-value {
        font-size: 2.2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .online-cta-container {
        flex-direction: column;
    }
    
    .online-cta-content {
        padding: 40px 20px;
        text-align: center;
        order: 1;
    }
    
    .online-cta-content h2 {
        font-size: 2rem;
    }
    
    .online-cta-content p {
        max-width: 100%;
        margin: 0 auto 20px auto;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
        width: 90%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .online-cta-image {
        order: 0;
        justify-content: center;
        display: flex;
        align-items: center;
        padding: 0 20px;
    }
    
    /* Pricing section responsive */
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-section h2 {
        font-size: 2rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 90%;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
        margin-bottom: 20px;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .online-accountant-img {
        margin-right: 0;
        max-width: 90%;
        border-radius: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    

    
    .header .container {
        justify-content: space-between;
        padding: 15px 20px;
    }
    
    .header-actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0;
        margin-left: auto;
    }
    
    .btn.btn-outline {
        border-radius: 20px;
    }
    
    .menu-toggle {
        margin-left: 5px;
        order: 2;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 900;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 25px;
    }
    
    .nav ul li a {
        font-size: 18px;
        display: block;
        padding: 5px 0;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.3;
        letter-spacing: -0.5px;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.5;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .pricing {
        margin: 0 auto 30px;
    }
    
    .price {
        font-size: 36px !important;
    }
}

/* Seção de Formulário de Contato */
.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fc;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: #2C276D;
    border-top-left-radius: 100px;
    z-index: 1;
}

.contact-form-wrapper {
    display: flex;
    position: relative;
    z-index: 2;
    gap: 30px;
}

.contact-form-content {
    flex: 1;
    padding: 40px 0;
}

.contact-form-content h2 {
    font-size: 2.5rem;
    color: #1a2040;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-image {
    margin-top: 40px;
    max-width: 100%;
}

.human-image {
    max-width: 80%;
    display: block;
}

.contact-form-container {
    flex: 1;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-content .form-group {
    margin-bottom: 8px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group.half {
    flex: 1;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
}

.contact-form select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #2C276D;
    box-shadow: 0 0 0 2px rgba(44, 39, 109, 0.1);
}

.contact-submit-btn {
    background-color: #00E676;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-align: center;
}

.contact-submit-btn:hover {
    background-color: #00c853;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
}

.terms-text {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    margin-top: 15px;
}

.terms-text a {
    color: #2C276D;
    text-decoration: none;
    font-weight: 500;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Responsive Contact Form */
@media (max-width: 992px) {
    .contact-form-section::before {
        width: 30%;
    }
    
    .contact-form-wrapper {
        flex-direction: column;
    }
    
    .contact-form-content {
        padding: 30px 0;
        text-align: center;
    }
    
    .contact-image {
        margin: 30px auto;
    }
    
    .human-image {
        max-width: 60%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-form-section::before {
        width: 20%;
        border-top-left-radius: 50px;
    }
    
    .contact-form-content h2 {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-submit-btn {
        padding: 12px 15px;
    }
    
    .contact-image {
        display: none;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 50px 0;
    }
    
    .contact-form-section::before {
        display: none;
    }
    
    .contact-form-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-description {
        font-size: 0.9rem;
    }
    
    .human-image {
        max-width: 80%;
    }
}

/* Responsive Testimonials */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }
    
    .testimonials-section h2 {
        font-size: 2.2rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 250px;
    }
    
    .testimonials-section h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-section .section-header p {
        font-size: 1rem;
    }
    
    .testimonials-rating {
        flex-wrap: wrap;
    }

    .header .container {
        padding: 12px 15px;
    }
    
    .logo-img {
        max-height: 40px;
    }
    
    .menu-toggle {
        padding: 8px;
    }
    
    .menu-toggle span {
        width: 22px;
    }
    
    .nav {
        width: 250px;
    }
    
    .nav ul li a {
        font-size: 16px;
    }
    
    .header-actions {
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }
    
    .text-link {
        display: none;
    }
    
    .header .container {
        display: flex;
        align-items: center;
    }
    
    .text-link {
        font-size: 15px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 15px;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero .container {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
        line-height: 1.3;
        letter-spacing: -0.3px;
        padding: 0;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 25px;
        padding: 0;
        text-align: left;
    }
    
    .benefits-list {
        margin-bottom: 30px;
    }
    
    .benefits-list li {
        font-size: 15px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .hero-image {
        min-height: 300px;
        margin-top: 40px;
        position: relative;
    }
    
    .company-card {
        padding: 10px 12px;
        max-width: 140px;
        transform: none;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-left: 10px;
    }
    
    .company-card h3 {
        font-size: 1.1rem;
        margin-bottom: 3px;
        line-height: 1.05;
    }
    
    .company-card p {
        font-size: 0.7rem;
        line-height: 1.15;
        margin-bottom: 0;
    }
}

/* Seção Sobre a ACD */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 34, 98, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    color: #262262;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #00E676;
    border-radius: 3px;
}

.about-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.about-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(38, 34, 98, 0.08);
    text-align: center;
    flex: 1;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(38, 34, 98, 0.12);
}

.card-icon {
    margin-bottom: 25px;
}

.card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.about-card h3 {
    color: #262262;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-card p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-description p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-cta {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #262262;
    color: #262262;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.about-cta:hover {
    background-color: #262262;
    color: #fff;
}

/* Responsividade para a seção Sobre */
@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-card h3 {
        font-size: 1.6rem;
    }
    
    .about-card p {
        font-size: 1rem;
    }
    
    .about-description p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .about-card {
        width: 100%;
        max-width: 500px;
        margin-bottom: 30px;
    }
    
    .about-card:last-child {
        margin-bottom: 0;
    }
}

/* Seção de Serviços */
.services-section {
    padding: 100px 0;
    background-color: #f9f9ff;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(38, 34, 98, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(38, 34, 98, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 50px;
    margin-top: -30px;
}

.services-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(38, 34, 98, 0.05);
    flex: 1;
    max-width: 350px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(38, 34, 98, 0.1);
}

.service-card.featured {
    border: 2px solid #00E676;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.1);
}

.service-card.featured:hover {
    transform: translateY(-20px);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: #00E676;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 230, 118, 0.2);
}

.service-icon {
    margin-bottom: 25px;
    width: 80px;
    height: 80px;
    background-color: rgba(38, 34, 98, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: rgba(38, 34, 98, 0.1);
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    color: #262262;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.service-features .check-icon {
    color: #00E676;
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
}

.service-cta {
    display: inline-block;
    padding: 12px 25px;
    background-color: #262262;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    align-self: flex-start;
}

.service-cta:hover {
    background-color: #1a1a45;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(38, 34, 98, 0.2);
}

.service-card.featured .service-cta {
    background-color: #00E676;
    color: #262262;
}

.service-card.featured .service-cta:hover {
    background-color: #00c462;
    color: #fff;
}

/* Responsividade para a seção de Serviços */
@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-cards {
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon img {
        width: 35px;
        height: 35px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
}

/* Seção de Processo de Abertura de Empresa */
.process-section {
    padding: 100px 0;
    background-color: #f5f0ff;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 40px 0;
}

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

.process-description {
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.process-tab {
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(38, 34, 98, 0.05);
    min-width: 180px;
    justify-content: center;
    margin: 0 5px;
}

.process-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(38, 34, 98, 0.1);
}

.process-tab.active {
    background-color: #662d91;
    color: #fff;
    border-color: #662d91;
}

.tab-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.process-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process-content.active {
    display: block;
    opacity: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 60px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: rgba(38, 34, 98, 0.1);
    z-index: 1;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    max-width: 300px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #662d91;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(102, 45, 145, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #662d91;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(102, 45, 145, 0.3);
}

.step-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.process-step h3 {
    color: #262262;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.coming-soon {
    text-align: center;
    padding: 50px 0;
    color: var(--secondary-color);
}

/* Responsividade para a seção de Processo */
@media (max-width: 992px) {
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex: 0 0 45%;
    }
    
    .process-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .process-step {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .process-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .process-tab {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        width: 100%;
        max-width: 500px;
        margin-bottom: 40px;
    }
    
    .service-card:last-child {
        margin-bottom: 0;
    }
    
    .service-card.featured {
        order: -1;
    }
}

/* Estilos para o Popup de Formulário de Contato */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-overlay.active {
    display: flex;
}

.popup-container {
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    scrollbar-width: none; /* Para Firefox */
    -ms-overflow-style: none; /* Para Internet Explorer e Edge */
}

.popup-container::-webkit-scrollbar {
    display: none; /* Para Chrome, Safari e Opera */
}

.popup-header {
    padding: 10px;
    text-align: right;
}

.popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.popup-content {
    padding: 0 20px 15px;
}

.contact-form {
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

/* Espaçamento reduzido para o formulário popup */
#contact-form .form-group {
    margin-bottom: 8px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group.half {
    flex: 1;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

.contact-form input::placeholder {
    color: #aaa;
}

.contact-form select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background-color: #00E676;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #00C853;
}

.terms-text {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

.terms-link {
    color: #262262;
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .popup-container {
        width: 95%;
    }
}

/* Estilos do Rodapé */
.footer {
    background-color: #2D286F;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding-right: 20px;
}

.footer-column.company-info {
    flex: 2;
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.logo-bubble {
    background-color: #ffffff;
    border-radius: 50%;
    padding: 15px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.mt-4 {
    margin-top: 25px;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #fff;
    opacity: 0.9;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-content {
        gap: 30px;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 15px);
        min-width: unset;
    }
    
    .footer-column.company-info {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-column {
        flex: 0 0 100%;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}
