/*
Theme Name: ADV Network
Theme URI: https://adv.network
Author: ADV Network
Author URI: https://adv.network
Description: Tema institucional para ADV Network - Soluções especializadas para ISPs com BGP, Autenticação e CGNAT
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adv-network
Tags: responsive, institutional, isp, networking
*/

/* Reset bÃ¡sico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Container */
.container-max {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* SeÃ§Ãµes */
.section-padding {
  padding: 5rem 0;
}

.section-offset {
  scroll-margin-top: 5rem;
}

/* Gradientes */
.gradient-blue {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.gradient-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eff6ff 100%);
}

/* BotÃµes */
.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: white;
  color: #1e40af;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid #93c5fd;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #eff6ff;
}

/* Cards */
.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* UtilitÃ¡rios */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

/* Responsividade */
@media (max-width: 1024px) {
  .section-padding {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 2rem 0;
  }
}

