:root {
  /* Cores principais (mantidas do style3) */
  --primary-color: #175c96;
  --primary-dark: #3a0ca3;
  --primary-light: #4cc9f0;
  --primary-gradient: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
  
  --secondary-color: #3a0ca3;
  --secondary-gradient: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
  
  --accent-color: #f72585;
  --accent-dark: #b5179e;
  --accent-gradient: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
  
  /* Cores neutras modernas */
  --white: #ffffff;
  --light-color: #f8f9fa;
  --light-bg: #f8f9fa;
  --bg-surface: #ffffff;
  --bg-gray: #e9ecef;
  --bg-light: #f8f9fa;
  
  --dark-color: #212529;
  --text-dark: #2b2d42;
  --text-color: #4a4e69;
  --text-light: #8d99ae;
  --text-muted: #adb5bd;
  
  /* Glassmorphism effects */
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  
  /* Bordas modernas */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-2xl: 24px;
  
  /* Sombras mais sofisticadas */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-primary: 0 4px 15px rgba(67, 97, 238, 0.3);
  
  /* Transições mais fluidas */
  --transition-fast: all 0.15s cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Espaçamentos consistentes */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Tipografia */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-toast: 800;
}
/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* text-align: center; */
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.container h1{
    padding: 1rem;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: #2d3748;
}

h3 {
    font-size: 1.75rem;
    color: #4a5568;
}

p {
    margin-bottom: 1rem;
    color: #718096;
}

/* ===== BOTÕES ===== */
/* ============ BOTÕES MODERNIZADOS ============ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 16px 32px;
  background: var(--primary-gradient);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: var(--font-size-base);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  min-height: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.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: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.btn-outline,
.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  box-shadow: none;
}

.btn-primary {
    background: linear-gradient(135deg, #fd8a07 0%, #f15a2b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fdfdfd;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.btn-outline:hover {
    background: #f7fafc;
    border-color: #667eea;
    color: #667eea;
}

.btn-payment {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* ===== HEADER ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTIONS ===== */
.hero, .hosting-hero, .domain-hero, .services-hero, .about-hero, .contact-hero, .payment-hero, .confirmation-hero, .privacy-hero, .terms-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before, .hosting-hero::before, .domain-hero::before, .services-hero::before, .about-hero::before, .contact-hero::before, .payment-hero::before, .confirmation-hero::before, .privacy-hero::before, .terms-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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero h1, .hosting-hero h1, .domain-hero h1, .services-hero h1, .about-hero h1, .contact-hero h1, .payment-hero h1, .confirmation-hero h1, .privacy-hero h1, .terms-hero h1 {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    margin-bottom: 1.5rem;
}

.hero p, .hosting-hero p, .domain-hero p, .services-hero p, .about-hero p, .contact-hero p, .payment-hero p, .confirmation-hero p, .privacy-hero p, .terms-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FEATURES SECTION ===== */
.features, .hosting-features {
    padding: 80px 0;
    background: #f7fafc !important;
}

.features h2, .hosting-features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    background: white !important;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 0.5px solid #cccccc !important;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--white);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-bounce);
  position: relative;
  z-index: 2;
}

.feature-icon:hover {
  transform: scale(1.15) rotate(-5deg);
}

/* .story-image{
    width: 10px;
    height: 10px;
    object-fit: contain;
} */
.feature-img{
    width: 30%;
    height: auto;
    object-fit: contain;
}
/* ===== PLANS SECTION ===== */
.plans, .hosting-plans {
    padding: 80px 0;
    background: white !important;
}

