* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f7fb;
    color: #2d3748;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =========================================
   HEADER
========================================= */

.jh-header {
    background-color: #ffffff;
    border-bottom: 1px solid #d9e2ec;
}

/* =========================================
   LOGO
========================================= */

.jh-logo-img {
    height: 42px;
    width: auto;
    display: block;
}

/* =========================================
   NAVBAR
========================================= */

.navbar {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 60px;
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: #4a5568 !important;
    font-weight: 500;
    transition: 0.2s;
}

.nav-link:hover {
    color: #4da3ff !important;
}
.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
}
/* =========================================
   HAMBURGER
========================================= */

.navbar-toggler {
    border: 1px solid #d9e2ec !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* =========================================
   DROPDOWN
========================================= */

.dropdown-menu {
    border-radius: 12px;
    border: 1px solid #d9e2ec;
    padding: 10px;
    min-width: 260px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 14px;
    color: #4a5568;
    transition: 0.2s;
}

    .dropdown-item:hover {
        background-color: #f4f7fb;
        color: #4da3ff;
    }

/* =========================================
   MAIN
========================================= */

.jh-main {
    flex: 1;
    padding: 40px 0;
}

/* =========================================
   FOOTER
========================================= */

.jh-footer {
    height: 60px;
    border-top: 1px solid #d9e2ec;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    color: #718096;
    font-size: 14px;
}

/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 991px) {

    .navbar-nav {
        gap: 0;
        padding-top: 15px;
    }

    .nav-link {
        padding: 12px 0 !important;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 10px;
    }
}
/* =========================================
   HOME
========================================= */

.jh-home {
    padding: 80px 0 60px;
}

.jh-home-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.jh-home-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
}

.jh-home-subtitle {
    font-size: 18px;
    color: #718096;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* =========================================
   BUSCA
========================================= */

.jh-home-search {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.jh-home-search-input {
    width: 100%;
    max-width: 500px;
    height: 50px;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
}

    .jh-home-search-input:focus {
        border-color: #4da3ff;
    }

.jh-home-search-button {
    height: 50px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    background-color: #4da3ff;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

    .jh-home-search-button:hover {
        background-color: #2388f5;
    }

/* =========================================
   SECTIONS
========================================= */

.jh-tools,
.jh-categories,
.jh-home-seo {
    padding: 40px 0;
}

.jh-section-header {
    margin-bottom: 30px;
}

    .jh-section-header h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .jh-section-header p {
        color: #718096;
    }

/* =========================================
   GRID
========================================= */

.jh-tools-grid,
.jh-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* =========================================
   TOOL CARD
========================================= */

.jh-tool-card {
    background: white;
    border: 1px solid #d9e2ec;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    transition: 0.2s;
}

    .jh-tool-card:hover {
        border-color: #4da3ff;
        transform: translateY(-2px);
    }

    .jh-tool-card h3 {
        color: #2d3748;
        margin-bottom: 12px;
        font-size: 20px;
    }

    .jh-tool-card p {
        color: #718096;
        line-height: 1.5;
    }

/* =========================================
   CATEGORY CARD
========================================= */

.jh-category-card {
    background: white;
    border: 1px solid #d9e2ec;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    transition: 0.2s;
}

    .jh-category-card:hover {
        border-color: #4da3ff;
        color: #4da3ff;
    }

/* =========================================
   SEO BOX
========================================= */

.jh-seo-box {
    background: white;
    border: 1px solid #d9e2ec;
    border-radius: 16px;
    padding: 32px;
}

    .jh-seo-box h2 {
        margin-bottom: 16px;
    }

    .jh-seo-box p {
        color: #718096;
        line-height: 1.7;
    }

/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 768px) {

    .jh-home-title {
        font-size: 34px;
    }

    .jh-home-subtitle {
        font-size: 16px;
    }
}
/* =========================================
   ADS
========================================= */

.jh-ad-box {
    height: 120px;
    background: #edf2f7;
    border: 1px dashed #cbd5e0;
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-size: 14px;
}

/* =========================================
   IP CARD
========================================= */

.jh-ip-card {
    background: white;
    border: 1px solid #d9e2ec;
    border-radius: 18px;
    padding: 32px;
    margin-bottom: 30px;
}

.jh-ip-main {
    text-align: center;
}

.jh-ip-label {
    display: block;
    color: #718096;
    margin-bottom: 12px;
    font-size: 15px;
}

.jh-ip-address {
    font-size: 52px;
    color: #4da3ff;
    margin-bottom: 24px;
    word-break: break-word;
}

/* =========================================
   COPY BUTTON
========================================= */

.jh-copy-button {
    height: 50px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    background-color: #4da3ff;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

    .jh-copy-button:hover {
        background-color: #2388f5;
    }

/* =========================================
   SEO BOX
========================================= */

.jh-tool-seo {
    background: white;
    border: 1px solid #d9e2ec;
    border-radius: 18px;
    padding: 32px;
}

    .jh-tool-seo h2 {
        margin-bottom: 16px;
    }

    .jh-tool-seo p {
        color: #718096;
        line-height: 1.7;
    }
