/* ============ CORREÇÕES DE FONT DISPLAY ============ */
@font-face {
  font-family: 'forced-swap';
  font-display: swap;
  src: local('Arial');
}

html {
  font-display: swap;
}

body {
  font-display: swap;
}

*,
*::before,
*::after {
  font-display: swap !important;
}

.fa,
.fas,
.far,
.fal,
.fad,
.fab,
.bi,
[class^="bi-"],
[class*=" bi-"],
[class^="fa-"],
[class*=" fa-"] {
  font-display: swap !important;
}

/* ============ LOADING ============ */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #bb8321;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============ CORREÇÕES DE CLS ============ */
body {
  font-display: swap;
  min-height: 100vh;
}

.bi, 
[class^="bi-"], 
[class*=" bi-"],
.fas, .far, .fab, .fa {
  font-display: swap !important;
  display: inline-block;
  width: 1em;
  height: 1em;
}

.work-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 200px;
  background-color: #e8dcc8;
}

.portfolio-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 220px;
  background: linear-gradient(135deg, #e8dcc8, #d4c8b4);
}

.work-card-image img,
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.navbar-custom {
  min-height: 70px;
}

#changing-text {
  display: inline-block;
  min-width: 200px;
  min-height: 40px;
}

/* ============ RESET & BASE ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'FontAwesome-Swap';
  font-display: swap;
}

body {
  cursor: none;
  font-family: 'Poppins', sans-serif;
  background: #f4f1ee;
  color: #222;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ============ CURSOR ============ */
.custom-cursor {
  width: 10px;
  height: 10px;
  background: #bb8321;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 35px;
  height: 35px;
  border: 1.5px solid rgba(189, 135, 42, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
}

.cursor-hover .cursor-follower {
  transform: translate(-50%, -50%) scale(1.8);
  border-color: rgba(189, 135, 42, 0.8);
}

/* ============ HERO SECTION ============ */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #f4f1ee;
  width: 100%;
}

.subtitle {
  font-size: 12px;
  letter-spacing: 4px;
  color: #555;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  line-height: 1.15;
  max-width: 700px;
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

.title span {
  color: #bb8321;
}

.highlight {
  color: #bb8321;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 40px;
}

.description {
  margin-top: 20px;
  padding-left: 16px;
  border-left: 3px solid #bb8321;
  max-width: 550px;
  position: relative;
  z-index: 2;
}

.description p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ============ HERO IMAGE ============ */
.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.02);
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(189, 135, 42, 0.1), rgba(189, 135, 42, 0.05));
  border-radius: 60px;
  z-index: -1;
  transition: all 0.4s ease;
}

/* ============ HERO BOTÕES ============ */
.hero-buttons {
  margin-top: 35px;
  display: flex;
  gap: 16px;
}

.btn-hero {
  padding: 8px 28px;
  border-radius: 50px;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.btn-primary-hero {
  background: #bb8321;
  color: #fff;
  border: none;
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(189, 135, 42, 0.35);
  background: #a06e1f;
}

.btn-outline-hero {
  border: 1.5px solid #bb8321;
  color: #bb8321;
  background: transparent;
}

.btn-outline-hero:hover {
  transform: translateY(-3px);
  background: #bb8321;
  color: #fff;
}

/* ============ MENU ============ */
.navbar-custom {
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  background: transparent;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  color: #bb8321;
  font-weight: 800;
}

.nav-link {
  color: #555;
  font-size: 14px;
  margin-left: 24px;
  position: relative;
  transition: 0.3s;
  font-weight: 500;
}

.nav-link:hover {
  color: #bb8321;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #bb8321;
  left: 0;
  bottom: -4px;
  transition: 0.3s ease;
}

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

.btn-cta {
  background: #bb8321;
  color: #fff;
  padding: 8px 22px;
  font-size: 13px;
  border-radius: 40px;
  transition: all 0.3s;
  font-weight: 500;
  border: none;
}

.btn-cta:hover {
  background: #a06e1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(189, 135, 42, 0.3);
}

/* ============ SEÇÕES ============ */
.section-padding {
  padding: 40px 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #bb8321;
  transition: width 0.4s ease;
}

/* ============ WORK CARDS ============ */
.work-card-dynamic {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative;
}

.work-card-dynamic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #bb8321, #f4c06e, #bb8321);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.work-card-dynamic:hover::after {
  transform: translateX(0);
}

