/* ===== RESET E VARIÃVEIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-laranja: #FF6B35;
    --cor-laranja-escuro: #E85A28;
    --cor-azul: #00B4D8;
    --cor-azul-escuro: #0096C7;
    --cor-rosa: #E91E63;
    --cor-fundo: #0A0E14;
    --cor-fundo-secondary: #12161E;
    --cor-texto: #FFFFFF;
    --cor-texto-secondary: #B8C5D6;
    --cor-card: #1A1F2E;
    --transicao: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, var(--cor-fundo-secondary) 0%, var(--cor-fundo) 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
    border-bottom: 2px solid var(--cor-laranja);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container centralizado */
.header-container {
    justify-content: center !important;
}

/* Menu centralizado */
.nav-centered {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-img {
    height: 50px;
    transition: var(--transicao);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--cor-texto);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transicao);
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cor-laranja);
    background: rgba(255, 107, 53, 0.1);
}

.dropdown {
    position: relative;
    z-index: 9998;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--cor-card);
    min-width: 200px;
    list-style: none;
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transicao);
    border: 1px solid rgba(255, 107, 53, 0.2);
    z-index: 9999 !important;
}

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

.dropdown-menu li {
    margin: 5px 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--cor-texto);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transicao);
}

.dropdown-menu a:hover {
    background: rgba(255, 107, 53, 0.15);
    color: var(--cor-laranja);
    transform: translateX(5px);
}

/* Sub-dropdown para menus aninhados */
.dropdown-menu .dropdown-submenu {
    position: relative;
}

.dropdown-menu .dropdown-submenu > a::after {
    content: '›';
    float: right;
    margin-left: 10px;
    font-size: 18px;
}

.dropdown-menu .sub-dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: var(--cor-card);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transicao);
    border: 1px solid rgba(255, 107, 53, 0.2);
    z-index: 10000 !important;
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--cor-laranja);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
}

/* Hero padrÃ£o sem imagem */
.hero:not(.hero-with-image) {
    background: linear-gradient(135deg, var(--cor-laranja) 0%, var(--cor-azul) 100%);
}

/* Hero com imagem de fundo - FORÃ‡ADO */
.hero-with-image {
    background: none !important;
    background-image: 
        linear-gradient(135deg, rgba(255, 107, 53, 0.60) 0%, rgba(0, 180, 216, 0.60) 100%),
        url('hero-background.jpg?v=20251030') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Remover o after que estava bloqueando */
.hero-with-image::after {
    display: none;
}

/* Remover o before tambÃ©m para nÃ£o sobrepor a imagem */
.hero-with-image::before {
    display: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(15,20,25,0.3)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 20, 25, 0.05);
    z-index: 0;
    pointer-events: none;
}

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

/* Novo layout do tÃ­tulo */
.hero-title-wrapper {
    margin-bottom: 20px;
}

.hero-title-top {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 3px;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.6s ease;
}

.hero-title-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--cor-laranja), var(--cor-azul));
    padding: 10px 40px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    animation: fadeInScale 0.8s ease 0.2s both;
}

.hero-title-main {
    font-size: 64px;
    font-weight: 900;
    margin: 0;
    letter-spacing: 4px;
    color: white;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
}

/* Logo no hero */
.hero-logo-wrapper {
    margin: 30px 0;
    animation: fadeInScale 1s ease 0.4s both;
}

.hero-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: zoomInOut 3s ease-in-out infinite;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.8s ease;
}

.hero-subtitle {
    font-size: 24px;
    margin: 20px 0 15px;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInDown 1.2s ease;
    font-weight: 300;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1.4s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

/* ===== BOTÃ•ES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transicao);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--cor-laranja);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: var(--cor-laranja-escuro);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--cor-azul);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
    border: 2px solid var(--cor-azul);
}

.btn-secondary:hover {
    background: var(--cor-azul);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.6);
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-large {
    padding: 18px 42px;
    font-size: 18px;
}

/* ===== SECTIONS ===== */
.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--cor-laranja), var(--cor-azul));
    border-radius: 2px;
}