.plans h2, .hosting-plans h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.plans-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.plan {
    background: white !important;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.plan.recommended {
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #718096;
    font-weight: 400;
}

.plan ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.plan li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

/* ===== DOMAIN SECTIONS ===== */
.domain-search {
    padding: 80px 0;
    background: #f7fafc;
}

.search-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.search-box h2 {
    margin-bottom: 2rem;
}

.search-box form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.search-box input, .search-box select {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    flex: 1;
    min-width: 200px;
}

.search-box input:focus, .search-box select:focus {
    outline: none;
    border-color: #667eea;
}

.result-box {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: none;
}

.domain-services {
    background: white;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: transparent !important;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 0.5px solid #cccccc !important;
    transition: all 0.3s ease;
}
.service-card ul li{
    color: #4a5568;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #667eea;
    margin: 1rem 0;
}

/* ===== PRICING TABLE ===== */
.domain-pricing {
    padding: 80px 0;
    background: #f7fafc !important;
}

.pricing-table {
    overflow-x: auto;
    margin-top: 2rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table th, .pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-table th {
    background: #020e46;
    color: white;
    font-weight: 600;
}

.pricing-table tr {
    background: #195ae7;
}

.pricing-table tr:hover {
    background: #ffffff;
    color: #212529;
}

/* ===== PROCESS STEPS ===== */
.domain-process, .services-process {
    padding: 80px 0;
    background: white !important;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Resumo do pedido*/

.item-name{
    color:#1612f1;
}
.item-price{
    color:#ee0808;
}
/* ===== FAQ SECTION ===== */
.hosting-faq, .domain-faq {
    padding: 80px 0;
    background: #f7fafc;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f7fafc;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
}

/* ===== SERVICES PAGE ===== */
.services-main {
    padding: 80px 0;
    background: white;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: white !important;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
}

.testimonial-content p {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1rem;
}

.author-name {
    font-weight: 600;
    color: #2d3748;
}

.author-company {
    color: #718096;
    font-size: 0.875rem;
}

.services-testimonials {
    padding: 80px 0;
    background: #f7fafc;
    text-align: center;
}

/* ===== ABOUT PAGE ===== */
.about-story {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.story-content {
    /* max-width: 800px; */
    max-width: 100%;
    margin: 0 auto;
    text-align: justify;
}

.about-mission {
    padding: 80px 0;
    background: #f7fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white !important;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mission-card ul {
    list-style: none;
    color: #4a5568;
}

.mission-card li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.mission-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.about-team {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.member {
    text-align: center;
    background: white !important;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    /* object-fit: contain; */
    margin-bottom: 1rem;
    border: 4px solid #e2e8f0;
}

.position {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bio {
    color: #718096;
    font-size: 0.875rem;
}

.about-numbers {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.number-item {
    text-align: center;
}

.number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item a {
    color: #667eea;
    text-decoration: none;
}

.contact-form {
    background: white !important;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #667eea;
}

.form-group input, .form-group select, .form-group textarea {
    color:#000155 !important;
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.terms {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.terms input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.success-message {
    background: #c6f6d5;
    color: #22543d;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}
/* ============ MAP SECTION ============ */
.map-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-light);
}

.map-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  color: var(--primary-color);
}

.map-container {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--bg-gray);
  transition: var(--transition-normal);
}

.map-container:hover {
  transform: scale(1.02);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  transition: var(--transition-normal);
}

/* ===== PAYMENT PAGE ===== */
.payment-section {
    padding: 80px 0;
    background: #f7fafc;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.payment-summary {
    background: white !important;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.order-summary {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.summary-total {
    text-align: center;
}

.total-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.payment-form {
    background: white !important;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.card-icons img {
    height: 30px;
    width: auto;
}

.payment-options {
    margin: 2rem 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    /* grid-template-columns: auto-fit; */
    gap: 1rem;
    margin-top: 1rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #667eea;
    background: #f7fafc;
}

.payment-option img {
    height: 40px;
    width: auto;
}

.payment-security {
    padding: 40px 0;
    background: white;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #f0fff4;
    border: 2px solid #68d391;
    border-radius: 12px;
}

.security-icon {
    font-size: 2rem;
    color: #38a169;
}

.security-text h3 {
    color: #22543d;
    margin-bottom: 0.5rem;
    text-align: center;
}

.security-text p {
    color: #2f855a;
    margin: 0;
    text-align: center;
}

/* ===== CONFIRMATION PAGE ===== */
.confirmation-section {
    padding: 80px 0;
    background: white;
}

.confirmation-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.confirmation-icon {
    font-size: 4rem;
    color: #48bb78;
    background: #c6f6d5;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.order-details {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.next-steps {
    max-width: 600px;
    margin: 3rem auto 0;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
}

.next-steps ol {
    margin-top: 1rem;
}

.next-steps li {
    padding: 0.5rem 0;
    color: #4a5568;
}

/* ===== PRIVACY & TERMS PAGES ===== */
.privacy-content, .terms-content {
    padding: 80px 0;
    background: white;
}

.privacy-section, .terms-section {
    color:#2f4d8d;
    max-width: 800px;
    margin: 0 auto 3rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.privacy-section h2, .terms-section h2 {
    color: #667eea;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.privacy-section ul, .terms-section ul {
    margin-left: 1.5rem;
}

.privacy-section li, .terms-section li {
    margin-bottom: 0.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: #a0aec0;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-links a {
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.social-links a img{
    width: 40px;
    height: 40px;
    color: var(--white);
    /* background: #4a5568; */


}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.pay-links{
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.pay-links a {
    color: #00550b;
    font-weight: 70%;
    text-decoration: none;
    padding: 0.5rem;
    /* background: #0691505b; */
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pay-links a img{
    width: 50px;
    height: 50px;
}
.pay-links a:hover {
    background: #0691505b;
    transform: translateY(-2px);
}
.copyright {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-scale {
    animation: fadeInScale 0.6s ease forwards;
}

/* ===== UTILITÁRIOS ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

.bg-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-secondary {
    background: #f7fafc;
}

.text-primary {
    color: #667eea;
}

.text-secondary {
    color: #718096;
}

.border-primary {
    border-color: #667eea;
}

.rounded {
    border-radius: 8px;
}

.rounded-lg {
    border-radius: 12px;
}

.rounded-xl {
    border-radius: 16px;
}

.shadow {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.shadow-xl {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== ESTADOS INTERATIVOS ===== */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

/* ===== LOADING STATES ===== */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {

    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero, .hosting-hero, .domain-hero, .services-hero, .about-hero, .contact-hero, .payment-hero, .confirmation-hero, .privacy-hero, .terms-hero {
        padding: 100px 0 60px;
    }
    
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .nav a {
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid #f7fafc;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero p, .hosting-hero p, .domain-hero p, .services-hero p, .about-hero p, .contact-hero p, .payment-hero p, .confirmation-hero p, .privacy-hero p, .terms-hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan.recommended {
        transform: none;
    }
    
    .search-box form {
        flex-direction: column;
    }
    
    .search-box input, .search-box select {
        min-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .confirmation-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .team-members {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .pricing-table {
        font-size: 0.875rem;
    }
    
    .pricing-table th, .pricing-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero, .hosting-hero, .domain-hero, .services-hero, .about-hero, .contact-hero, .payment-hero, .confirmation-hero, .privacy-hero, .terms-hero {
        padding: 80px 0 40px;
    }
    
    .feature, .service-card, .plan {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .confirmation-card {
        padding: 2rem 1.5rem;
    }
    
    .confirmation-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .payment-summary, .payment-form {
        padding: 1.5rem;
    }
    
    .security-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .tabs-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .number {
        font-size: 2.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header, .footer, .cta-section, .btn {
        display: none;
    }
    
    .hero, .hosting-hero, .domain-hero, .services-hero, .about-hero, .contact-hero, .payment-hero, .confirmation-hero, .privacy-hero, .terms-hero {
        background: none;
        color: black;
        padding: 20px 0;
    }
    
    .hero h1, .hosting-hero h1, .domain-hero h1, .services-hero h1, .about-hero h1, .contact-hero h1, .payment-hero h1, .confirmation-hero h1, .privacy-hero h1, .terms-hero h1 {
        color: black;
    }
    
    .feature, .service-card, .plan {
        box-shadow: none;
        border: 0.5px solid #cccccc !important;
    }
    
    .bg-primary {
        background: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a202c;
        --text-color: #e2e8f0;
        --card-bg: #ffffff;
        --border-color: #4a5568;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .feature, .service-card, .plan, .mission-card, .member, .testimonial, .contact-form, .payment-form, .payment-summary, .confirmation-card {
        background-color: var(--card-bg);
        /* border-color: var(--border-color); */
    }
    
    .form-group input, .form-group select, .form-group textarea {
        background-color: var(--card-bg);
        border-color: var(--border-color);
        color: var(--text-color);
    }
}

/* ===== FOCUS STYLES ===== */
*:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 4px;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a67d8;
}

/* ===== SELECTION STYLES ===== */
::selection {
    background-color: #667eea;
    color: white;
}

::-moz-selection {
    background-color: #667eea;
    color: white;
}