﻿/* STYLESHEET EXCLUSIVO DE BRYRMERXUR STUDIO */

:root {
  --dark-bg: #0b0f17;
  --card-bg: #151c28;
  --accent-teal: #00f5d4;
  --accent-purple: #820ad4;
  --accent-orange: #ff5722;
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --border-light: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-syne {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Accessibility skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--accent-teal);
  color: var(--dark-bg);
  padding: 10px 20px;
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

/* Common Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.max-width-800 { max-width: 800px; }
.max-width-600 { max-width: 600px; }
.text-center { text-center: center; text-align: center; }

.badge {
  display: inline-block;
  background-color: rgba(0, 245, 212, 0.1);
  color: var(--accent-teal);
  border: 1px solid rgba(0, 245, 212, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sub-badge {
  display: inline-block;
  color: var(--accent-purple);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

/* Global Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-teal), #00d2b4);
  color: var(--dark-bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 245, 212, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-nav {
  background-color: var(--accent-purple);
  color: white;
  padding: 8px 18px;
  font-size: 13px;
}

.btn-nav:hover {
  background-color: #6a04b3;
}

/* Header & Navigation */
.main-header {
  position: sticky;
  top: 0;
  background-color: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: white;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--accent-teal);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

/* Unique dynamic mesh backdrop glow on Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.dynamic-mesh-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.dynamic-mesh-glow::before, .dynamic-mesh-glow::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  animation: floatGlow 18s ease-in-out infinite alternate;
}

.dynamic-mesh-glow::before {
  background: var(--accent-teal);
  top: -10%;
  left: 10%;
}

.dynamic-mesh-glow::after {
  background: var(--accent-purple);
  bottom: -10%;
  right: 10%;
  animation-delay: -9s;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -60px) scale(1.15); }
  100% { transform: translate(-40px, 80px) scale(0.9); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-visual {
  position: relative;
}

.visual-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.visual-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Info Highlight section (Random 1) */
.info-highlight-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
  background-color: rgba(255, 255, 255, 0.01);
}

.section-lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 16px auto 48px auto;
}

.tech-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 24px;
}

.tech-card i {
  font-size: 32px;
  color: var(--accent-teal);
  margin-bottom: 16px;
}

.tech-card h3 {
  font-size: 16px;
  font-weight: 500;
}

/* Features Asymmetric Block */
.features-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
}

.features-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.feature-image-block {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.feature-image-block img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text-block h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-text-block p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.styled-list {
  list-style: none;
}

.styled-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.list-icon {
  background-color: rgba(130, 10, 212, 0.1);
  color: var(--accent-purple);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px;
}

.styled-list li div {
  font-size: 14px;
}

.styled-list li div strong {
  color: white;
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
  background-color: rgba(255,255,255,0.01);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.price-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.recommended {
  border: 2px solid var(--accent-purple);
  box-shadow: 0 15px 30px rgba(130, 10, 212, 0.15);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.price-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.price-card .price {
  font-size: 36px;
  font-weight: 500;
  color: white;
  margin-bottom: 16px;
}

.price-card .price span {
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 40px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.plan-features li i {
  color: var(--accent-teal);
  font-size: 14px;
}

.btn-plan-select {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  font-size: 13px;
  width: 100%;
}

.price-card.recommended .btn-plan-select {
  background-color: var(--accent-purple);
  border: none;
}

.btn-plan-select:hover {
  background-color: var(--text-primary);
  color: var(--dark-bg);
}

/* Lead Form Section */
.form-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.form-info-side h2 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.form-info-side p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-details-compact p {
  font-size: 15px;
  margin-bottom: 8px;
  color: white;
}

.contact-details-compact p i {
  color: var(--accent-teal);
  margin-right: 8px;
}

.form-wrapper {
  background-color: var(--card-bg);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input, .form-group textarea {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 6px;
  color: white;
  font-size: 14px;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent-teal);
  outline: none;
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.1);
}

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.form-checkbox input {
  margin-top: 4px;
}

.form-checkbox label {
  font-size: 12px;
  color: var(--text-secondary);
}

.form-checkbox label a {
  color: var(--accent-teal);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: var(--accent-teal);
  color: var(--dark-bg);
}

/* Infrastructure Section (Random 2) */
.tech-infrastructure-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(130, 10, 212, 0.03) 100%);
}

/* Trust Layer (Transparency Block before footer) */
.trust-layer {
  background-color: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border-light);
  padding: 48px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.trust-layer h3 {
  font-size: 16px;
  color: white;
  margin-bottom: 12px;
}

.trust-layer p {
  margin-bottom: 12px;
  line-height: 1.5;
}

.disclaimer-text {
  border-left: 2px solid var(--accent-purple);
  padding-left: 12px;
  font-style: italic;
}

.trust-layer a {
  color: var(--accent-teal);
  text-decoration: underline;
}

/* Footer structure */
.main-footer {
  background-color: #070a10;
  border-top: 1px solid var(--border-light);
  padding: 60px 0 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand span {
  font-size: 20px;
  color: white;
}

.footer-parent-info {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-grid h4 {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

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

.footer-grid ul li a {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-grid ul li a:hover {
  color: var(--accent-teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

/* Contact page structure */
.generic-hero {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid var(--border-light);
}

.generic-hero h1 {
  font-size: 40px;
  line-height: 1.2;
}

.contact-details-section {
  padding: 80px 0;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-block i {
  color: var(--accent-teal);
  font-size: 20px;
  margin-top: 4px;
}

.info-block h4 {
  color: white;
  margin-bottom: 4px;
}

.info-block p {
  color: var(--text-secondary);
  font-size: 13px;
}

.grid-two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.responsive-map {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.responsive-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-heading {
  font-size: 16px;
  margin-bottom: 12px;
}

/* FAQ Accordion page structure */
.faq-accordion-section {
  padding: 80px 0;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
  padding: 0 24px 20px 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Generic layout details */
.detailed-about-section {
  padding: 80px 0;
}

.about-text-content h2 {
  margin-bottom: 16px;
}

.about-text-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 14px;
}

.about-image-side img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.services-list-section {
  padding: 80px 0;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-row.alternate .service-img-col {
  order: 2;
}

.service-img-col img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.service-text-col h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-text-col p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
}

/* Success Thank You Page & 404 */
.thank-you-section, .error-section {
  padding: 120px 0;
}

.success-icon-badge {
  font-size: 64px;
  color: var(--accent-teal);
  margin-bottom: 24px;
}

.thank-you-message, .error-message {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.details-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.error-code {
  font-size: 120px;
  color: var(--accent-purple);
  line-height: 1;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px;
  z-index: 10000;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .cookie-banner {
    max-width: 480px;
    right: auto;
  }
}

.cookie-content p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.cookie-content p a {
  color: var(--accent-teal);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.btn-cookie-accept {
  background: var(--accent-teal);
  color: var(--dark-bg);
  border: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}

.btn-cookie-accept:hover {
  background: var(--text-primary);
}

.btn-cookie-decline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}

.btn-cookie-decline:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* RESPONSIVE MEDIA QUERIES (Mobile-first logic) */
@media (max-width: 992px) {
  .hero-grid, .features-asymmetric, .pricing-grid, .form-grid, .grid-two-cols, .service-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-row.alternate .service-img-col {
    order: 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .tech-icons-grid {
    grid-template-columns: 1fr;
  }

  /* Nav menu drawer */
  .burger-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    display: none;
    z-index: 999;
  }

  .nav-links.nav-active {
    display: flex;
  }

  .btn-nav {
    display: none; /* Hide in header, access via drawer */
  }
}