:root {
    --primary-blue: #0057B7;
    --primary-blue-dark: #003D82;
    --primary-blue-light: #3B7DD6;
    --accent-blue: #00A8E8;
    --background-white: #FFFFFF;
    --background-light: #F8FAFB;
    --background-gray: #F0F4F8;
    --text-dark: #1A202C;
    --text-gray: #4A5568;
    --text-light: #718096;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(0, 87, 183, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 87, 183, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 87, 183, 0.16);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-ct {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    transform: rotate(-2deg);
}

.logo-text {
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--background-light);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 87, 183, 0.65), rgba(0, 168, 232, 0.6)),
                url('../img/krav-maga.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 125, 214, 0.3) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.welcome {
    padding: 6rem 0;
    background: var(--background-light);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.welcome-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.welcome-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.welcome-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.welcome-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-float {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
}

.image-float i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.image-float strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.image-float span {
    display: block;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.modalities {
    padding: 6rem 0;
    background: white;
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.modality-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.modality-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.modality-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

.modality-card:hover .modality-image img {
    transform: scale(1.1);
}

.modality-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 87, 183, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modality-card:hover .modality-overlay {
    opacity: 1;
}

.modality-link {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modality-content {
    padding: 2rem;
}

.modality-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modality-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.modality-features {
    list-style: none;
}

.modality-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.modality-features i {
    color: var(--primary-blue);
    font-size: 1.125rem;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.benefits {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--background-light);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transform: rotate(-5deg);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
    transform: rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info i {
    color: var(--accent-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 10rem 0 5rem;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.about-story {
    padding: 6rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values {
    padding: 6rem 0;
    background: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
}

.mission-vision {
    padding: 6rem 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mv-card {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 24px;
    border-left: 5px solid var(--primary-blue);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon i {
    font-size: 1.75rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.modality-hero {
    background-size: cover;
    background-position: center;
    padding: 12rem 0 6rem;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
}

.modality-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 87, 183, 0.7), rgba(0, 87, 183, 0.9));
}

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

.modality-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modality-hero p {
    font-size: 1.5rem;
    opacity: 0.95;
}

.modality-intro {
    padding: 6rem 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.intro-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.modality-features {
    padding: 1rem 0;
    background: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-gray);
}

.modality-benefits {
    padding: 6rem 0;
    background: white;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.benefits-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.benefits-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.benefits-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefits-list i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.benefits-list p {
    color: var(--text-gray);
}

.experimental-header {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
}

.experimental-intro {
    padding: 6rem 0;
    background: white;
}

.intro-box {
    max-width: 900px;
    margin: 0 auto;
}

.intro-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-box p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-gray);
}

.check-list i {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.preparation {
    padding: 6rem 0;
    background: var(--background-light);
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.prep-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.prep-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.prep-icon i {
    font-size: 1.5rem;
    color: white;
}

.prep-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.prep-card ul {
    list-style: none;
}

.prep-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.prep-card ul li:last-child {
    border-bottom: none;
}

.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.faq-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item i {
    color: var(--primary-blue);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-contact {
    padding: 6rem 0;
    background: var(--background-light);
}

.cta-box {
    background: white;
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-whatsapp:hover {
    background: #1EBE57;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cta-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

.instructors {
    padding: 6rem 0;
    background: white;
}

.instructor-category {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.category-title span {
    background: white;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.category-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.instructors-grid:has(.instructor-card:only-child) {
    grid-template-columns: 1fr;
    justify-items: center;
}

.instructors-grid:has(.instructor-card:only-child) .instructor-card {
    max-width: 500px;
}

.instructor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.instructor-image {
    height: 350px;
    overflow: hidden;
}

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

.instructor-card:hover .instructor-image img {
    transform: scale(1.1);
}

.instructor-info {
    padding: 2rem;
}

.instructor-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.instructor-credentials {
    background: var(--background-light);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.instructor-credentials p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.instructor-credentials p:last-child {
    margin-bottom: 0;
}

.instructor-credentials i {
    color: var(--primary-blue);
}

.instructor-bio {
    color: var(--text-gray);
    line-height: 1.7;
}

.team-values {
    padding: 6rem 0;
    background: var(--background-light);
}

.values-grid-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.schedule {
    padding: 6rem 0;
    background: white;
}

.schedule-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.schedule-intro p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.schedule-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.schedule-table thead {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
}

.schedule-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.schedule-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr:hover {
    background: var(--background-light);
}

.schedule-table .time {
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.schedule-table .empty {
    color: var(--text-light);
}

.schedule-table .class {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
}

.schedule-table .graduated {
    background: rgba(255, 152, 0, 0.25);
    color: #E65100;
    border-left: 4px solid #FF9800;
    font-weight: 600;
}

.schedule-table .mixed {
    background: rgba(0, 123, 255, 0.25);
    color: #0056b3;
    border-left: 4px solid #007bff;
    font-weight: 600;
}

.schedule-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.schedule-legend h3 {
    font-size: 1.125rem;
}

.legend-items {
    display: flex;
    gap: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.legend-color.graduated {
    background: rgba(255, 152, 0, 0.3);
    border: 3px solid #FF9800;
}

.legend-color.mixed {
    background: rgba(0, 123, 255, 0.3);
    border: 3px solid #007bff;
}

.schedule-notes {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
}

.schedule-notes h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.schedule-notes i {
    color: var(--primary-blue);
}

.schedule-notes ul {
    list-style: none;
}

.schedule-notes ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
    position: relative;
}

.schedule-notes ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.schedule-cta {
    padding: 6rem 0;
    background: var(--background-light);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-section > p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.method-content p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.method-content a {
    color: var(--primary-blue);
}

.method-content a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.btn-whatsapp-small {
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.btn-whatsapp-small:hover {
    background: #1EBE57;
    transform: translateY(-2px);
}

.social-section {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 16px;
}

.social-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.social-section p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link {
    flex: 1;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.5rem;
}

.contact-map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: var(--background-light);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px dashed var(--border-color);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-gray);
}

.map-info h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-info i {
    color: var(--primary-blue);
}

.map-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.schedule-list {
    list-style: none;
}

.schedule-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.schedule-list li:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .welcome-grid,
    .about-grid,
    .intro-grid,
    .benefits-layout {
        grid-template-columns: 1fr;
    }
    
    .modalities-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instructors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--background-light);
        margin-top: 0.5rem;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.3rem;
        line-height: 1.08;
    }

    .kmbf-hero .hero-title {
        font-size: clamp(2rem, 8vw, 2.25rem);
        max-width: 10.5em;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .welcome-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .modalities-grid,
    .features-grid,
    .benefits-grid,
    .values-grid,
    .instructors-grid,
    .preparation-grid,
    .faq-grid,
    .values-grid-small,
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .schedule-table-wrapper {
        overflow-x: visible;
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }

    .schedule-table {
        width: 100%;
        table-layout: fixed;
        font-size: 0.72rem;
        border-radius: 12px;
    }
    
    .schedule-table th,
    .schedule-table td {
        width: 13.2%;
        padding: 0.55rem 0.18rem;
        vertical-align: middle;
    }

    .schedule-table th:first-child,
    .schedule-table td:first-child {
        width: 20.8%;
    }

    .schedule-table th {
        font-size: 0;
        line-height: 1;
    }

    .schedule-table th::after {
        display: block;
        font-size: 0.68rem;
        line-height: 1.1;
    }

    .schedule-table th:nth-child(1)::after { content: 'Hora'; }
    .schedule-table th:nth-child(2)::after { content: 'Seg'; }
    .schedule-table th:nth-child(3)::after { content: 'Ter'; }
    .schedule-table th:nth-child(4)::after { content: 'Qua'; }
    .schedule-table th:nth-child(5)::after { content: 'Qui'; }
    .schedule-table th:nth-child(6)::after { content: 'Sex'; }
    .schedule-table th:nth-child(7)::after { content: 'Sab'; }

    .schedule-table .time {
        white-space: normal;
        font-size: 0.68rem;
        line-height: 1.15;
    }

    .schedule-table .empty {
        font-size: 0.8rem;
    }

    .schedule-table .class {
        display: grid;
        place-items: center;
        min-height: 32px;
        width: 100%;
        padding: 0.35rem 0.15rem;
        border-radius: 7px;
        border-left-width: 0;
        font-size: 0;
        line-height: 1;
    }

    .schedule-table .class::after {
        font-size: 0.66rem;
        line-height: 1.05;
        font-weight: 700;
    }

    .schedule-table .mixed::after {
        content: 'I/G';
    }

    .schedule-table .graduated::after {
        content: 'Grad.';
    }
    
    .schedule-legend {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legend-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .social-links-large {
        flex-direction: column;
    }
}

.photo-gallery {
    padding: 6rem 0;
    background: var(--background-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .kmbf-hero .hero-title {
        font-size: clamp(1.72rem, 7.4vw, 1.9rem);
        max-width: 12em;
    }
    
    .modality-hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

.kmbf-logo,
.kmbf-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-image {
    display: block;
    height: 74px;
    max-width: 260px;
    width: auto;
    object-fit: contain;
}

.navbar .logo {
    min-width: 220px;
}

.logo-fallback {
    display: none;
    align-items: center;
    gap: 0.6rem;
}

.kmbf-footer-logo .logo-text {
    color: white;
}

.kmbf-hero .hero-title {
    letter-spacing: 1px;
}

.kmbf-image-tile {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-position: center;
    background-size: cover;
    color: white;
    text-align: center;
    overflow: hidden;
}

.kmbf-image-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.58), rgba(0, 87, 183, 0.48));
}

.kmbf-image-tile div {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.kmbf-image-tile h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.kmbf-image-tile p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
}

.belt-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f8f9fa 0%, #eef3f8 48%, #f8f9fa 100%);
}

.belt-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0 18%, rgba(0, 87, 183, 0.055) 18% 18.7%, transparent 18.7% 42%, rgba(0, 87, 183, 0.045) 42% 42.7%, transparent 42.7%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    background-size: auto, 72px 72px;
}

.belt-section .container {
    position: relative;
    z-index: 1;
}

.belt-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.belt-grid-regular {
    counter-reset: belt-step;
}

.belt-card {
    --belt-color: var(--primary-blue);
    --belt-soft: rgba(0, 87, 183, 0.09);
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(21, 38, 58, 0.1);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(21, 38, 58, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.belt-card:has(.belt.white) { --belt-color: #d7dde5; --belt-soft: rgba(215, 221, 229, 0.35); }
.belt-card:has(.belt.yellow) { --belt-color: #f2c340; --belt-soft: rgba(242, 195, 64, 0.18); }
.belt-card:has(.belt.orange) { --belt-color: #ed7624; --belt-soft: rgba(237, 118, 36, 0.16); }
.belt-card:has(.belt.green) { --belt-color: #2d9465; --belt-soft: rgba(45, 148, 101, 0.16); }
.belt-card:has(.belt.blue) { --belt-color: #2f73cf; --belt-soft: rgba(47, 115, 207, 0.16); }
.belt-card:has(.belt.brown) { --belt-color: #765239; --belt-soft: rgba(118, 82, 57, 0.16); }
.belt-card:has(.belt.black) { --belt-color: #111827; --belt-soft: rgba(17, 24, 39, 0.16); }
.belt-card:has(.belt.red-white) { --belt-color: #c92f34; --belt-soft: rgba(201, 47, 52, 0.14); }
.belt-card:has(.belt.red) { --belt-color: #c92020; --belt-soft: rgba(201, 32, 32, 0.15); }

.belt-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--belt-color), #ffffff 35%);
    box-shadow: 0 24px 58px rgba(21, 38, 58, 0.16);
}

.belt-grid-regular .belt-card::before {
    counter-increment: belt-step;
    content: counter(belt-step, decimal-leading-zero);
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(21, 38, 58, 0.12);
    color: var(--belt-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 10px 24px rgba(21, 38, 58, 0.1);
}

.belt-card img {
    width: 100%;
    height: 255px;
    object-fit: contain;
    padding: 1.35rem 1.35rem 0.75rem;
    margin: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.85), var(--belt-soft)),
        linear-gradient(160deg, transparent 0 62%, rgba(0, 0, 0, 0.045) 62% 63%, transparent 63%);
}

.belt-card-start {
    border-style: dashed;
}

.belt-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.5rem 1.5rem;
}

.belt {
    display: block;
    order: -1;
    width: 100%;
    height: 12px;
    margin-bottom: 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.belt.white { background: #fff; }
.belt.yellow { background: #f6c743; }
.belt.orange { background: #f37a25; }
.belt.green { background: #2f9f6b; }
.belt.blue { background: #3578d4; }
.belt.brown { background: #7b5437; }
.belt.black { background: #111; }
.belt.red-white { background: linear-gradient(90deg, #d82f2f 0 50%, #f4f4f0 50% 100%); }
.belt.red { background: #c92020; }

.belt-card h3 {
    margin-bottom: 0.75rem;
    color: #182334;
    font-size: 1.3rem;
    line-height: 1.2;
}

.belt-card p {
    color: var(--text-gray);
    font-size: 0.98rem;
    line-height: 1.72;
}

.belt-card strong {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    padding: 0.75rem 0.9rem;
    border-radius: 999px;
    background: var(--belt-soft);
    color: #142235;
    font-size: 0.88rem;
    line-height: 1.2;
}

.belt-special-header {
    margin-top: 5rem;
}

.belt-special-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.belt-card-special {
    background:
        linear-gradient(150deg, rgba(8, 13, 21, 0.98), rgba(22, 33, 48, 0.96)),
        #111827;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: 0 24px 64px rgba(9, 16, 27, 0.26);
}

.belt-card-special::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, var(--belt-color), var(--primary-blue), #ffffff);
}

.belt-card-special img {
    height: 300px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 87, 183, 0.18)),
        linear-gradient(160deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58% 59%, transparent 59%);
}

.belt-card-special .belt-content {
    padding: 1.6rem;
}

.belt-card-special h3 {
    color: #ffffff;
    font-size: 1.6rem;
}

.belt-card-special p {
    color: rgba(255, 255, 255, 0.78);
}

.belt-card-special strong {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.footer-federation-logo {
    width: min(100%, 280px);
    height: auto;
    display: block;
}

.whatsapp-cta-main,
.whatsapp-box {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.whatsapp-box {
    padding: 4rem 2rem;
    border-radius: 32px;
    box-shadow: 0 12px 48px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta-main > i,
.whatsapp-box > i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.whatsapp-box > i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.whatsapp-cta-main h2,
.whatsapp-box h2,
.whatsapp-cta-main p,
.whatsapp-box p {
    color: white;
}

.whatsapp-phone {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.whatsapp-cta-main .btn,
.whatsapp-box .btn {
    background: white;
    color: #25D366;
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
}

.whatsapp-box .btn {
    font-size: 1.25rem;
    padding: 1.5rem 4rem;
    margin-bottom: 2rem;
}

.whatsapp-call {
    margin-top: 1.5rem;
    font-size: 1.125rem;
}

@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.2rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    .belt-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .belt-grid-regular {
        grid-template-columns: repeat(2, 1fr);
    }

    .belt-special-grid {
        grid-template-columns: 1fr;
    }

    .belt-card-special {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 1.5rem;
        align-items: center;
    }

    .belt-card-special img {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .belt-grid,
    .belt-grid-regular {
        grid-template-columns: 1fr;
    }

    .logo-image {
        height: 58px;
    }

    .belt-card-special {
        display: flex;
        gap: 0;
    }

    .kmbf-image-tile {
        min-height: 300px;
    }

    .whatsapp-cta-main,
    .whatsapp-box {
        padding: 2.5rem 1rem;
    }

    .whatsapp-cta-main .btn,
    .whatsapp-box .btn {
        width: 100%;
        padding: 1rem 1.25rem;
    }
}
