:root {
    --primary-color: #3a3f7a;
    --secondary-color: #4e57b9;
    --background-color: #f8f9fa;
    --light-dark: #e9ecef;
    --text-color: #212529;
    --card-bg: #ffffff;
    --section-padding: 100px 0;
    --heading-color: #222;
    --body-color: #444;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header */
header {
    background-color: #1a237e;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.navbar-nav .nav-link {
    color: white !important;
    margin-left: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Hero Section */
#hero, #international-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    padding-top: 80px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

#hero .container, #international-hero .container {
    position: relative;
    z-index: 1;
}

.hero-tag {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

#hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.trusted-by {
    margin-top: 40px;
}

.small-text {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-rating {
    color: #FFD700;
}

.phone-mockup.hero-image img {
    max-width: 202.8%;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.phone-mockup.hero-image img:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

/* International Transfers Page */
.international-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.process-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 20px;
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.timeline-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(58, 63, 122, 0.2);
}

.timeline-content {
    margin-left: 30px;
    background-color: white;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--body-color);
}

@media (min-width: 768px) {
    .process-timeline {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .process-timeline::before {
        width: 100%;
        height: 4px;
        top: 20px;
        left: 0;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 22%;
        margin-bottom: 0;
    }
    
    .timeline-content {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
}

/* Section Common */
section {
    padding: var(--section-padding);
}

.section-tag {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    color: var(--heading-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--body-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--body-color);
}

/* Stats Counter */
.stats-counter {
    margin-top: 50px;
}

.stats-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.stats-item .counter, .stats-item span {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: inline-block;
}

.stats-item p {
    font-size: 16px;
    margin-bottom: 0;
    color: var(--body-color);
}

/* Cards and Services */
.bg-light-dark {
    background-color: var(--light-dark);
}

#como-funciona {
    background-color: #434a98;
}

#como-funciona .section-title {
    color: white;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.icon-wrapper {
    background-color: var(--primary-color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-wrapper i {
    font-size: 28px;
}

.service-card h3 {
    color: var(--heading-color);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--body-color);
    margin-bottom: 0;
}

/* Advantages */
.advantage-item {
    display: flex;
    margin-bottom: 2rem;
    gap: 1.5rem;
    align-items: flex-start;
}

.advantage-item .icon-wrapper {
    background-color: rgba(58, 63, 122, 0.15);
    flex-shrink: 0;
}

.advantage-item .icon-wrapper i {
    color: var(--primary-color);
}

.advantage-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.advantage-item p {
    margin-bottom: 0;
    color: var(--body-color);
}

/* Logo Carousel */
.logo-carousel {
    width: 100%;
    overflow: hidden;
    background-color: var(--card-bg);
    padding: 2rem 0;
    border-radius: 10px;
    margin: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.logo-slide-container {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.logo-slide {
    display: flex;
    animation: slide 30s linear infinite;
    padding: 0 10px;
}

.client-logo {
    height: 80px;
    object-fit: contain;
    margin: 0 30px;
    transition: filter 0.3s ease;
}

.client-logo:hover {
    filter: brightness(1.1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Contact Form */
.contact-form .form-control {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    color: var(--text-color);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    border-color: var(--primary-color);
}

.contact-form .form-control::placeholder {
    color: #6c757d;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background-color: var(--card-bg);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer-area {
    background-color: #434a98;
    color: white;
    padding-top: 80px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-title {
    color: white;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

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

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-contact-info {
    list-style: none;
    padding-left: 0;
}

.footer-contact-info li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info i {
    color: var(--primary-color);
    font-size: 18px;
}

.copyright-area {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

/* Testimonials Section */
#testimonials {
    background-color: #434a98;
}

#testimonials .section-title,
#testimonials .section-desc,
#testimonials .section-tag {
    color: white;
}

.testimonial-item {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: -10px;
    z-index: -1;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 14px;
    color: #6c757d;
}

#testimonial-carousel .carousel-control-prev,
#testimonial-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

#testimonial-carousel .carousel-control-prev {
    left: 10px;
}

#testimonial-carousel .carousel-control-next {
    right: 10px;
}

#testimonial-carousel .carousel-control-prev:hover,
#testimonial-carousel .carousel-control-next:hover {
    opacity: 1;
}

#testimonial-carousel .carousel-indicators {
    bottom: -40px;
}

#testimonial-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.3;
    margin: 0 5px;
}

#testimonial-carousel .carousel-indicators button.active {
    opacity: 1;
}

/* International Features Section Styles */
#international-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Animations */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-in.animated {
  opacity: 1;
}

/* Floating button */
#back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
  }
  
  #back-to-top-btn:hover {
    opacity: 1;
  }
  
  #back-to-top-btn i {
    font-size: 1.2em;
  }

/* Feature Section */
.feature-section-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
    border-left: 5px solid var(--primary-color);
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-card h4 {
    color: var(--heading-color);
    font-size: 20px;
    margin: 15px 0;
    font-weight: 600;
}

.contact-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.contact-list li i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(58, 63, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conclusion-text {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
    #hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand img {
        height: 45px;
    }
    
    .phone-mockup.hero-image img {
        max-width: 130%;
    }
}

@media (max-width: 767px) {
    #hero {
        height: auto;
        padding: 120px 0 100px;
    }
    
    #hero h1 {
        font-size: 2.86rem;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
    }
    
    .phone-mockup.hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .phone-mockup.hero-image img {
        max-width: 144.82%;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .navbar-brand img {
        height: 52px;
    }
    
    .hero-desc {
        font-size: 16px;
    }

    /* Styles for the quick action bar */
    .quick-action-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(67, 74, 152, 0.9); 
        color: white;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
        z-index: 1000;
    }

    .quick-action-bar a {
        color: white;
        text-decoration: none;
        font-size: 1.2em;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .quick-action-bar i {
        margin-bottom: 5px;
    }
}