/*
==============================================
  GIROMIX - CUSTOM STYLESHEET
  Cores da Marca:
  - Primária: #00529B (Azul)
  - Secundária: #FCB813 (Amarelo)
==============================================
*/

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --primary-color: #00529B;
    --secondary-color: #FCB813;
    --tertiary-color: #afddf4;
    --primary-dark: #003d73;
    --secondary-dark: #e0a610;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --heading-weight: 700;
    --text-weight: 400;
    
    /* Spacing */
    --section-padding: 80px;
    --section-padding-mobile: 50px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-weight: var(--text-weight);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--heading-weight);
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

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

section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    border: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 184, 19, 0.3);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== HEADER TOP ===== */
.header-top {
    background: var(--gray-100);
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-200);
}

.header-top-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.header-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.header-contact-item:hover {
    color: var(--primary-color);
}

.header-contact-item i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.header-top-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.header-top-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.header-top-social a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== HEADER MENU ===== */
.header-menu {
    background: var(--white);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-menu.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-menu .navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    transition: var(--transition-fast);
}

.logo-light {
    display: none;
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: 10px 18px !important;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: calc(100% - 36px);
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

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

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300529B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SECTION (Internal Pages) ===== */
.hero-section {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-breadcrumb {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero-breadcrumb a {
    color: var(--white);
    opacity: 0.9;
}

.hero-breadcrumb a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.hero-breadcrumb span {
    color: var(--secondary-color);
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 20px auto 0;
}

/* ===== INSTITUTIONAL SECTION ===== */
.institutional-section {
    background: var(--gray-100);
}

.institutional-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.institutional-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ===== FEATURES SECTION ===== */
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 82, 155, 0.15);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    font-size: 2rem;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    transform: rotateY(360deg);
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ===== MVV CARDS (Mission, Vision, Values) ===== */
.mvv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 82, 155, 0.15);
    border-color: var(--secondary-color);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    font-size: 2rem;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.mvv-card:hover .mvv-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    transform: rotateY(360deg);
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mvv-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.8;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: var(--primary-color);
    color: var(--white);
}

.products-section .section-title h2,
.products-section .section-title p {
    color: var(--white);
}

.product-detail-section img {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(252, 184, 19, 0.3);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
}

