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

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(9, 44, 74, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(236, 186, 97, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  position: relative;
}

.nav__logo-img {
  height: 65px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(236, 186, 97, 0.3));
  animation: logoAppear 1.2s ease-out, logoBreathe 4s ease-in-out infinite 3s;
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 15px rgba(236, 186, 97, 0.5));
  animation-play-state: paused;
}

.nav__logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dourado), #d4a853);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav__logo:hover::after {
  width: 80%;
}

.nav__logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.6s ease;
  pointer-events: none;
  border-radius: 8px;
}

.nav__logo-img:hover + .nav__logo::before,
.nav__logo:hover::before {
  opacity: 1;
  transform: translateX(100%);
  animation: logoShine 2s ease-in-out infinite;
}

@keyframes logoShine {
  0%, 100% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 0.8;
    transform: translateX(100%);
  }
}

@keyframes logoBreathe {
  0%, 100% {
    filter: drop-shadow(0 2px 8px rgba(236, 186, 97, 0.3));
  }
  50% {
    filter: drop-shadow(0 4px 12px rgba(236, 186, 97, 0.5));
  }
}

@keyframes footerShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes footerGlow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(236, 186, 97, 0.3);
  }
}

.nav__menu {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: all 0.3s ease;
}

.nav__link:hover {
  color: var(--dourado);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dourado);
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-claro) 100%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  opacity: 0.8;
  z-index: 1;
  transition: transform 0.5s ease-out;
}

.hero:hover::before {
  transform: scale(1.05);
}

.hero--small {
  height: 60vh;
  min-height: 400px;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero__title-accent {
  color: var(--dourado);
  display: block;
}

.hero__description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.hero__scroll-link {
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 2s infinite;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--dourado);
  color: var(--azul-escuro);
}

.btn--primary:hover {
  background: #d4a853;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236, 186, 97, 0.3);
}

.btn--outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: white;
  color: var(--azul-escuro);
  border-color: white;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
}

.section--dark {
  background: var(--azul-escuro);
  color: white;
}

.section__header {
  margin-bottom: 3rem;
}

.section__header--center {
  text-align: center;
}

.section__subtitle {
  display: inline-block;
  color: var(--dourado);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--azul-escuro);
}

.section--dark .section__title {
  color: white;
}

.section__title-accent {
  color: var(--dourado);
}

.section__description {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 600px;
}

.section__header--center .section__description {
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(9, 44, 74, 0.9));
  padding: 2rem;
  color: white;
}

.about__stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dourado);
}

.stat__label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about__text {
  margin-bottom: 1.5rem;
  color: #4a4a4a;
  font-size: 1.1rem;
}

.about__text--bio {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--azul-escuro);
  border-left: 3px solid var(--dourado);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  background: linear-gradient(to right, rgba(236, 186, 97, 0.1), transparent);
  padding: 1.5rem;
  border-radius: 0 10px 10px 0;
}

.about__text--bio::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  left: 0.5rem;
  color: var(--dourado);
  opacity: 0.3;
}

.about__features {
  margin: 2rem 0;
}

.feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature__icon {
  width: 50px;
  height: 50px;
  background: var(--dourado);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-escuro);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--azul-escuro);
}

.feature__description {
  opacity: 0.8;
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(9, 44, 74, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(236, 186, 97, 0.1);
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(9, 44, 74, 0.15);
}

.service__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--dourado), #d4a853);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--azul-escuro);
}

.service__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--azul-escuro);
}

.service__description {
  line-height: 1.6;
  opacity: 0.8;
}



/* ===== PORTFOLIO SECTION ===== */
.portfolio-swiper {
  width: 100%;
  height: auto;
  padding: 2rem 0;
}

.portfolio-swiper .swiper-slide {
  height: auto;
  min-height: 600px; /* Altura mínima para destacar as imagens */
}

.portfolio__item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(9, 44, 74, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(9, 44, 74, 0.15);
}

.portfolio__image {
  position: relative;
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 85% !important; /* Proporção mais alta - imagens bem maiores */
  overflow: hidden;
}

.portfolio__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: transform 0.3s ease;
}

.portfolio__item:hover .portfolio__img {
  transform: scale(1.05);
}

/* Remover overlay do portfólio */
.portfolio__overlay {
  display: none !important;
}

.portfolio__content {
  background: #fff;
  color: #092C4A;
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.portfolio__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ECBA61;
  background: rgba(236, 186, 97, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: 600;
  width: fit-content;
}

.portfolio__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #092C4A;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.portfolio__description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.portfolio__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(9, 44, 74, 0.1);
}

.portfolio__value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ECBA61;
  font-family: 'Playfair Display', serif;
}