.work-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.work-card-content {
  padding: 1.8rem;
  background: #fff;
}

.work-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.work-card-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.work-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.work-card-tags span {
  background: #bb8321;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  color: #fff;
  font-weight: 500;
}

.work-card-dynamic:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.12);
}

/* ============ PORTFÓLIO ============ */
.portfolio-section {
  overflow-x: clip;
  position: relative;
  background-color: #f4f1ee;
  width: 100%;
}

.portfolio-block {
  margin-bottom: 40px;
  position: relative;
  width: 100%;
}

.portfolio-block-header {
  max-width: 1140px;
  margin: 0 auto 30px auto;
  padding: 0 15px;
}

.portfolio-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 12px;
}

.portfolio-block-title i {
  color: #bb8321;
  font-size: 2rem;
}

.portfolio-block-desc {
  color: #666;
  font-size: 0.9rem;
  margin-top: 8px;
}

.portfolio-swiper-edge {
  width: 100%;
  overflow: visible;
  padding: 0 0 50px 80px;
  margin: 0;
}

.portfolio-swiper-edge .swiper-wrapper {
  transition-timing-function: linear;
}

.portfolio-swiper-edge .swiper-slide {
  width: 320px;
  height: auto;
  transition: all 0.4s ease;
  cursor: pointer;
}

.portfolio-swiper-edge .swiper-scrollbar {
  background: rgba(0, 0, 0, 0.08);
  height: 8px;
  border-radius: 10px;
  bottom: -10px;
  left: 80px;
  right: 20px;
  width: auto;
  position: relative;
  cursor: pointer;
}

.portfolio-swiper-edge .swiper-scrollbar-drag {
  background: #bb8321;
  border-radius: 10px;
  height: 100%;
  cursor: grab;
}

.portfolio-card-premium {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.12);
  border-color: #bb8321;
}

.portfolio-card-premium .portfolio-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  background: linear-gradient(135deg, #e8dcc8, #d4c8b4);
}

.portfolio-card-premium .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.portfolio-card-premium .portfolio-content {
  padding: 1.5rem;
  flex: 1;
}

.portfolio-card-premium .portfolio-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #bb8321;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.portfolio-card-premium h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.portfolio-card-premium p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
}

.portfolio-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.portfolio-tech-tags span {
  background: #bb8321;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  color: #fff;
  font-weight: 500;
}




/* ============ BOTAO VER MAIS PORTFOLIO ============ */

.btn-ver-site{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:20px;
    padding:10px 18px;
    border:1px solid rgba(255,255,255,0.25);
    border-radius:50px;
    background:transparent;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:all .3s ease;
    backdrop-filter: blur(10px);
}

.btn-ver-site:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,0.08);
    border-color:#bd872a;
    color:#bd872a;
}

.btn-ver-site i{
    font-size:15px;
}

/* ============ MODAL GALERIA ============ */
.modal-gallery {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.modal-gallery.active {
  display: flex;
}

.modal-content-gallery {
  position: relative;
  max-width: 1000px;
  width: 90%;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
}

.modal-slide {
  display: none;
  width: 100%;
}

.modal-slide.active-slide {
  display: block;
}

.modal-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1000/750;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: #bb8321;
  transform: scale(1.1);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.modal-nav button {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  pointer-events: auto;
  font-size: 24px;
}

.modal-nav button:hover {
  background: #bb8321;
  transform: scale(1.1);
}

.modal-indicators {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.modal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.modal-dot.active {
  background: #bb8321;
  width: 25px;
  border-radius: 10px;
}

/* ============ SOBRE ============ */
.about-ux {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background-color: #333;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.02) 2px,
    transparent 2px,
    transparent 8px
  );
  width: 100%;
}

.about-ux-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-ux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-ux-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #fff;
}

.about-ux-title span {
  color: #bb8321;
}

.about-ux-description {
  font-size: 15px;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 30px;
}

