@import "/themes/default/assets/css/top.css";
@import "/themes/default/assets/css/blacklist.css";
@import "/themes/default/assets/css/dnspropagation.css";
@import "/themes/default/assets/css/dnslookup.css";
/* 
 * CSS Melhorado para Header GTDNS
 * Menu mobile no topo direito com animações modernas
 */


/* Variáveis Globais */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #4cc9f0;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --success-color: #4ade80;
    --warning-color: #fbbf24;
    --danger-color: #f87171;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --border-radius: 10px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --navbar-height: 70px; /* Altura da navbar para cálculos de espaçamento */
}

/* Estilos Gerais */
body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}


.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-padding {
    padding: 20px 0;
}
* {
    box-sizing: border-box;
}


/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-wave {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
}

/* Network Animation */
.network-animation {
    position: relative;
    width: 100%;
    height: 350px;
}

.nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.node-central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    z-index: 2;
}

.node-1 {
    top: 20%;
    left: 20%;
    animation: float 4s infinite ease-in-out;
}

.node-2 {
    top: 70%;
    left: 30%;
    animation: float 6s infinite ease-in-out 1s;
}

.node-3 {
    top: 30%;
    left: 70%;
    animation: float 5s infinite ease-in-out 0.5s;
}

.node-4 {
    top: 80%;
    left: 80%;
    animation: float 7s infinite ease-in-out 2s;
}

.node-5 {
    top: 40%;
    left: 40%;
    animation: float 3s infinite ease-in-out 1.5s;
}

.connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.8), rgba(255,255,255,0.3));
    transform-origin: left center;
    z-index: 1;
}

.connection-1 {
    top: calc(20% + 10px);
    left: calc(20% + 10px);
    width: 30%;
    animation: pulse 2s infinite;
}

.connection-2 {
    top: calc(70% + 10px);
    left: calc(30% + 10px);
    width: 20%;
    transform: rotate(45deg);
    animation: pulse 3s infinite 0.5s;
}

.connection-3 {
    top: calc(30% + 10px);
    left: calc(70% + 10px);
    width: 15%;
    transform: rotate(-45deg);
    animation: pulse 2.5s infinite 1s;
}

.connection-4 {
    top: calc(80% + 10px);
    left: calc(80% + 10px);
    width: 25%;
    transform: rotate(-135deg);
    animation: pulse 4s infinite 1.5s;
}

.connection-5 {
    top: calc(40% + 10px);
    left: calc(40% + 10px);
    width: 10%;
    transform: rotate(90deg);
    animation: pulse 3.5s infinite 0.7s;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* Tool Cards */
.tool-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tool-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tool-icon i {
    font-size: 30px;
    color: white;
}

.tool-card h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.tool-action {
    margin-top: 20px;
}

/* Feature Cards */
.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 20px;
    color: white;
}

.feature-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
    margin-top: 80px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* Modals */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.btn-outline-light {
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .btn {
        padding: 8px 20px;
    }
    
    .d-flex.gap-3 {
        justify-content: center;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

/* Hero About Page Specific Styles */
.hero-about {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.about-illustration {
    position: relative;
    width: 100%;
    height: 350px;
}

.team-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.team-icon i {
    font-size: 20px;
    color: var(--secondary-color);
}

.team-icon-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    z-index: 2;
}

.team-icon-center i {
    font-size: 30px;
    color: white;
}

.team-icon-1 {
    top: 20%;
    left: 30%;
    animation: float 4s infinite ease-in-out;
}

.team-icon-2 {
    top: 70%;
    left: 30%;
    animation: float 6s infinite ease-in-out 1s;
}

.team-icon-3 {
    top: 30%;
    left: 70%;
    animation: float 5s infinite ease-in-out 0.5s;
}

.team-icon-4 {
    top: 70%;
    left: 70%;
    animation: float 7s infinite ease-in-out 2s;
}

.team-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.team-connection {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.8), rgba(255,255,255,0.3));
    transform-origin: left center;
    z-index: 1;
}

.team-connection-1 {
    width: 20%;
    top: 50%;
    left: 30%;
    transform: rotate(90deg);
    animation: pulse 2s infinite;
}

.team-connection-2 {
    width: 28%;
    top: 50%;
    left: 50%;
    animation: pulse 3s infinite 0.5s;
}

.team-connection-3 {
    width: 20%;
    top: 50%;
    left: 70%;
    transform: rotate(90deg);
    animation: pulse 2.5s infinite 1s;
}

.team-connection-4 {
    width: 40%;
    top: 70%;
    left: 30%;
    animation: pulse 4s infinite 1.5s;
}
