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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  overflow-x: hidden;
}

/* ========================================
   HEADER
======================================== */
.header-abp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 31, 31, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.header-abp.scrolled {
  padding: 12px 0;
  background: rgba(10, 31, 31, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-abp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  mix-blend-mode: screen;
  transition: height 0.3s ease;
}

.header-abp.scrolled .nav-logo-img {
  height: 28px;
}

.nav-brand {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #D4A574;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  cursor: pointer;
}

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

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

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

.nav-link-cta {
  color: #D4A574;
  border: 1px solid rgba(212, 165, 116, 0.3);
  padding: 8px 20px;
  border-radius: 2px;
}

.nav-link-cta::after {
  display: none;
}

.nav-link-cta:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: #D4A574;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-line {
  width: 24px;
  height: 2px;
  background: #D4A574;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 31, 31, 0.98);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 40px;
  position: relative;
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  font-size: 40px;
  color: #D4A574;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
}

.mobile-nav-links {
  list-style: none;
  padding: 80px 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav-link {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
  cursor: pointer;
}

.mobile-nav-link:hover {
  color: #D4A574;
}

/* ========================================
   HERO
======================================== */
.hero-abp {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 31, 31, 0.75);
  z-index: 2;
}

.container-abp {
  max-width: 100%;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 3;
  padding: 0 40px;
}

.hero-badge {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #D4A574;
  margin-bottom: 60px;
  opacity: 0.9;
}

.hero-title {
  font-size: 58px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 5px;
  margin-bottom: 36px;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid #D4A574;
  color: #D4A574;
  padding: 18px 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #D4A574;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.hero-btn:hover::before {
  left: 0;
}

.hero-btn:hover {
  color: #0f2c2c;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.hero-btn svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

.scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.scroll-indicator span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(212, 165, 116, 0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ========================================
   MANIFESTO
======================================== */
.manifesto-abp {
  background: #fff;
  width: 100%;
  padding: 180px 0;
}

.manifesto-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.manifesto-number {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 4px;
  color: #D4A574;
  margin-bottom: 24px;
}

.manifesto-title {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 6px;
  color: #0f2c2c;
  margin-bottom: 40px;
}

.manifesto-divider {
  width: 60px;
  height: 1px;
  background: #D4A574;
  margin-bottom: 48px;
}

.manifesto-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  color: #4a4a4a;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.manifesto-text:last-child {
  margin-bottom: 0;
}

/* ========================================
   PORTFOLIO
======================================== */
.portfolio-abp {
  background: #fff;
  width: 100%;
  padding: 140px 0;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 100px;
  padding: 0 40px;
}

.portfolio-number {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 4px;
  color: #D4A574;
  margin-bottom: 24px;
}

.portfolio-title {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 6px;
  color: #0f2c2c;
  margin-bottom: 24px;
}

.portfolio-title-divider {
  width: 60px;
  height: 1px;
  background: #D4A574;
  margin: 0 auto 32px;
}

.portfolio-subtitle {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #6B7280;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding: 0 40px;
}

.portfolio-card {
  cursor: pointer;
}

.portfolio-card-inner {
  background: #fff;
  border: 1px solid #E5E7EB;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.portfolio-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #D4A574;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}

.portfolio-card:hover .portfolio-card-inner {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(15, 44, 44, 0.12);
  border-color: #D4A574;
}

.portfolio-card:hover .portfolio-card-inner::before {
  opacity: 1;
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 31, 31, 0.85) 0%, rgba(10, 31, 31, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

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

.portfolio-view {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: #D4A574;
  border: 1px solid #D4A574;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  background: transparent;
}

.portfolio-view svg {
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-view {
  background: #D4A574;
  color: #0f2c2c;
}

.portfolio-card:hover .portfolio-view svg {
  transform: translateX(4px);
}

.portfolio-card-content {
  padding: 24px 20px;
  text-align: center;
  background: #fff;
}

.portfolio-card-title {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #0f2c2c;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-card-title {
  color: #D4A574;
}

.portfolio-card-line {
  width: 30px;
  height: 1px;
  background: #E5E7EB;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-card-line {
  width: 50px;
  background: #D4A574;
}

/* MODAL LIGHTBOX */
.portfolio-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-modal.active {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 31, 31, 0.97);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  max-width: 1400px;
  width: 95%;
  max-height: 90vh;
  background: #fff;
  padding: 80px 60px 60px;
  overflow-y: auto;
  z-index: 2;
  border-radius: 4px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  font-size: 50px;
  color: #D4A574;
  cursor: pointer;
  line-height: 1;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
  font-weight: 200;
  z-index: 3;
}

.modal-close:hover {
  transform: rotate(90deg);
  color: #c49563;
}

.modal-header {
  text-align: center;
  margin-bottom: 60px;
}

.modal-title {
  font-size: 42px;
  font-weight: 200;
  letter-spacing: 6px;
  color: #0f2c2c;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 24px;
}

.modal-divider {
  width: 80px;
  height: 1px;
  background: #D4A574;
  margin: 0 auto;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.modal-gallery img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  background: #0a1f1f;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: 4px;
}

.modal-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  border-color: #D4A574;
}

/* ========================================
   CTA / CONTATO
======================================== */
.cta-abp {
  background: #0f2c2c;
  width: 100%;
  padding: 140px 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.cta-header {
  margin-bottom: 60px;
}

.cta-number {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 4px;
  color: #D4A574;
  margin-bottom: 32px;
  font-family: 'Montserrat', sans-serif;
}

.cta-title {
  font-size: 56px;
  font-weight: 200;
  letter-spacing: 6px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 40px;
  font-family: 'Montserrat', sans-serif;
}

.cta-divider {
  width: 60px;
  height: 1px;
  background: #D4A574;
  margin: 0 auto 40px;
}

.cta-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

.desktop-only {
  display: inline;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

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

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 165, 116, 0.2);
  color: #fff;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #D4A574;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D4A574' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  cursor: pointer;
}

select.form-input option {
  background: #0f2c2c;
  color: #fff;
  padding: 12px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #D4A574;
  border: 1px solid #D4A574;
  color: #0f2c2c;
  padding: 20px 48px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  margin-top: 16px;
  width: 100%;
}

.cta-button:hover {
  background: #c49563;
  border-color: #c49563;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.3);
}

.cta-button svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover svg {
  transform: translateX(6px);
}

/* ========================================
   FOOTER
======================================== */
.footer-minimal {
  background: #0a1f1f;
  width: 100%;
  padding: 120px 0 60px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.footer-logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin-bottom: 80px;
  padding: 0 40px;
}

.logo-center {
  width: 120px;
  height: auto;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.footer-wordmark {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 8px;
  color: #D4A574;
}

.footer-line {
  width: calc(100% - 80px);
  height: 1px;
  background: rgba(212, 165, 116, 0.2);
  margin: 0 auto 60px;
}

.footer-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.footer-info-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.info-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(212, 165, 116, 0.6);
}

.info-value {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: inline-block;
}

.info-link {
  transition: color 0.3s ease;
}

.info-link:hover {
  color: #D4A574;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 60px;
  padding: 0 40px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 12px 24px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 50px;
}

.social-link:hover {
  color: #D4A574;
  border-color: #D4A574;
  transform: translateY(-2px);
}

.social-link svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.1);
}