/* ============ CODE SCREEN ============ */
.code-screen {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 22px;
  color: #eaeaea;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
  font-size: 13.5px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: 0.4s;
  position: relative;
  z-index: 2;
  animation: floatCode 6s ease-in-out infinite;
  border: 1px solid rgba(189, 135, 42, 0.2);
}

.code-screen:hover {
  animation: none;
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  border-color: #bb8321;
}

.code-header {
  margin-bottom: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.code-content {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  white-space: pre-wrap;
  line-height: 1.7;
  color: #e0e0e0;
}

.cursor {
  display: inline-block;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes floatCode {
  0% { transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) translateY(0px); }
  50% { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(-20px); }
  100% { transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) translateY(0px); }
}

/* ============ STACKS ============ */
#stacks {
  background-color: #f4f1ee;
  border-top: 1px solid rgba(189,135,42,0.08);
  border-bottom: 1px solid rgba(189,135,42,0.08);
  width: 100%;
}

.swiper-stacks {
  width: 100%;
  padding: 30px 0 50px;
}

.stack-slide {
  text-align: center;
}

.stack-slide img {
  width: 150px;
  height: auto;
}

/* ============ SERVICES CTA ============ */
.services-cta {
  text-align: center;
  margin-top: 30px;
  padding: 40px;
}

.services-cta .btn-cta-services {
  background: #bb8321;
  color: #fff;
  padding: 8px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 14px;
}