/* ===== FEATURES ===== */
.features {
    padding: 80px 20px;
    background: var(--cor-fundo);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--cor-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transicao);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--cor-laranja);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--cor-laranja), var(--cor-azul));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--cor-laranja);
}

.feature-card p {
    color: var(--cor-texto-secondary);
    line-height: 1.8;
}

/* ===== APPS PREVIEW ===== */
.apps-preview {
    padding: 80px 20px;
    background: var(--cor-fundo-secondary);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.app-card {
    background: var(--cor-card);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transicao);
    border: 2px solid rgba(0, 180, 251, 0.2);
}

.app-card:hover {
    transform: scale(1.05);
    border-color: var(--cor-azul);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.3);
}

.app-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--cor-laranja), var(--cor-azul));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.app-card h3 {
    padding: 20px 30px 10px;
    font-size: 26px;
    color: var(--cor-laranja);
}

.app-card p {
    padding: 0 30px 20px;
    color: var(--cor-texto-secondary);
}

.app-card .btn {
    margin: 0 30px 30px;
    width: calc(100% - 60px);
    justify-content: center;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--cor-azul) 0%, var(--cor-laranja) 100%);
    text-align: center;
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--cor-fundo-secondary);
    padding: 60px 20px 30px;
    border-top: 3px solid var(--cor-laranja);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--cor-laranja);
    font-size: 20px;
    margin-bottom: 20px;
}

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

.footer-section li {
    margin: 10px 0;
}

.footer-section a {
    color: var(--cor-texto-secondary);
    text-decoration: none;
    transition: var(--transicao);
}

.footer-section a:hover {
    color: var(--cor-laranja);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cor-texto-secondary);
}

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

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

/* ===== âœ¨ ANIMAÃ‡Ã•ES ESPECIAIS FURION âœ¨ ===== */

/* 1. AnimaÃ§Ã£o de fade-in para cards */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 2. AnimaÃ§Ã£o de slide da esquerda */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 3. AnimaÃ§Ã£o de slide da direita */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 4. AnimaÃ§Ã£o de pulso para botÃµes importantes */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* 5. AnimaÃ§Ã£o de brilho (shimmer) */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* 6. AnimaÃ§Ã£o de rotaÃ§Ã£o suave */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 7. AnimaÃ§Ã£o de float (flutuaÃ§Ã£o) */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Zoom in/out para logo do hero */
@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* 8. Gradiente animado para hero */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 9. Spin para loading */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== APLICANDO AS ANIMAÃ‡Ã•ES ===== */

/* Cards com fade-in ao carregar */
.feature-card {
    animation: fadeInScale 0.6s ease-out;
    animation-fill-mode: both;
}

/* Delay progressivo para mÃºltiplos cards */
.features-grid .feature-card:nth-child(1) { animation-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 0.4s; }
.features-grid .feature-card:nth-child(5) { animation-delay: 0.5s; }
.features-grid .feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Brand cards com animaÃ§Ã£o */
.brand-card {
    animation: fadeInScale 0.5s ease-out;
    animation-fill-mode: both;
}

.brands-grid .brand-card:nth-child(1) { animation-delay: 0.05s; }
.brands-grid .brand-card:nth-child(2) { animation-delay: 0.1s; }
.brands-grid .brand-card:nth-child(3) { animation-delay: 0.15s; }
.brands-grid .brand-card:nth-child(4) { animation-delay: 0.2s; }
.brands-grid .brand-card:nth-child(5) { animation-delay: 0.25s; }
.brands-grid .brand-card:nth-child(6) { animation-delay: 0.3s; }
.brands-grid .brand-card:nth-child(7) { animation-delay: 0.35s; }
.brands-grid .brand-card:nth-child(8) { animation-delay: 0.4s; }
.brands-grid .brand-card:nth-child(9) { animation-delay: 0.45s; }

/* Efeito 3D tilt nos cards ao hover */
.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.brand-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 180, 216, 0.4);
}

