


/* =======================
   Global Styles
======================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* =======================
   Header & Navbar Styles
======================= */
.site-header {
    background-color: rgba(0, 0, 0, .85);
    backdrop-filter: saturate(180%) blur(20px);
}

.site-header a {
    color: #8e8e8e;
    transition: color .15s ease-in-out;
}

.site-header a:hover {
    color: #fff;
    text-decoration: none;
}

/* Navbar */
.navbar {
    background-color: transparent;
}

.navbar-brand, .nav-link {
    color: black;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* =======================
   Card Styles
======================= */
.card {
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* =======================
   Product Card Styles
======================= */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.product-image {
    width: 100%; /* A largura da imagem será 100% do contêiner */
    height: 100%; /* A altura será 100% do contêiner */
    object-fit: cover; /* Garante que a imagem cubra a área sem distorção */
}
.product-card .card-img-top {
    position: relative;
    width: 100%;
    overflow: hidden; /* Garante que a imagem quebre dentro do contêiner se necessário */
}

/* =======================
   Achievement Icon Styles
======================= */
.achievement-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.1);
}

/* =======================
   Badge & Text Styles
======================= */
.text-primary {
    color: #0d6efd !important;
}

.badge {
    font-size: 0.8rem;
    padding: 0.5rem;
    z-index: 1;
}

/* =======================
   Button Styles
======================= */
.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: white;
}

/* =======================
   Pricing & Product Details
======================= */
.pricing-info {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.product-details {
    margin-top: 15px;
}

/* =======================
   Animations
======================= */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-logo {
    animation: pulse 2s infinite;
}

/* =======================
   Layout Adjustments for Smaller Screens
======================= */
@media (max-width: 774px) {
    .padding-sm {
        padding: 1rem;
    }

    .emptyspace {
        height: 590px;
    }

    .margin-top-sm {
        margin-top: 0rem;
    }
}

/* =======================
   Layout Adjustments for Medium Screens and Larger
======================= */
@media (min-width: 774px) {
    .support-section {
        background-image: url('/transferências/support_banner.png');
        height: 650px;
    }

    .padding-start-md {
        padding-left: 70px;
    }

    .h1 {
        font-size: 50px;
    }
}

/* =======================
   Movement Classes (for specific animations)
======================= */
.move-down {
    top: 150px;
    transition: bottom 0.5s ease-in-out;
}

.move-up {
    bottom: 150px;
    transition: top 0.5s ease-in-out;
}

.move-left {
    right: 300px;
    transition: left 0.5s ease-in-out;
}

.move-right {
    left: 300px;
    transition: right 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .move-left, .move-right {
        left: 0;
        right: 0;
    }
}

/* =======================
   Container Adjustments
======================= */
.container {
    max-width: 80%;
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }
}

/* =======================
   Icon Styles
======================= */
.icon-link {
    color: white;
}

/* =======================
   Image Container Styles
======================= */
.img-container {
    position: relative;
}

.img-container::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.img-fluid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* =======================
   Custom Achievements Section - Enhanced Image Focus
======================= */
.custom-achievements-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.custom-achievements-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
}

.custom-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 20px;
}

.custom-achievement-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 600px; /* Altura fixa para uniformidade */
    display: flex;
    flex-direction: column;
}

.custom-achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.custom-achievement-image-wrapper {
    width: 100%;
    height: 350px; /* Altura maior para a imagem */
    position: relative;
    overflow: hidden;
}

.custom-achievement-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-achievement-item:hover .custom-achievement-image {
    transform: scale(1.05);
}

.custom-achievement-default-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.custom-achievement-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.custom-achievement-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.custom-achievement-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.custom-achievements-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    color: #6c757d;
}

/* Hover effect para o conteúdo */
.custom-achievement-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00ff88);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-achievement-item:hover .custom-achievement-content::before {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-achievements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px;
    }

    .custom-achievement-item {
        height: 500px;
    }

    .custom-achievement-image-wrapper {
        height: 300px;
    }

    .cust