.services-cta .btn-outline-cta {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* ============ CTA PREMIUM ============ */
.cta-premium {
  padding: 80px 0;
  text-align: center;
  background-color: #333;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 6px
  );
  width: 100%;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.cta-text {
  color: #ddd;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.7;
}

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

.btn-large {
  background: #bb8321;
  color: #fff;
  padding: 8px 42px;
  font-size: 14px;
  border-radius: 50px;
  transition: all 0.3s;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.btn-outline-large {
  background: transparent;
  color: #bb8321;
  padding: 8px 42px;
  font-size: 15px;
  border-radius: 50px;
  transition: all 0.3s;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #bb8321;
}

/* ============ FOOTER ============ */
.premium-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
  color: #e0e0e0;
  width: 100%;
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-logo span {
  color: #bb8321;
}

.footer-tagline {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 2px;
  background: #bb8321;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.9;
  transition: all 0.3s ease;
}

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

.footer-contact-info {
  list-style: none;
  padding: 0;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #aaa;
}

.footer-contact-info li i {
  width: 30px;
  height: 30px;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}

.platform-icons {
  display: flex;
  gap: 15px;
}

.platform-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e0e0;
  font-size: 22px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.platform-icon:hover {
  background: #bb8321;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* ============ BACK TO TOP & WHATSAPP ============ */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 100px;
  width: 45px;
  height: 45px;
  background: #bb8321;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  z-index: 998;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: all 0.3s;
  z-index: 999;
  text-decoration: none;
}

/* ============ MODELOS DE ATUAÇÃO ============ */
.modelos-section {
  padding: 90px 0;
  background-color: #f4f1ee;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.modelos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(189,135,42,0.04) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(189,135,42,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.section-subtitle {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.modelos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.modelo-card {
  background: linear-gradient(145deg, #2a2a2a 0%, #222 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  transition: all 0.45s cubic-bezier(0.2,0.9,0.4,1.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.015) 0px,
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 4px
  );
  background-color: #222;
}

.modelo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #bb8321, #e0b04a);
  transition: all 0.5s ease;
}

.modelo-card:hover {
  transform: translateY(-10px);
  border-color: rgba(189,135,42,0.25);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.modelo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.modelo-desc {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.modelo-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.8rem;
}

.modelo-highlights span {
  color: #ddd;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modelo-highlights span i {
  color: #bb8321;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.modelo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  background: #bb8321;
  color: #fff;
}

.modelo-btn:hover {
  background: #a06e1f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(189,135,42,0.3);
  color: #fff;
}

/* ============ PADDINGS DESKTOP ============ */
@media (min-width: 769px) {
  .navbar-custom {
    padding-left: 60px;
    padding-right: 60px;
  }
  
  .hero-desktop-padding {
    padding-left: 80px;
    padding-right: 50px;
  }
  
  .premium-footer {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* ============ RESPONSIVO GERAL ============ */
@media (max-width: 992px) {
  .title { font-size: 38px; }
  .highlight { font-size: 32px; }
  .about-ux-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-ux-title { font-size: 36px; }
  .portfolio-swiper-edge { padding: 0 0 40px 40px; }
  .section-title { font-size: 2.8rem; }
  .portfolio-block-title { font-size: 1.5rem; }
  .modelo-title { font-size: 1.6rem; }
  .about-ux-title { font-size: 2.5rem; }
  .cta-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .custom-cursor, .cursor-follower { display: none; }
  body { cursor: default; overflow-x: hidden; width: 100%; max-width: 100vw; }
  .navbar-custom { padding-left: 0; padding-right: 0; }
  .hero-desktop-padding { padding-left: 0; padding-right: 0; }
  .premium-footer { padding-left: 0; padding-right: 0; }

  .title { font-size: 32px; text-align: center; max-width: 100%; }
  .highlight { font-size: 28px; }
  .subtitle { font-size: 11px; letter-spacing: 3px; text-align: center !important; }
  .description { border-left: none; padding-left: 0; text-align: center; max-width: 100%; }
  .description p { font-size: 14px; }
  .hero-image-container { max-width: 260px; margin: 0 auto 20px auto; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  .hero-section { min-height: auto; padding: 40px 0; }

  .navbar-collapse {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(20, 20, 20, 0.98); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    text-align: center; z-index: 1050; transition: all 0.3s ease; padding: 0;
  }
  .navbar-collapse:not(.show) { display: none; }
  .navbar-collapse.show { display: flex; }
.navbar-collapse .navbar-nav { flex-direction: column; gap: 1.2rem; align-items: center; justify-content: center; width: 100%; }
.navbar-collapse .nav-link { font-size: 1.2rem !important; color: #fff !important; margin: 0; }
.navbar-collapse .btn-cta { font-size: 1rem !important; padding: 10px 28px; margin-top: 1.5rem; }
  .navbar-toggler { border: none; position: relative; z-index: 1060; }
  .navbar-toggler span { display: block; width: 25px; height: 2px; background: #bb8321; margin: 6px 0; transition: 0.3s; }

  .logo { font-size: 24px; }
  .work-card-content h3 { font-size: 1.5rem; }
  .work-card-content p { font-size: 0.9rem; }
  .services-cta { padding: 25px 15px; }
  .services-cta p { font-size: 15px !important; }
  .btn-cta-services { padding: 10px 28px; font-size: 14px; margin: 5px; }

  .portfolio-block-title { font-size: 1.6rem; gap: 8px; }
  .portfolio-block-title i { font-size: 1.8rem; }
  .portfolio-block-desc { font-size: 0.9rem; }
  .portfolio-card-premium h4 { font-size: 1.3rem; }
  .portfolio-card-premium p { font-size: 0.85rem; }
  .portfolio-swiper-edge { padding: 0 0 30px 20px; }
  .portfolio-swiper-edge .swiper-slide { width: 280px; }

  .about-ux { padding: 60px 0; }
  .about-ux-title { font-size: 2.2rem; }
  .about-ux-description { font-size: 14px; line-height: 1.7; }
  .code-screen { padding: 15px; font-size: 12px; }
  .code-content { font-size: 11px; }

  .swiper-stacks { padding: 20px 0 40px; }
  .stack-slide img { width: 110px; }

  .modelos-section { padding: 60px 0; }
  .modelos-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 15px; }
  .modelo-card { padding: 2rem 1.5rem 1.5rem; }
  .modelo-title { font-size: 1.8rem; }
  .modelo-desc { font-size: 0.9rem; }
  .modelo-highlights span { font-size: 0.85rem; }
  .modelo-btn { padding: 12px 24px; font-size: 0.9rem; }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 2rem; }

  .cta-premium { padding: 50px 15px; }
  .cta-title { font-size: 2rem; }
  .cta-text { font-size: 1rem; }
  .btn-large, .btn-outline-large { padding: 10px 30px; font-size: 14px; }

  .footer-main { padding: 50px 0 30px; }
  .footer-logo { font-size: 32px; }
  .footer-title { font-size: 20px; }
  .footer-links a { font-size: 14px; }
  .footer-contact-info li { font-size: 14px; }
  .section-title { font-size: 2.3rem; margin-bottom: 2rem; }
  .about-ux-title { font-size: 2rem; }
  .cta-title { font-size: 1.9rem; }
  .portfolio-block-title { font-size: 1.4rem; }
}

@media (max-width: 576px) {
  .title { font-size: 26px; }
  .highlight { font-size: 24px; }
  .hero-image-container { max-width: 220px; }
  .btn-hero { padding: 8px 22px; font-size: 13px; }
  .portfolio-block-title { font-size: 1.3rem; }
  .about-ux-title { font-size: 1.8rem; }
  .modelo-title { font-size: 1.5rem; }
  .cta-title { font-size: 1.6rem; }
  .section-title { font-size: 2rem; }
}

.container, .row, .col, section, .swiper, .swiper-wrapper { max-width: 100%; }
img { max-width: 100%; height: auto; }



/* ============ AJUSTE PARA TELAS GRANDES (WIDESCREEN) ============ */
@media (min-width: 1400px) {
  /* Container centralizado com largura máxima */
  .container {
    max-width: 1320px;
  }
  
  /* Hero desktop - centraliza conteúdo com padding lateral */
  .hero-desktop-padding {
    padding-left: 80px;
    padding-right: 80px;
  }
  
  /* Ajusta o título para não ficar muito grande */
  .title {
    font-size: 56px;
    max-width: 750px;
  }
  
  .highlight {
    font-size: 44px;
  }
  
  /* Aumenta ligeiramente a descrição */
  .description p {
    font-size: 16px;
  }
  
  /* Menu mais espaçado */
  .navbar-custom {
    padding-left: 80px;
    padding-right: 80px;
  }
  
  /* Portfolio - slides maiores em telas grandes */
  .portfolio-swiper-edge .swiper-slide {
    width: 360px;
  }
  
  /* Seção Sobre - grid mais espaçado */
  .about-ux-grid {
    gap: 80px;
  }
  
  /* Footer mais espaçado */
  .premium-footer {
    padding-left: 80px;
    padding-right: 80px;
  }
  
  /* Cards de serviço com altura mínima maior */
  .work-card-image {
    height: 220px;
    min-height: 220px;
  }
  
  .portfolio-image {
    height: 240px;
    min-height: 240px;
  }
  
  /* Modelos de atuação - grid mais largo */
  .modelos-grid {
    max-width: 1000px;
    gap: 40px;
  }
  
  /* Stacks - ícones maiores */
  .stack-slide img {
    width: 170px;
  }
}

/* ============ AJUSTE PARA TELAS GRANDES (WIDESCREEN) ============ */
@media (min-width: 1400px) {
  /* Container centralizado com largura máxima */
  .container {
    max-width: 1320px;
    padding-left: 40px;
    padding-right: 40px;
  }
  
  /* ========== HERO DESKTOP - MAIS ALTO E PROPORCIONAL ========== */
  .hero-section {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 80px;
    align-items: center;
  }
  
  .hero-desktop-padding {
    padding-left: 100px;
    padding-right: 100px;
  }
  
  /* Título maior e mais impactante */
  .title {
    font-size: 60px;
    max-width: 800px;
    line-height: 1.1;
  }
  
  .highlight {
    font-size: 48px;
  }
  
  /* Descrição com mais respiro */
  .description {
    margin-top: 30px;
    max-width: 600px;
  }
  
  .description p {
    font-size: 17px;
    line-height: 1.7;
  }
  
  /* Botões do hero */
  .hero-buttons {
    margin-top: 45px;
    gap: 20px;
  }
  
  .btn-hero {
    padding: 12px 36px;
    font-size: 15px;
  }
  
  /* Imagem do hero maior */
  .hero-image-container {
    max-width: 500px;
  }
  
  /* ========== MENU MAIS ESPAÇADO ========== */
  .navbar-custom {
    padding: 20px 0;
  }
  
  .logo {
    font-size: 34px;
  }
  
  .nav-link {
    font-size: 15px;
    margin-left: 30px;
  }
  
  .btn-cta {
    padding: 10px 26px;
    font-size: 14px;
  }
  
  /* ========== CARDS DE SERVIÇO - ALTURA PROPORCIONAL ========== */
  .work-card-image {
    height: 240px;
    min-height: 240px;
  }
  
  .work-card-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .work-card-content {
    padding: 2rem;
  }
  
  .work-card-content h3 {
    font-size: 1.7rem;
  }
  
  .work-card-content p {
    font-size: 0.95rem;
  }
  
  /* ========== PORTFOLIO - CARDS MAIORES E BEM PROPORCIONAIS ========== */
  .portfolio-image {
    height: 260px;
    min-height: 260px;
  }
  
  .portfolio-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .portfolio-swiper-edge .swiper-slide {
    width: 380px;
  }
  
  .portfolio-card-premium h4 {
    font-size: 1.4rem;
  }
  
  .portfolio-card-premium p {
    font-size: 0.9rem;
  }
  
  /* ========== SEÇÕES COM MAIS ESPAÇAMENTO ========== */
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 3.2rem;
    margin-bottom: 3.5rem;
  }
  
  .portfolio-section {
    margin-top: 60px;
  }
  
  .portfolio-block {
    margin-bottom: 50px;
  }
  
  /* ========== SOBRE ========== */
  .about-ux {
    padding: 100px 0;
  }
  
  .about-ux-grid {
    gap: 80px;
  }
  
  .about-ux-title {
    font-size: 50px;
  }
  
  .about-ux-description {
    font-size: 16px;
    line-height: 2;
  }
  
  /* ========== STACKS ========== */
  .stack-slide img {
    width: 160px;
  }
  
  /* ========== MODELOS DE ATUAÇÃO ========== */
  .modelos-section {
    padding: 100px 0;
  }
  
  .modelos-grid {
    max-width: 1000px;
    gap: 40px;
  }
  
  .modelo-card {
    padding: 3rem 2.5rem 2.5rem;
  }
  
  .modelo-title {
    font-size: 2rem;
  }
  
  .modelo-desc {
    font-size: 0.95rem;
  }
  
  /* ========== CTA PREMIUM ========== */
  .cta-premium {
    padding: 100px 0;
  }
  
  .cta-title {
    font-size: 2.8rem;
  }
  
  /* ========== FOOTER ========== */
  .premium-footer {
    padding-left: 80px;
    padding-right: 80px;
  }
  
  .footer-main {
    padding: 100px 0 80px;
  }
  
  .footer-logo {
    font-size: 46px;
  }
}

/* ============ TELAS MUITO GRANDES (ULTRAWIDE) ============ */
@media (min-width: 1800px) {
  .container {
    max-width: 1500px;
    padding-left: 60px;
    padding-right: 60px;
  }
  
  /* Hero ainda maior */
  .hero-section {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 100px;
  }
  
  .hero-desktop-padding {
    padding-left: 140px;
    padding-right: 140px;
  }
  
  .title {
    font-size: 70px;
    max-width: 900px;
  }
  
  .highlight {
    font-size: 55px;
  }
  
  .description p {
    font-size: 18px;
  }
  
  .hero-image-container {
    max-width: 550px;
  }
  
  /* Cards de serviço */
  .work-card-image {
    height: 270px;
    min-height: 270px;
  }
  
  .work-card-content {
    padding: 2.5rem;
  }
  
  .work-card-content h3 {
    font-size: 1.9rem;
  }
  
  /* Portfolio */
  .portfolio-image {
    height: 290px;
    min-height: 290px;
  }
  
  .portfolio-swiper-edge .swiper-slide {
    width: 420px;
  }
  
  .portfolio-card-premium h4 {
    font-size: 1.5rem;
  }
  
  /* Sobre */
  .about-ux-grid {
    gap: 100px;
  }
  
  .about-ux-title {
    font-size: 55px;
  }
  
  .about-ux-description {
    font-size: 17px;
  }
  
  /* Modelos */
  .modelos-grid {
    max-width: 1100px;
    gap: 50px;
  }
}