/* Ãcones com rotaÃ§Ã£o ao hover */
.feature-icon i {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-card:hover .feature-icon i {
    transform: rotate(360deg) scale(1.1);
}

.brand-icon i {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.brand-card:hover .brand-icon i {
    transform: rotate(15deg) scale(1.15);
}

/* BotÃ£o primÃ¡rio com shimmer effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* BotÃµes com pulso */
.btn-primary:active {
    animation: pulse 0.3s ease-in-out;
}

/* Logo do header - ESTÃTICO (sem animaÃ§Ã£o) */
.header .logo-img {
    /* Sem animaÃ§Ã£o para o logo do header */
}

/* Hero section com gradiente animado */
.hero {
    background: linear-gradient(135deg, var(--cor-laranja), var(--cor-azul), var(--cor-laranja));
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
}

/* Submenu com fade especial */
.dropdown-menu, .sub-dropdown-menu {
    animation: fadeInDown 0.3s ease-out;
}

/* Links do menu com efeito underline animado */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cor-laranja);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Section titles com animaÃ§Ã£o */
.section-title {
    animation: slideInLeft 0.8s ease-out;
}

/* Footer links com efeito hover */
.footer a {
    position: relative;
    transition: all 0.3s ease;
}

.footer a::before {
    content: '→';
    opacity: 0;
    margin-right: -10px;
    transition: all 0.3s ease;
}

.footer a:hover::before {
    opacity: 1;
    margin-right: 5px;
}

/* Ãcone do dropdown com rotaÃ§Ã£o */
.dropdown > a i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Seta do submenu com movimento */
.dropdown-submenu > a::after {
    transition: all 0.3s ease;
}

.dropdown-submenu:hover > a::after {
    transform: translateX(5px);
}

/* Scroll smooth para toda a pÃ¡gina */
html {
    scroll-behavior: smooth;
}

/* Hover nos Ã­cones do submenu com glow */
.dropdown-submenu a:hover i,
.sub-dropdown-menu a:hover i {
    filter: drop-shadow(0 0 8px currentColor);
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Input focus com glow */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
    border-color: var(--cor-laranja);
    transition: all 0.3s ease;
}

/* BotÃ£o de voltar animado */
.back-button {
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateX(-10px);
    color: var(--cor-laranja);
}

.back-button i {
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-5px);
}

/* Video cards com zoom suave */
.video-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover {
    transform: scale(1.02) translateY(-5px);
}

/* OBS boxes com animaÃ§Ã£o de entrada */
.info-banner {
    animation: slideInRight 0.8s ease-out;
}

/* Hero particles animation */
.hero::before {
    animation: float 20s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-title-top {
        font-size: 32px !important;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .hero-title-highlight {
        display: inline-block;
        padding: 15px 35px !important;
        margin: 0;
    }
    
    .hero-title-main {
        font-size: 36px !important;
        text-align: center;
        white-space: nowrap;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid,
    .apps-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MANUAIS PAGE ===== */
.manuais-section {
    padding: 60px 20px;
    background: var(--cor-fundo-secondary);
}

.manuais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.manual-card {
    background: var(--cor-card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transicao);
    text-decoration: none;
    color: var(--cor-texto);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.manual-card:hover {
    transform: translateY(-10px);
    border-color: var(--cor-laranja);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.manual-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--cor-laranja), var(--cor-azul));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.manual-image i {
    font-size: 50px;
    color: white;
}

.manual-title {
    font-size: 24px;
    color: var(--cor-laranja);
    margin-bottom: 15px;
    font-weight: 700;
}

.manual-desc {
    color: var(--cor-texto-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.manual-btn {
    background: var(--cor-laranja);
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transicao);
    display: inline-block;
}

.manual-card:hover .manual-btn {
    background: var(--cor-laranja-escuro);
    transform: scale(1.05);
}

/* ===== APP CARD LINK ===== */
.app-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.app-card-link .btn {
    pointer-events: none;
}

/* Centralizar logos IBO e Smarters */
.app-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.app-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


/* ===== MANUAL IMAGE PHOTO (Imagens PNG nos cards) ===== */
.manual-image-photo {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(74, 144, 226, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 15px;
}

.manual-image-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Dropdown mobile retrÃ¡til */
@media (max-width: 768px) {
    .dropdown-menu {
        display: none;
        position: static;
        background: rgba(255,255,255,0.1);
        margin-top: 10px;
        border-radius: 8px;
    }
    
    .dropdown-menu.show {
        display: block;
    }
}
