* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1e73ff;
  --primary-dark: #0f3b8f;
  --text-dark: #0d1b2a;
  --text-light: #1b2b45;
  --bg-light: #f4f6fb;
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* SKIP LINK - ACESSIBILIDADE */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  top: 0;
}

/* HEADER */
.header {
  background: var(--bg-white);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.logo a {
  display: flex;
  align-items: center;
}

.logo a:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-area {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-area:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2.5px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* HERO */
.hero {
  position: relative;
  background: url('../assets/hero-bg.png') center/cover no-repeat;
  background-attachment: fixed;
  padding: 100px 0 80px;
  color: white;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 59, 143, 0.85), rgba(30, 115, 255, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text span {
  color: #9ed0ff;
  display: block;
}

.hero-text p {
  font-size: 18px;
  opacity: 0.95;
  margin: 25px 0 35px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(30, 115, 255, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border-color: white;
}

.btn-secondary:hover {
  background: var(--bg-light);
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: var(--bg-light);
  clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
}

/* SEÇÕES */
section {
  padding: 80px 0;
}

section h2 {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

/* HOSPEDAGEM */
.hospedagem {
  background: var(--bg-light);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.planos-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.plano-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.plano-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.plano-card.destaque {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.plano-card.destaque:hover {
  transform: scale(1.05) translateY(-10px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.plano-card h3 {
  font-size: 24px;
  margin: 20px 0;
  color: var(--text-dark);
}

.preco {
  margin: 25px 0;
}

.valor {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  display: inline;
  white-space: nowrap;
}

.periodo {
  font-size: 16px;
  color: #999;
  display: inline;
  white-space: nowrap;
}

.preco-linha {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  flex-wrap: nowrap;
}

.features {
  list-style: none;
  text-align: left;
  margin: 30px 0;
  flex-grow: 1;
}

.features li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.features li:last-child {
  border-bottom: none;
}

.plano-card .btn-primary {
  margin-top: 20px;
  width: 100%;
}

.plano-subtitulo {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: -10px 0 8px;
}

.plano-descricao {
  font-size: 13px;
  color: #777;
  margin-bottom: 5px;
}

.plano-tagline {
  font-size: 13px;
  color: #555;
  font-style: italic;
  margin: 5px 0 10px;
}

.plano-ideal {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
  margin: 5px 0 15px;
  padding: 8px;
  background: rgba(var(--primary-rgb, 0,112,243), 0.06);
  border-radius: 6px;
}

.preco-criacao {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #444;
  margin-bottom: 4px;
}

.preco-criacao small {
  font-size: 12px;
  font-weight: 400;
  color: #999;
}

.valor-negociar {
  font-size: 32px !important;
}

.plano-negociar .preco {
  margin: 15px 0;
}

/* SITES */
.sites {
  background: white;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.servico-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.servico-card:hover {
  background: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.servico-card .icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.servico-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.servico-card p {
  color: #666;
  line-height: 1.6;
}

/* SOBRE */
.sobre {
  background: var(--bg-light);
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sobre-texto h3,
.sobre-valores h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.sobre-texto p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.numero {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.label {
  display: block;
  font-size: 14px;
  color: #666;
}

.sobre-valores ul {
  list-style: none;
}

.sobre-valores li {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  color: #666;
}

.sobre-valores li strong {
  color: var(--text-dark);
}

/* CONTATO */
.contato {
  background: white;
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.formulario-contato {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 115, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.formulario-contato .btn-primary {
  width: 100%;
  margin-top: 10px;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.info-item p {
  color: #666;
}

.info-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.info-item a:hover {
  text-decoration: underline;
}

/* FOOTER */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #ccc;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #20BA5A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 99;
  animation: float-whatsapp 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

@keyframes float-whatsapp {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 36px;
  }

  .logo img {
    height: 58px;
  }

  .hero {
    min-height: 500px;
    padding: 80px 0 60px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-content {
    gap: 30px;
  }

  .sobre-content,
  .contato-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
  }

  .nav.active {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    z-index: 50;
  }

  .nav.active .nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }

  .logo img {
    height: 40px;
  }

  .whatsapp-btn {
    width: 56px;
    height: 56px;
    bottom: 25px;
    right: 25px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 50px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
  }

  .hero-image {
    order: -1;
    margin-bottom: 30px;
  }

  .hero-image img {
    max-width: 80%;
  }

  .hero-wave {
    height: 80px;
    clip-path: polygon(0 50%, 100% 20%, 100% 100%, 0% 100%);
  }

  .planos-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .plano-card.destaque {
    transform: scale(1);
  }

  .plano-card.destaque:hover {
    transform: translateY(-10px);
  }

  section h2 {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .servicos-grid,
  .planos-grid {
    gap: 20px;
  }

  .contato-content,
  .sobre-content {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .formulario-contato,
  .contato-info {
    gap: 15px;
  }

  .nav-container {
    gap: 10px;
  }

  .btn-area {
    padding: 8px 16px;
    font-size: 12px;
  }

  .logo img {
    height: 28px;
  }
}

@media (max-width: 480px) {
  .planos-grid-4 {
    grid-template-columns: 1fr;
  }

  .container {
    width: 95%;
    padding: 0 10px;
  }

  .whatsapp-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 14px;
  }

  section h2 {
    font-size: 24px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .plano-card {
    padding: 25px 20px;
  }

  .valor {
    font-size: 36px;
  }

  .servico-card {
    padding: 25px 20px;
  }

  .servico-card .icon {
    font-size: 40px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .numero {
    font-size: 28px;
  }

  .footer-content {
    gap: 20px;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 14px;
  }

  .formulario-contato .btn-primary {
    padding: 12px 24px;
  }

  .logo img {
    height: 35px;
  }
}

@media (max-width: 600px) {
  .logo img {
    height: 36px;
  }
}
