/* Real Equipamentos - Modern & Futuristic CSS */

/* ===== VARIABLES ===== */
:root {
    /* Primary Dark Blue Theme */
    --primary-dark-blue: #0f172a;
    --primary-blue: #1e293b;
    --primary-blue-light: #334155;
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;   
    --accent-gold: #f59e0b;
    --neo-gradient-start: #0f172a;
    --neo-gradient-end: #1e293b;
    
    /* Additional Colors */
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-gray-800);
    overflow-x: hidden;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.text-blue{
    background: #24579f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ===== HEADER STYLES ===== */
.header-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    z-index: 1000;
}

.header-modern.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    font-weight: 500;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--color-gray-700) !important;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: all var(--transition-normal);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-blue) !important;
    background: rgba(59, 130, 246, 0.1);
}

.contact-phone {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark-blue);
}

.contact-email {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

/* ===== HERO BANNER STYLES ===== */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 50%, var(--primary-blue-light) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.products-hero{
    margin-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: #2d4469;
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f59e0b 100%);
    border: none;
    color: var(--color-gray-900);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    color: var(--color-gray-900);
}

.hero-cta .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-dark-blue);
    transform: translateY(-3px);
}

.trust-badges .trust-badge {
    color: rgba(255, 255, 255, 0.9);
}

.trust-badges .trust-badge i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.trust-badges .trust-badge span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .hero-main-image img {
        max-height: 50vh;
    }
    .hero-main-image {
        text-align: center;
    }
}

.hero-main-image img {
    border-radius: 20px;
    /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); */
}

.hero-mascot {
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
}

.hero-mascot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glow-effect {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.floating-element-1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
    bottom: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    animation: float 6s ease-in-out infinite 2s;
}

.floating-element-3 {
    top: 50%;
    left: 25%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite 4s;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

/* ===== SECTION STYLES ===== */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

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

.category-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all var(--transition-normal);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

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

.category-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin: 0;
    line-height: 1.3;
}

/* Category Colors */
.bg-blue { background: #3b82f6; }
.bg-green { background: #10b981; }
.bg-purple { background: #8b5cf6; }
.bg-red { background: #ef4444; }
.bg-yellow { background: #f59e0b; }
.bg-pink { background: #ec4899; }
.bg-indigo { background: #6366f1; }
.bg-teal { background: #14b8a6; }
.bg-orange { background: #f97316; }
.bg-cyan { background: #06b6d4; }
.bg-lime { background: #84cc16; }
.bg-rose { background: #f43f5e; }

/* ===== FEATURES SECTION ===== */
.features-section {
    background: white;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent-blue);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--color-gray-600);
    margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--color-gray-50);
}

.about-feature {
    font-size: 1rem;
    color: var(--color-gray-700);
}

.about-feature i {
    font-size: 1.25rem;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number span {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: white;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
    margin-right: 0.25rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--color-gray-800);
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--color-gray-900);
    color: white;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--accent-blue-light);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 12px;
    padding: 1rem;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-blue-light);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
    color: white;
}

/* ===== FOOTER STYLES ===== */
.footer-section {
    background: var(--color-gray-950);
    color: white;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--accent-blue-light);
}

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

.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-divider {
    border-color: var(--color-gray-800);
    margin: 2rem 0;
}

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-gray-400);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-links .social-link:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .category-title {
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-banner {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-mascot {
        width: 80px;
        height: 80px;
        bottom: -10px;
        right: -10px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .category-card {
        padding: 1.25rem 0.75rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 1.25rem;
    }
    
    .category-title {
        font-size: 0.75rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-cta .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .trust-badges .trust-badge {
        margin-bottom: 1rem;
    }
    
    .trust-badges .trust-badge span {
        font-size: 0.75rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--primary-blue) 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark-blue);
}




.suppliers-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.supplier-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.supplier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.supplier-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
}

.supplier-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.supplier-card:hover .supplier-logo img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.supplier-logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.supplier-logo-placeholder i {
    font-size: 2rem;
    color: #fbbf24;
}

.supplier-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.supplier-category {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .supplier-card {
        padding: 1.5rem 1rem;
    }
    
    .supplier-logo {
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .supplier-name {
        font-size: 1.1rem;
    }
    
    .supplier-category {
        font-size: 0.8rem;
    }
}