/* Efeitos Visuais Aprimorados - Benha Tecnologia */

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(166, 123, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(166, 123, 0, 0.8), 0 0 30px rgba(166, 123, 0, 0.6);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* EFEITOS MUITO VISÍVEIS PARA BOTÕES */
.btn, .button, .cta-button, .submit-btn, 
.btn-primary, .btn-secondary, .btn-block {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease !important;
    transform: translateZ(0);
    border-radius: 25px !important;
    background: linear-gradient(45deg, #a67b00, #d4a41c) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 15px 30px !important;
}

.btn:hover, .button:hover, .cta-button:hover, .submit-btn:hover,
.btn-primary:hover, .btn-secondary:hover, .btn-block:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(166, 123, 0, 0.4) !important;
    background: linear-gradient(45deg, #d4a41c, #a67b00) !important;
    animation: glow 2s infinite !important;
}

.btn::before, .button::before, .cta-button::before, .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn:hover::before, .button:hover::before, .cta-button:hover::before, .submit-btn:hover::before {
    left: 100%;
}

/* EFEITOS MUITO VISÍVEIS PARA CARDS */
.service-card, .card, .section, .contact-form-box, .contact-info-box,
.product-card, .blog-card, .partner-card {
    transition: all 0.4s ease !important;
    position: relative;
    border-radius: 15px !important;
    overflow: hidden;
    background: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.service-card:hover, .card:hover, .contact-form-box:hover, .contact-info-box:hover,
.product-card:hover, .blog-card:hover, .partner-card:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(166, 123, 0, 0.2) !important;
    background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
}

.service-card::after, .card::after, .product-card::after, .blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(166, 123, 0, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::after, .card:hover::after, .product-card:hover::after, .blog-card:hover::after {
    opacity: 1;
}

/* EFEITOS MUITO VISÍVEIS PARA LOGOS E IMAGENS */
.logo-img, .partner-logo, .service-icon, .vantagem-icon {
    transition: all 0.4s ease !important;
    filter: brightness(1) drop-shadow(0 0 0 transparent);
}

.logo-img:hover, .partner-logo:hover, .service-icon:hover, .vantagem-icon:hover {
    filter: brightness(1.3) drop-shadow(0 0 15px rgba(166, 123, 0, 0.6)) !important;
    transform: scale(1.1) rotate(5deg) !important;
    animation: float 2s ease-in-out infinite !important;
}

/* EFEITOS MUITO VISÍVEIS PARA O HEADER */
.fixed-header {
    backdrop-filter: blur(15px) !important;
    background: rgba(15, 46, 36, 0.95) !important;
    transition: all 0.4s ease !important;
    border-bottom: 2px solid rgba(166, 123, 0, 0.3) !important;
}

.fixed-header.scrolled {
    background: rgba(15, 46, 36, 0.98) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border-bottom: 2px solid rgba(166, 123, 0, 0.6) !important;
}

/* EFEITOS MUITO VISÍVEIS PARA NAVEGAÇÃO */
.nav-menu a {
    position: relative;
    transition: all 0.4s ease !important;
    padding: 10px 15px !important;
    border-radius: 20px !important;
    font-weight: 500 !important;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #a67b00, #d4a41c);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover::after {
    width: 80%;
}

.nav-menu a:hover {
    color: #a67b00 !important;
    transform: translateY(-3px) !important;
    background: rgba(166, 123, 0, 0.1) !important;
    box-shadow: 0 5px 15px rgba(166, 123, 0, 0.2) !important;
}

/* EFEITOS MUITO VISÍVEIS PARA FORMULÁRIOS */
.form-control {
    transition: all 0.4s ease !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    padding: 15px !important;
    font-size: 16px !important;
    background: white !important;
}

.form-control:focus {
    border-color: #a67b00 !important;
    box-shadow: 0 0 0 4px rgba(166, 123, 0, 0.2) !important;
    transform: scale(1.02) !important;
    background: linear-gradient(135deg, #ffffff, #fffef8) !important;
}

.form-control.focused {
    border-color: #a67b00 !important;
    box-shadow: 0 0 20px rgba(166, 123, 0, 0.3) !important;
    transform: scale(1.02) !important;
}

/* EFEITOS MUITO VISÍVEIS PARA ÍCONES SOCIAIS */
.social-icon {
    transition: all 0.4s ease !important;
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(166, 123, 0, 0.1) !important;
    color: #a67b00 !important;
    font-size: 18px !important;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(10deg) scale(1.2) !important;
    background: linear-gradient(45deg, #a67b00, #d4a41c) !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(166, 123, 0, 0.4) !important;
    animation: pulse 1s infinite !important;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(166, 123, 0, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.social-icon:hover::before {
    width: 60px;
    height: 60px;
}

/* EFEITOS MUITO VISÍVEIS PARA HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #0f2e24 0%, #1a3e32 50%, #0f2e24 100%) !important;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(166, 123, 0, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.hero-content h1 {
    animation: slideInFromTop 1s ease-out !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4) !important;
    background: linear-gradient(45deg, #ffffff, #a67b00) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.3s both !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3) !important;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both !important;
}

/* EFEITOS MUITO VISÍVEIS PARA ESTATÍSTICAS */
.stats-number {
    font-size: 4rem !important;
    font-weight: 900 !important;
    background: linear-gradient(45deg, #a67b00, #d4a41c) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2) !important;
    animation: pulse 3s infinite !important;
    display: inline-block !important;
}

/* EFEITOS MUITO VISÍVEIS PARA SEÇÕES */
.section {
    transition: all 0.6s ease !important;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a67b00, transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.section:hover::before {
    opacity: 1;
}

/* EFEITOS MUITO VISÍVEIS PARA FOOTER */
.footer {
    background: linear-gradient(135deg, #0f2e24 0%, #1a3e32 100%) !important;
    position: relative;
    border-top: 3px solid #a67b00 !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a67b00, transparent);
    animation: glow 3s infinite;
}

/* LOADING SPINNER MUITO VISÍVEL */
.loading-spinner {
    display: inline-block;
    width: 30px !important;
    height: 30px !important;
    border: 4px solid rgba(166, 123, 0, 0.3) !important;
    border-radius: 50%;
    border-top-color: #a67b00 !important;
    animation: spin 1s linear infinite !important;
}

/* EFEITOS PARA DISPOSITIVOS MÓVEIS */
@media (max-width: 768px) {
    .btn:hover, .button:hover, .cta-button:hover, .submit-btn:hover {
        transform: scale(1.02) !important;
        animation: pulse 1s infinite !important;
    }
    
    .service-card:hover, .card:hover, .contact-form-box:hover, .contact-info-box:hover {
        transform: scale(1.02) !important;
    }
    
    .logo-img:hover, .partner-logo:hover, .service-icon:hover, .vantagem-icon:hover {
        transform: scale(1.05) !important;
        animation: pulse 1s infinite !important;
    }
    
    .social-icon:hover {
        transform: scale(1.1) !important;
        animation: pulse 1s infinite !important;
    }
}

/* FORÇA APLICAÇÃO DOS ESTILOS */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif !important;
}

/* EFEITO DE DIGITAÇÃO PARA TÍTULOS */
.typing-effect {
    overflow: hidden;
    border-right: 3px solid #a67b00;
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #a67b00; }
}

