/* SEMPRE - Website Clean Design */
/* Inspirado na LinkedBy com cores branco, preto e verde claro */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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


body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Portfolio Section */
.portfolio-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  min-height: 100vh;
}

.portfolio-actions {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
  margin-top: 3rem;
}

/* Blog Section */
.blog-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
}

/* Blog Navigation */
.blog-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.blog-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  color: #6b7280;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.blog-nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(1, 37, 63, 0.1), transparent);
  transition: left 0.5s ease;
}

.blog-nav-btn:hover::before {
  left: 100%;
}

.blog-nav-btn:hover {
  border-color: #01253f;
  color: #01253f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 37, 63, 0.1);
}

.blog-nav-btn.active {
  background: linear-gradient(135deg, #01253f, #02355a);
  border-color: #01253f;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(1, 37, 63, 0.3);
}

.blog-nav-btn i {
  font-size: 1rem;
}

/* Blog Posts Grid */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Blog Loading */
.blog-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

.loading-animation {
  text-align: center;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #01253f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  color: #6b7280;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Blog Post Card */
.blog-post {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.blog-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(1, 37, 63, 0.1);
  border-color: #01253f;
}

.blog-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #01253f, #02355a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.blog-post:hover::before {
  transform: scaleX(1);
}

.blog-post-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f8f9fa, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-image .placeholder-icon {
  font-size: 3rem;
  color: #01253f;
  opacity: 0.3;
}

.blog-post-content {
  padding: 2rem;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.blog-post-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-post-category {
  background: linear-gradient(135deg, #01253f, #02355a);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-post-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-post:hover .blog-post-title {
  color: #01253f;
}

.blog-post-excerpt {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.blog-post-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #01253f;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.blog-post-link:hover {
  color: #02355a;
  transform: translateX(5px);
}

.blog-post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-post-tag {
  background: #f3f4f6;
  color: #6b7280;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Blog Actions */
.blog-actions {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

/* Empty State */
.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
}

.blog-empty-icon {
  font-size: 4rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.blog-empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.blog-empty-text {
  color: #6b7280;
  font-size: 1rem;
}

/* Error State */
.blog-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
}

.blog-error-icon {
  font-size: 4rem;
  color: #ef4444;
  margin-bottom: 1rem;
}

.blog-error-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.blog-error-text {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.blog-retry-btn {
  background: linear-gradient(135deg, #01253f, #02355a);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 37, 63, 0.3);
}

/* Animation delays for staggered effect */
.blog-post:nth-child(1) { animation-delay: 0.1s; }
.blog-post:nth-child(2) { animation-delay: 0.2s; }
.blog-post:nth-child(3) { animation-delay: 0.3s; }
.blog-post:nth-child(4) { animation-delay: 0.4s; }
.blog-post:nth-child(5) { animation-delay: 0.5s; }
.blog-post:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Blog */

/* Blog Article Page Styles */
.blog-article-container {
  background: #ffffff;
  min-height: 100vh;
  padding: 2rem 0;
}

.article-header {
  margin-bottom: 3rem;
}

.back-to-blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  color: #6b7280;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  font-family: inherit;
  font-size: 0.9rem;
}

.back-to-blog-btn:hover {
  background: #01253f;
  border-color: #01253f;
  color: #ffffff;
  transform: translateY(-2px);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-category {
  background: linear-gradient(135deg, #01253f, #02355a);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-date,
.article-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.article-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.article-featured-image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 3rem;
}

.article-paragraph {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.article-heading {
  color: #1a1a1a;
  font-weight: 600;
  margin: 2rem 0 1rem;
  line-height: 1.3;
}

.article-heading:first-child {
  margin-top: 0;
}

.article-image {
  margin: 2rem 0;
  text-align: center;
}

.article-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-external-link {
  text-align: center;
  margin: 2rem 0;
  padding: 2rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
}

.external-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #01253f, #02355a);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.external-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(1, 37, 63, 0.3);
}

.article-footer {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
}

.article-share {
  margin-bottom: 3rem;
}

.article-share h4 {
  color: #1a1a1a;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 0.9rem;
}

.share-btn.whatsapp {
  background: #25d366;
  color: #ffffff;
}

.share-btn.whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

.share-btn.facebook {
  background: #1877f2;
  color: #ffffff;
}

.share-btn.facebook:hover {
  background: #166fe5;
  transform: translateY(-2px);
}

.share-btn.linkedin {
  background: #0a66c2;
  color: #ffffff;
}

.share-btn.linkedin:hover {
  background: #004182;
  transform: translateY(-2px);
}

.share-btn.copy {
  background: #6b7280;
  color: #ffffff;
}

.share-btn.copy:hover {
  background: #4b5563;
  transform: translateY(-2px);
}

.back-to-blog-footer {
  text-align: center;
}

/* Blog Notification Styles */
.blog-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 400px;
}

.blog-notification .notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
}

.blog-notification .notification-close {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: auto;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.blog-notification .notification-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Article Page */
@media (max-width: 1024px) {
  .blog-posts {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .blog-nav {
    gap: 0.75rem;
  }
  
  .blog-nav-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .article-content,
  .article-footer {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .share-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .blog-posts {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .blog-nav-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .blog-post-content {
    padding: 1.5rem;
  }
  
  .blog-post-title {
    font-size: 1.2rem;
  }
  
  .blog-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .blog-post-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .article-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  
  .article-body {
    font-size: 1rem;
  }
  
  .share-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .share-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 4rem 0;
  }
  
  .blog-post-image {
    height: 150px;
  }
  
  .blog-post-content {
    padding: 1.25rem;
  }
  
  .blog-post-title {
    font-size: 1.1rem;
  }
  
  .blog-nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .loading-animation {
    padding: 2rem 1rem;
  }
  
  .blog-empty,
  .blog-error {
    padding: 3rem 1rem;
  }
  
  .blog-article-container {
    padding: 1rem 0;
  }
  
  .article-header {
    margin-bottom: 2rem;
  }
  
  .back-to-blog-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .article-body {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .article-paragraph {
    margin-bottom: 1.25rem;
  }
  
  .external-link-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .share-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

.loading-content {
  text-align: center;
  color: #1a1a1a;
  position: relative;
  z-index: 10;
  max-width: 600px;
  padding: 2rem;
}

.loading-animation {
  position: relative;
  margin-bottom: 2rem;
}

.code-terminal {
  background: #ffffff;
  border: 2px solid #01253f;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #01253f; }

.terminal-title {
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-left: 1rem;
}

.code-lines {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.code-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease-out forwards;
  color: #01253f;
  font-weight: 600;
  font-size: 1.1rem;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading-progress {
  margin: 2rem 0;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #01253f, #02355a);
  border-radius: 3px;
  width: 0%;
  animation: loadProgress 2s ease-in-out infinite;
}

@keyframes loadProgress {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

.loading-message {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.loading-submessage {
  font-size: 1rem;
  color: #6b7280;
}

/* Floating particles - simplified */
.code-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.code-particle {
  position: absolute;
  font-size: 1.2rem;
  color: rgba(74, 222, 128, 0.3);
  animation: floatUp 3s linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(180deg);
    opacity: 0;
  }
}

/* Universe Background - Clean geometric shapes */
.universe-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.05;
}

#universe-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Header */
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 100;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e5e7eb;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.logo {
  height: 45px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #01253f;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #01253f;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: #1a1a1a;
  margin: 3px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  margin-top: 0;
}

/* Hero Carousel Styles */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Slide backgrounds */
.hero-slide:nth-child(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                    url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
}

.hero-slide:nth-child(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                    url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
}

.hero-slide:nth-child(3) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                    url('https://images.pexels.com/photos/3184360/pexels-photo-3184360.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.hero-slide .hero-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #1a1a1a;
}

.hero-slide .hero-title {
  color: #ffffff;
  text-align: center;
}

.hero-slide .hero-description {
  color: #ffffff;
  text-align: center;
}
.hero-slide {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centraliza verticalmente */
  align-items: center;     /* centraliza horizontalmente */
  height: 100%;            /* garanta que o container ocupe toda a altura */
  text-align: center;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 10;
  pointer-events: none;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  color: #1a1a1a;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 15;
  position: relative;
}

.carousel-btn:hover {
  background: #01253f;
  border-color: #fff;
  color: #ffffff;
  transform: scale(1.1);
}

.carousel-indicators {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 15;
  position: relative;
}

.indicator.active {
  background: #01253f;
  border-color: #fff;
  transform: scale(1.2);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}


@keyframes gentlePulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.5); opacity: 0.4; }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-element {
  position: absolute;
  opacity: 0.1;
  animation: gentleFloat 12s ease-in-out infinite;
  font-size: 24px;
  color: #01253f;
}

.floating-element:nth-child(1) { top: 25%; left: 20%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 60%; right: 25%; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 30%; left: 30%; animation-delay: 4s; }
.floating-element:nth-child(4) { top: 40%; right: 15%; animation-delay: 6s; }
.floating-element:nth-child(5) { bottom: 50%; left: 10%; animation-delay: 8s; }

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
  50% { transform: translateY(-30px) rotate(10deg); opacity: 0.2; }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #1a1a1a;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease-out forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.3s;
}

.highlight {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.8s forwards;
  color: #6b7280;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s forwards;
  flex-wrap: wrap;
  z-index: 6;
  position: relative;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 7;
}

.cta-button.primary {
  background: linear-gradient(135deg, #01253f, #02355a);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
  background: #ffffff;
  color: #1a1a1a;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 15px rgba(20, 63, 173, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
}

.cta-button.primary:hover {
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.857);
}

.cta-button.secondary:hover {
  background: #f9fafb;
  border-color: #ffffff;
  color: #ffffff;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: rgba(107, 114, 128, 0.5);
  position: relative;
  animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(107, 114, 128, 0.5);
  border-bottom: 2px solid rgba(107, 114, 128, 0.5);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* Section Styles */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.section-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #01253f, #02355a);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.section-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.5rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Values Section */
.values-section {
  margin-top: 2rem;
}

.values-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #1a1a1a;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

  width: 100%;       /* ocupa 90% da largura disponível */
  max-width: 1200px; /* limite para não ficar exagerado */
  margin: 0 auto;   /* centraliza o card na tela */
}

.value-item:hover {
  background: #f9fafb;
  border-color: #01253f;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #01253f, #02355a);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.value-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.value-content p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Services Section */
.services-section {
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #01253f, #02355a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  background: #f9fafb;
  border-color: #01253f;
  box-shadow: 0 20px 40px rgba(74, 222, 128, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #01253f, #02355a);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.service-card > p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #01253f;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #01253f;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.service-cta:hover {
  background: #01253f;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Moments Section */
.moments-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.moment-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.moment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #01253f, #02355a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 2;
}

.moment-card:hover::before {
  transform: scaleX(1);
}

.moment-card:hover {
  transform: translateY(-10px);
  border-color: #01253f;
  box-shadow: 0 20px 40px rgba(1, 37, 63, 0.1);
}

.moment-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.moment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.moment-card:hover .moment-image img {
  transform: scale(1.05);
}

.moment-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(1, 37, 63, 0.8), rgba(2, 53, 90, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.moment-card:hover .moment-overlay {
  opacity: 1;
}

.moment-year {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.moment-card:hover .moment-year {
  transform: translateY(0);
}

.moment-content {
  padding: 2rem;
}

.moment-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.moment-card:hover .moment-content h3 {
  color: #01253f;
}

.moment-content p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: #f9fafb;
  border-color: #01253f;
  box-shadow: 0 15px 30px rgba(74, 222, 128, 0.1);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars i {
  color: #ffd500;
  font-size: 1rem;
}

.testimonial-content p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #01253f, #02355a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar i {
  color: #ffffff;
  font-size: 1.2rem;
}

.author-info h4 {
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
}

/* Contact Section */
.contact-section {
  background: #ffffff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: #ffffff;
  border-color: #01253f;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #01253f, #02355a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon i {
  color: #ffffff;
  font-size: 1.2rem;
}

.method-info h4 {
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.method-info p {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.method-info a {
  color: #01253f;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.method-info a:hover {
  color: #01253f;
}

.social-links h4 {
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #01253f;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-container {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #1a1a1a;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #01253f;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #01253f, #02355a);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid #e5e7eb;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 1rem;
}

.footer-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #01253f;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-column h4 {
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #01253f;
}

.footer-contact {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.contact-item i {
  color: #01253f;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b7280;
  font-size: 0.9rem;
}

/* Created by VisionX */
.created-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.visionx-logo {
  height: 20px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.visionx-logo:hover {
  filter: grayscale(0%);
}

/* Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .carousel-nav {
    padding: 0 1rem;
  }
  
  .hero-slide .hero-content {
    padding: 2.5rem;
    margin: 0 1rem;
  }
}

@media (max-width: 1024px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .cta-button {
    min-width: 200px;
    justify-content: center;
  }
  
  .hero-slide .hero-content {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .header-content {
    padding: 0.75rem 0;
  }
  
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }
  
  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.1rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .header-content {
    padding: 1rem 0;
  }
  
  .hero {
    min-height: 85vh;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .moments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-slide .hero-content {
    padding: 2rem 1.5rem;
    margin: 0 0.5rem;
  }
  
  .carousel-nav {
    display: none;
  }
  
  .carousel-indicators {
    bottom: 2rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .moment-card .moment-content {
    padding: 1.5rem;
  }
  
  .moment-image {
    height: 200px;
  }
  
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
  
  .values-grid {
    gap: 1.5rem;
  }
  
  .value-item {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0.75rem 0;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .service-card,
  .testimonial-card {
    padding: 1.5rem 1rem;
  }
  
  .moment-card .moment-content {
    padding: 1.25rem;
  }
  
  .moment-image {
    height: 180px;
  }
  
  .moment-year {
    font-size: 2.5rem;
  }
  
  .contact-form-container {
    padding: 1.5rem 1rem;
  }
  
  .hero-slide .hero-content {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .value-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  
  .value-icon {
    width: 50px;
    height: 50px;
  }
  
  .value-icon i {
    font-size: 1.2rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .contact-method {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .method-icon {
    width: 40px;
    height: 40px;
  }
  
  .method-icon i {
    font-size: 1rem;
  }
}

/* Melhorias adicionais para responsividade */
@media (max-width: 360px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-slide .hero-content {
    padding: 1.25rem 0.75rem;
    margin: 0 0.25rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* Ajustes para tablets em modo paisagem */
@media (max-width: 1024px) and (orientation: landscape) {
  .hero {
    min-height: 80vh;
  }
  
  .hero-slide .hero-content {
    padding: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

/* Ajustes para dispositivos muito pequenos */
@media (max-height: 600px) and (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .hero-slide .hero-content {
    padding: 1.5rem 1rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .universe-background {
    display: none;
  }
}

/* Focus styles for accessibility */
.nav-link:focus,
.cta-button:focus,
.service-cta:focus,
.submit-btn:focus,
.social-icons a:focus,
.footer-links a:focus {
  outline: 2px solid #01253f;
  outline-offset: 2px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 30px;
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #ffffff;
  color: #1a1a1a;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
  }
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float i {
    font-size: 26px;
  }

  .whatsapp-float .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float i {
    font-size: 24px;
  }
}

/* Print styles */
@media print {
  .header,
  .hero-background,
  .universe-background,
  .loading-screen,
  .whatsapp-float {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .section {
    page-break-inside: avoid;
  }
}