.footer-main {
    padding: 70px 0 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

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

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background: var(--primary-dark);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text,
.developer-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.developer-text a {
    color: var(--secondary-color);
}

.developer-text a:hover {
    text-decoration: underline;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(252, 184, 19, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--secondary-dark);
    transform: translateY(-5px);
    color: var(--white);
}

/* ===== RESPONSIVE TABLES ===== */
.table-responsive-custom {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-custom {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

.table-custom thead {
    background: var(--primary-color);
    color: var(--white);
}

.table-custom thead th {
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.table-custom tbody tr {
    transition: var(--transition-fast);
}

.table-custom tbody tr:hover {
    background: var(--gray-100);
}

.table-custom td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-200);
}

code {
    background-color: var(--gray-100);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary-color);
    border: 1px solid var(--gray-300);
}

/* Mobile Stacked Table Layout */
@media (max-width: 767px) {
    .table-responsive {
        border: none;
    }
    
    .table-custom {
        border: none;
    }
    
    .table-custom thead {
        display: none;
    }
    
    .table-custom tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 2px solid var(--gray-300);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        background: var(--white);
    }
    
    .table-custom tbody tr:hover {
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0, 82, 155, 0.15);
    }
    
    .table-custom td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 12px 15px;
        border: none;
        border-bottom: 1px solid var(--gray-200);
        text-align: right;
    }
    
    .table-custom td:last-child {
        border-bottom: none;
    }
    
    .table-custom td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-color);
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        text-align: left;
        flex: 0 0 45%;
        padding-right: 10px;
    }
    
    .table-custom td strong {
        display: inline;
    }
    
    /* Destaque para primeira célula (geralmente código) */
    .table-custom td:first-child {
        background: var(--gray-100);
        font-weight: 600;
    }
    
    /* Código de barras em mobile */
    .table-custom td code {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .header-menu .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link::before {
        display: none;
    }
    
    .hero-section {
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-breadcrumb {
        gap: 10px;
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .feature-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .header-top-info {
        justify-content: center;
        text-align: center;
        gap: 5px;
    }
    
    .header-top-social {
        justify-content: center;
        margin-top: 10px;
    }
    
    .hero-section {
        padding: 80px 0;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .hero-breadcrumb {
        gap: 8px;
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    
    .section-title h2 {
        font-size: 1.9rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

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

.animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== UTILITIES ===== */
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-tertiary { color: var(--tertiary-color) !important; }
.text-dark { color: var(--gray-900) !important; }
.text-body { color: var(--gray-700) !important; }
.text-muted { color: var(--gray-600) !important; }

/* ===== PRODUCT DETAIL PAGE ===== */
/* Product Detail Section */
.product-detail-section {
    padding: 60px 0;
}

.product-detail-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 82, 155, 0.1);
}

.product-detail-content {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .product-detail-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

/* Features List - Remove markers and add spacing */
.product-features {
    margin-bottom: 25px;
}

.product-features h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.features-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.features-list li i {
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* CTA Buttons - Add spacing on mobile */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.cta-buttons .btn {
    flex: 0 1 auto;
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Product Info Box */
.product-info-box {
    background: var(--gray-100);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.product-info-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-info-box p {
    margin-bottom: 0;
    color: var(--gray-700);
}

/* Product Variations Section */
.product-variations-section {
    padding: 60px 0;
}

.product-variations-section .section-title {
    margin-bottom: 40px;
}

/* CTA Section for product pages */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
}

.cta-section h2,
.cta-section p {
    color: white;
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-section .btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* ===== CATALOG DOWNLOAD SECTION ===== */
.catalog-download-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    padding: 80px 0;
}

.catalog-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.catalog-info .lead {
    color: var(--gray-700);
    font-size: 1.1rem;
}

.catalog-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.catalog-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.catalog-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 82, 155, 0.1);
}

.catalog-feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.catalog-feature-item h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.catalog-feature-item p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

.catalog-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-mockup {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 82, 155, 0.3);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.catalog-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.catalog-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 82, 155, 0.4);
}

.catalog-mockup i {
    font-size: 6rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.catalog-mockup-info {
    position: relative;
    z-index: 1;
}

.catalog-mockup h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.catalog-mockup p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 1rem;
}

.catalog-mockup .badge {
    font-size: 0.85rem;
    padding: 8px 20px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    font-weight: 600;
}

/* Badge Color Classes */
.badge-light-blue {
    background-color: #afddf4;
    color: #003d73;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.badge-light-blue-lg {
    background-color: #afddf4;
    color: #003d73;
    font-weight: 700;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-block;
    text-transform: uppercase;
}

/* Products Section */
.catalog-section {
    padding: 2rem 0;
}

.catalog-title {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.catalog-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.catalog-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.catalog-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: white;
}

.catalog-item-icon.primary {
    background: linear-gradient(135deg, #FCB813 0%, #e0a610 100%);
    box-shadow: 0 4px 12px rgba(252, 184, 19, 0.2);
}

.catalog-item-icon.secondary {
    background: linear-gradient(135deg, #00529B 0%, #003d73 100%);
    box-shadow: 0 4px 12px rgba(0, 82, 155, 0.2);
}

.catalog-item-content h4 {
    margin: 0;
    color: var(--gray-900);
    font-size: 1.1rem;
    font-weight: 700;
}

.catalog-item-content p {
    margin: 0.5rem 0 0 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.catalog-image {
    text-align: center;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-top: 5px solid;
}

.feature-card.primary {
    box-shadow: 0 6px 20px rgba(0, 82, 155, 0.1);
    border-top-color: var(--primary-color);
}

.feature-card.secondary {
    box-shadow: 0 6px 20px rgba(252, 184, 19, 0.1);
    border-top-color: var(--secondary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-icon.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 6px 15px rgba(0, 82, 155, 0.3);
}

.feature-icon.secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    box-shadow: 0 6px 15px rgba(252, 184, 19, 0.3);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Institutional Section */
.institutional-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.institutional-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.institutional-content p:last-of-type {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section h2 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-100);
}

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

@media (max-width: 991px) {
    .catalog-info {
        text-align: center;
    }
    
    .catalog-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .catalog-feature-item:hover {
        transform: translateY(-5px) translateX(0);
    }
}