.footer-copyright-minimal {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 40px;
}

/* ========================================
   WHATSAPP FLUTUANTE
======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #D4A574;
  color: #0f2c2c;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #c49563;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.5);
  animation: none;
}

.whatsapp-float svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.4s ease;
}

.whatsapp-float:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.whatsapp-text {
  white-space: nowrap;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4); }
  50% { box-shadow: 0 8px 30px rgba(212, 165, 116, 0.6), 0 0 0 10px rgba(212, 165, 116, 0.1); }
}

/* ========================================
   RESPONSIVO
======================================== */
@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .modal-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .navbar-abp { padding: 0 30px; }
  .nav-menu { gap: 32px; }
  .hero-title { font-size: 48px; letter-spacing: 4px; }
  .hero-subtitle { font-size: 16px; }
  .footer-info-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .portfolio-image { height: 240px; }
}

@media (max-width: 768px) {
  .navbar-abp { padding: 0 24px; }
  .nav-logo-img { height: 28px; }
  .nav-brand { font-size: 13px; letter-spacing: 2px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }

  .container-abp { padding: 0 24px; }
  .hero-badge { margin-bottom: 40px; font-size: 10px; }
  .hero-title { font-size: 32px; letter-spacing: 2px; line-height: 1.3; }
  .hero-subtitle { font-size: 14px; letter-spacing: 0.5px; margin-bottom: 40px; }
  .hero-btn { padding: 16px 32px; font-size: 10px; width: 100%; justify-content: center; }
  .scroll-indicator { display: none; }

  .manifesto-abp { padding: 100px 0; }
  .manifesto-content { padding: 0 24px; }
  .manifesto-title { font-size: 32px; letter-spacing: 4px; }
  .manifesto-text { font-size: 16px; line-height: 1.9; }

  .portfolio-abp { padding: 100px 0; }
  .portfolio-header { margin-bottom: 70px; padding: 0 24px; }
  .portfolio-grid { padding: 0 24px; grid-template-columns: 1fr; gap: 32px; }
  .portfolio-title { font-size: 32px; letter-spacing: 4px; }
  .portfolio-subtitle { font-size: 14px; }
  .portfolio-image { height: 260px; }

  .modal-content { width: 100%; max-height: 100vh; padding: 60px 24px 40px; border-radius: 0; }
  .modal-close { top: 20px; right: 20px; font-size: 40px; }
  .modal-title { font-size: 28px; letter-spacing: 4px; }
  .modal-gallery { grid-template-columns: 1fr; gap: 24px; }
  .modal-gallery img { height: 280px; }

  .cta-abp { padding: 100px 0; }
  .cta-content { padding: 0 24px; }
  .cta-header { margin-bottom: 50px; }
  .cta-title { font-size: 40px; letter-spacing: 4px; }
  .cta-text { font-size: 15px; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }
  .form-input { padding: 16px 20px; font-size: 13px; }
  .form-textarea { min-height: 120px; }
  .cta-button { padding: 18px 32px; }
  .desktop-only { display: none; }

  .footer-minimal { padding: 80px 0 40px; }
  .footer-logo-center, .footer-social, .footer-copyright-minimal { padding: 0 24px; }
  .footer-info-row { padding: 0 24px; grid-template-columns: 1fr; gap: 32px; margin-bottom: 50px; }
  .footer-line { width: calc(100% - 48px); }
  .logo-center { width: 90px; }
  .footer-wordmark { font-size: 17px; letter-spacing: 5px; }
  .footer-info-item { text-align: center; }
  .footer-social { flex-direction: column; gap: 20px; margin-bottom: 50px; }
  .social-link { width: 100%; justify-content: center; }

  .whatsapp-float { bottom: 20px; right: 20px; padding: 14px 20px; gap: 10px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
  .whatsapp-text { font-size: 10px; letter-spacing: 1px; }
}

@media (max-width: 480px) {
  .whatsapp-float { padding: 16px; border-radius: 50%; width: 60px; height: 60px; justify-content: center; }
  .whatsapp-text { display: none; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}
