:root {
    --primary: #49afbc;
    --secondary: #FF6B2C;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

h1,
h2,
h3,
.display-4 {
    font-weight: 700;
    /* font-family: 'Playfair Display', serif; */
}

/* Custom button styles */
.btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #e55a1f;
    border-color: #e55a1f;
}

/* Hero section */
#hero {
overflow-x: hidden;
    /* background-color: #f8f9fa; */
    padding: 80px 0;
}

.hero-image {
    position: relative;
}

.heroImage {
    width: 500px;

}

.hero-image::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 100%;
    background-color: var(--primary);
    border-radius: 1rem;
    transform: rotate(-3deg);
    z-index: -1;
}

/* Service cards */
.card {
    transition: transform 0.3s ease;
}

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

/* Process section */
.process-step {
    position: relative;
    padding: 2rem;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

/* Testimonials */
.testimonial-rating {
    color: var(--secondary);
}

/* Custom background colors */
.bg-primary {
    background-color: var(--primary) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }

    #hero {
        padding: 40px 0;
    }
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
}

/* Typography enhancements */
.lead {
    font-weight: 500;
}

.h5 {
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--primary);
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary) !important;
}

/* Additional typography styles */
.display-4 {
    font-weight: 700;
    line-height: 1.2;
}

.text-primary {
    color: var(--primary) !important;
}

.carrerCard {
    height: 630px;
}

@media screen and (max-width: 480px) and (orientation: portrait) {

    .heroImage {
        width: 100%;

    }

    .hero-image::before {

        width: 100%;

    }
    .carrerCard{
        height: 100%;

    }
    .carrerCard3{
        height: 100%;
    }
}