@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;600&display=swap');

:root {
  /* Cores Institucionais da Fundação Vanessa Macamo */
  --blue-deep: #04294F;
  --blue-darker: #02152b;
  --gold-light: #D2AE6D;
  --gold-dark: #C09C49;
  --beige-rose: #F1E1D8;
  --white: #FFFFFF;
  --text-gray: #B0C4DE;
  
  /* Gradientes Tecnológicos */
  --neon-glow: 0 0 15px rgba(210, 174, 109, 0.5), 0 0 30px rgba(210, 174, 109, 0.3);
  --bg-gradient: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue-deep) 100%);
  
  /* Tipografia */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* Custom cursor */
}

/* Futuristic Cursor Effect */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
  background-color: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light), 0 0 20px var(--gold-light);
}

.cursor-outline {
  width: 45px;
  height: 45px;
  border: 1px dashed rgba(210, 174, 109, 0.8);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline.rotate {
  animation: rotateCursor 10s linear infinite;
}

@keyframes rotateCursor {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Click Ripple Effect */
.cursor-ripple {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  z-index: 9998;
  pointer-events: none;
  animation: rippleEffect 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes rippleEffect {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
    border-width: 3px;
  }
  100% {
    width: 90px;
    height: 90px;
    opacity: 0;
    border-width: 0px;
  }
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(4, 41, 79, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo img {
  height: 60px;
}
.logo h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  margin: 0;
}
.logo span {
  color: var(--gold-light);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--gold-light);
  transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--gold-light);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px 20px;
  position: relative;
  overflow: hidden;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(210, 174, 109, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.big-typography {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: -webkit-linear-gradient(45deg, var(--white), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease-out;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--neon-glow);
  cursor: pointer;
}

.btn:hover {
  background: var(--gold-light);
  color: var(--blue-deep);
  box-shadow: 0 0 25px var(--gold-light);
}

/* Sections */
section {
  padding: 100px 50px;
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--white);
}

.section-title span {
  color: var(--gold-light);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Cards (Services) */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-align: left;
  backdrop-filter: blur(5px);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-light);
  box-shadow: var(--neon-glow);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  filter: grayscale(80%) sepia(20%) hue-rotate(180deg);
  transition: filter 0.3s;
}

.card:hover img {
  filter: grayscale(0%);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--gold-light);
}

.card p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

.card-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.card-link:hover {
  color: var(--gold-light);
}

/* Image blocks */
.img-block img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--neon-glow);
}

/* Simulator */
.simulator-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.sim-steps {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(210, 174, 109, 0.2);
  backdrop-filter: blur(10px);
}

.sim-step {
  margin-bottom: 40px;
}

.sim-step h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}

/* Radio Cards */
.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.radio-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s;
  text-align: center;
  height: 100%;
}

.radio-card:hover .radio-content {
  border-color: rgba(210, 174, 109, 0.5);
}

.radio-card input:checked ~ .radio-content {
  border-color: var(--gold-light);
  background: rgba(210, 174, 109, 0.1);
  box-shadow: 0 0 15px rgba(210, 174, 109, 0.2);
}

.radio-content strong {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 5px;
}

.radio-content span {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* Checkbox Toggles */
.toggle-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.toggle-card:hover {
  border-color: rgba(210, 174, 109, 0.5);
}

.toggle-card input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-light);
}

.toggle-info strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
}
.toggle-info span {
  color: var(--gold-light);
  font-size: 0.9rem;
}

/* Sticky Total Panel */
.total-panel {
  background: rgba(4, 41, 79, 0.9);
  border: 2px solid var(--gold-light);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: sticky;
  top: 120px;
  box-shadow: var(--neon-glow);
  backdrop-filter: blur(10px);
}

.total-panel h3 {
  color: var(--text-gray);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.total-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 30px;
}

/* Contacts Form Group */
.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}

select, input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  border-radius: 8px;
  transition: border-color 0.3s;
}

select:focus, input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-light);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 1002;
  transition: color 0.3s;
}
.mobile-menu-btn:hover {
  color: var(--gold-light);
}

@media (max-width: 992px) {
  .mobile-menu-btn {
    display: block;
    position: absolute;
    right: 30px;
    top: 30px;
  }
  
  header {
    padding: 20px 30px !important;
  }
  
  .logo img {
    height: 50px !important;
  }
  
  .logo h1 {
    font-size: 1.4rem !important;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(4, 41, 79, 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    border-left: 1px solid rgba(255,255,255,0.05);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 30px;
    width: 100%;
    text-align: center;
  }
  
  nav ul li {
    width: 100%;
  }
  
  nav ul li a {
    font-size: 1.3rem;
    display: block;
    padding: 10px;
  }

  .simulator-container {
    grid-template-columns: 1fr;
  }
  .total-panel {
    position: relative;
    top: 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
  background: var(--blue-darker);
  padding: 40px 50px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
}

footer p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .big-typography { font-size: 3rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
}

/* Contact Page Elegant Styles */
.contact-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(210, 174, 109, 0.15);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}

.contact-info-panel {
  background: linear-gradient(135deg, rgba(210,174,109,0.1), rgba(4,41,79,0.8));
  padding: 50px;
  border-left: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  background: rgba(210, 174, 109, 0.1);
  color: var(--gold-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--neon-glow);
  flex-shrink: 0;
  transition: all 0.3s;
}

.contact-item:hover .contact-icon {
  background: var(--gold-light);
  color: var(--blue-deep);
  transform: scale(1.1);
}

.contact-item h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form-panel {
  padding: 50px;
}

.elegant-input {
  background: rgba(0,0,0,0.15);
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px 8px 0 0;
  padding: 15px 20px;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s;
  width: 100%;
  font-family: var(--font-body);
}

.elegant-input:focus {
  background: rgba(0,0,0,0.3);
  border-bottom-color: var(--gold-light);
  box-shadow: 0 5px 15px rgba(210,174,109,0.1);
  outline: none;
}

@media (max-width: 768px) {
  .contact-info-panel, .contact-form-panel {
    padding: 30px 20px;
  }
}
