/* Hero Section btn-large*/
.hero-section {
    background: linear-gradient(135deg, var(--color-light) 0%, #e6fffa 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

.highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--color-accent);
    opacity: 0.4;
    z-index: -1;
}

.subtitle {
    color: var(--color-secondary);
    font-size: 2.5rem;
    font-weight: 400;
}

.hero-description {
    max-width: 800px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark);
}

.hero-description p {
    margin-bottom: 1rem;
}

/* Recruiter Spotlight */
.recruiter-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
    align-items: center;
}

.recruiter-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.recruiter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recruiter-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    pointer-events: none; /* Isso garante que o overlay não interfira nos cliques */
}


.recruiter-message {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.message-icon {
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.recruiter-message h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.recruiter-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.recruitment-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.info-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.info-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* Botões Hero */
.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.btn-large {
    min-width: 250px;
}



@media (max-width: 480px) {
    .btn-large {
        max-width: 270px;
    }



    .btn-primary, .btn-secondary {
        font-weight: 600;
        gap: 1rem;
        font-size: 0.9rem !important;

    }
}



.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #2d3748);
    color: white;
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 54, 93, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary), #c53030);
    color: white;
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(229, 62, 62, 0.4);
}

/* Wave Animation */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    color: white;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background: var(--color-light);
}

.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

.travel-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    align-items: center;
}

.travel-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

/* Other Services Section */
.other-services {
    padding: 6rem 2rem;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto;
}

.service-card {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-content {
    transform: translateY(0);
    opacity: 1;
}

.custom-service {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.custom-service i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Company History Section */
.history-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--color-light) 0%, #ebf8ff 100%);
}

.history-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 2rem;
    background: white;
}

.companies-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.company-logo {
    width: 200px;
    height: 100px;
    background: var(--color-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.company-logo:hover {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d3748 100%);
    color: white;
    text-align: center;
}



@media (max-width: 480px) {
    .btn-candidate, .btn-employer {
        padding: 1.5rem 3rem;
        font-size: 0.9rem;
        max-width: 250px;
        width: 90% !important;
    }


    
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.btn-candidate, .btn-employer {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    min-width: 250px;
    width: 90% !important;
}