.portfolio__status {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Cores específicas para status */
.portfolio__status:contains("À Venda") {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.portfolio__status:contains("Vendido") {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.portfolio__status:contains("Reservado") {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* Swiper Navigation Buttons */
.portfolio-swiper .swiper-button-next,
.portfolio-swiper .swiper-button-prev {
  color: var(--dourado);
  background: rgba(9, 44, 74, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-swiper .swiper-button-next:after,
.portfolio-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
}

.portfolio-swiper .swiper-button-next:hover,
.portfolio-swiper .swiper-button-prev:hover {
  background: var(--azul-escuro);
  transform: scale(1.1);
}

/* Swiper Pagination */
.portfolio-swiper .swiper-pagination-bullet {
  background: var(--dourado);
  opacity: 0.5;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}

.portfolio-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 16px;
  border-radius: 4px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(9, 44, 74, 0.08);
  border: 1px solid rgba(236, 186, 97, 0.1);
}

.testimonial__stars {
  color: var(--dourado);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.testimonial__text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--azul-escuro);
}

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

.testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial__avatar img,
.testimonial__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial__name {
  font-weight: 600;
  color: var(--azul-escuro);
  margin-bottom: 0.25rem;
}

.testimonial__role {
  color: var(--dourado);
  font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
  position: relative;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/contato-bg.png') center/cover no-repeat;
  opacity: 0.05;
}

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

.contact__details {
  margin-top: 2rem;
}

.contact__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__icon {
  width: 50px;
  height: 50px;
  background: var(--dourado);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-escuro);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.contact__text {
  opacity: 0.9;
}

.contact__form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form__input:focus {
  outline: none;
  border-color: var(--dourado);
  background: rgba(255, 255, 255, 0.15);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--azul-escuro);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  position: relative;
}

.footer__logo-img {
  height: 70px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 10px rgba(236, 186, 97, 0.4));
}

.footer__logo:hover .footer__logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 20px rgba(236, 186, 97, 0.6));
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--dourado);
  color: var(--azul-escuro);
  transform: translateY(-3px);
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.footer__info {
  margin-bottom: 0;
}

.footer__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dourado);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer__icon {
  color: var(--dourado);
  font-size: 1rem;
  width: 16px;
}

.footer__image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__image-wrapper {
  position: relative;
  max-width: 400px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: footerGlow 3s ease-in-out infinite;
}

.footer__image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(236, 186, 97, 0.3), transparent);
  transition: left 0.8s ease;
  z-index: 5;
  animation: footerShine 4s ease-in-out infinite;
}

.footer__image-wrapper:hover::before {
  left: 100%;
  animation: none;
}

.footer__image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(236, 186, 97, 0.1) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.footer__image-wrapper:hover::after {
  opacity: 1;
}

.footer__image {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
  filter: brightness(1.05) contrast(1.05);
}

.footer__image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(236, 186, 97, 0.2);
}

.footer__image-wrapper:hover .footer__image {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

.footer__premium-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--dourado), #d4a853);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(236, 186, 97, 0.4);
  z-index: 10;
  backdrop-filter: blur(5px);
}

.footer__premium-badge i {
  font-size: 0.9rem;
  color: white;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes logoAppear {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    filter: drop-shadow(0 0 0 rgba(236, 186, 97, 0));
  }
  50% {
    opacity: 0.7;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 2px 8px rgba(236, 186, 97, 0.3));
  }
}

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE HERO IMAGES ===== */
@media (min-width: 1400px) {
  .hero::before {
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3') center/cover no-repeat;
  }
}

@media (max-width: 1024px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background: rgba(9, 44, 74, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    transition: right 0.3s ease;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav__menu.show {
    right: 0;
  }

  .nav__link {
    color: var(--dourado) !important;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(236,186,97,0.08);
  }
  .nav__link:hover {
    color: var(--azul-escuro) !important;
    background: rgba(236,186,97,0.08);
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
  }
  .nav__toggle {
    display: block;
    color: var(--dourado) !important;
    font-size: 2.2rem;
    z-index: 2100;
    filter: drop-shadow(0 2px 8px rgba(236,186,97,0.2));
  }

  .nav__logo-img {
    height: 55px;
  }

  .footer__logo-img {
    height: 60px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__stats {
    justify-content: center;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .footer__content,
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer__image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .footer__premium-badge {
    top: 0.8rem;
    right: 0.8rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .footer__premium-badge i {
    font-size: 0.8rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .about__text--bio {
    font-size: 1.1rem;
    padding: 1.25rem;
    margin: 1rem 0;
  }

  .about__text--bio::before {
    font-size: 3rem;
    top: -0.75rem;
  }

  .portfolio-swiper {
    padding: 1rem 0;
  }
  
  .portfolio-swiper .swiper-slide {
    min-height: 500px; /* Altura mínima menor no mobile */
  }

  .portfolio__image {
    padding-bottom: 80%; /* Altura bem maior no mobile */
  }

  .portfolio__content {
    padding: 1rem;
  }

  .portfolio__title {
    font-size: 1.1rem;
  }

  .portfolio__description {
    font-size: 0.9rem;
  }

  .portfolio-swiper .swiper-button-next,
  .portfolio-swiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .portfolio-swiper .swiper-button-next:after,
  .portfolio-swiper .swiper-button-prev:after {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .service,
  .testimonial {
    padding: 2rem;
  }

  .contact__form-wrapper {
    padding: 2rem;
  }

  .nav__logo-img {
    height: 50px;
  }

  .footer__logo-img {
    height: 55px;
  }
  


  .about__text--bio {
    font-size: 1rem;
    padding: 1rem;
  }

  .about__text--bio::before {
    font-size: 2.5rem;
    top: -0.5rem;
  }

  .portfolio-swiper .swiper-slide {
    min-height: 450px; /* Altura mínima menor em telas muito pequenas */
  }

  .portfolio__image {
    padding-bottom: 75%; /* Altura bem maior em telas muito pequenas */
  }

  .portfolio__content {
    padding: 0.8rem;
  }

  .portfolio__title {
    font-size: 1rem;
  }

  .portfolio__description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .portfolio__details {
    padding-top: 0.8rem;
  }

  .portfolio__value {
    font-size: 1rem;
  }

  .portfolio__status {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }
}

 