@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* Variáveis CSS */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #e74c3c;
  --accent-color: #3498db;
  --text-color: #ffffff;
  --text-color-secondary: #e0e0e0;
  --text-color-muted: #b0b0b0;
  --light-gray: #f5f6fa;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: radial-gradient(
    circle at center,
    rgba(30, 30, 30, 0.95),
    rgba(0, 0, 0, 0.98)
  );
  overflow-x: hidden;
}

/* Header e Navegação */
header {
  background-color: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-left: 1rem;
}

.logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo h1 {
  color: var(--text-color);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0;
  line-height: 1;
}

.slogan {
  color: var(--text-color-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 0.3rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

/* Estrutura Geral das Páginas */
.page-section {
    padding-top: 120px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 5%;
}

h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 600;
  animation: slideUp 0.8s ease-out;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: radial-gradient(
    circle at center,
    rgba(30, 30, 30, 0.95),
    rgba(0, 0, 0, 0.98)
  );
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/jkvector.svg");
  background-size: 40%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  animation: slideUp 0.8s ease-out;
}

.hero-content h1:hover {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7),
    0 0 30px rgba(255, 255, 255, 0.5), 0 0 45px rgba(255, 255, 255, 0.3);
  transition: text-shadow 0.3s ease;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  background: linear-gradient(
    90deg,
    var(--white) 50%,
    var(--secondary-color) 60%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: slideUp 0.8s ease-out 0.2s;
  animation-fill-mode: both;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}

.cta-button:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  animation: slideUp 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 0 1rem;
  gap: 1rem;
  animation: slideUp 0.8s ease-out 0.6s;
  animation-fill-mode: both;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.hero-stat-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-color-secondary);
}

.hero-stat-title i {
  font-size: 1.1rem;
}

.hero-stat-item h3 {
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
  margin: 0;
}

/* Seção Sobre */
.sobre-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sobre-content p {
    color: var(--text-color-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.mais {
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #222;
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mais:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.mais h6 {
  font-size: 1.1rem;
  color: var(--text-color-secondary);
  font-weight: 500;
  line-height: 1.4;
  font-style: italic;
}

/* Seção de Depoimentos */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.depoimento-card {
  background: rgba(51, 51, 51, 0.8);
  backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.depoimento-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.depoimento-texto {
  margin-bottom: 1.5rem;
}

.depoimento-texto p {
  color: var(--text-color-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
}

.depoimento-autor {
  text-align: center;
  margin-top: auto;
}

.depoimento-autor h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.depoimento-autor span {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Página Orçamento */
.orcamento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

.orcamento-card {
  background: rgba(51, 51, 51, 0.8);
  backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.orcamento-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.orcamento-card h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.precos-lista {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
  padding: 0 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.precos-lista li {
  color: var(--text-color-secondary);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  position: relative;
  padding-left: 1.5rem;
}

.precos-lista li::before {
  content: "•";
  color: var(--secondary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

.servicos-extras {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
}

.servicos-extras strong {
  color: var(--text-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.instagram-embed {
  margin: 1rem 0;
  height: 450px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.instagram-embed iframe {
  width: 100% !important;
  height: 450px !important;
  border-radius: 10px;
}

.instagram-cta {
  margin-top: 1rem;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

/* Página de Contato */
.contato-grid {
  display: flex; 
  justify-content: center; 
  align-items: center;
}

.contato-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: fit-content;
  max-width: 400px; 
  width: 100%;
}

.contato-info h3 {
  color: var(--text-color);
  margin-bottom: 20px;
  text-align: center;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.info-item div {
  flex: 1;
}

.info-item h4 {
  color: var(--text-color);
  margin-bottom: 5px;
  font-size: 1rem;
}

.info-item p {
  color: var(--text-color-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.info-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-left: 1rem;
}

.contato-info .social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.contato-info .social-links a {
  color: var(--text-color-secondary);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.contato-info .social-links a:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.copy-email {
  transition: color 0.3s, font-weight 0.5s;
  border-radius: 6px;
  padding: 2px 0px;
  font-size: 0.82rem;
  display: block;
  width: 100%;
  word-break: break-all;
  overflow-wrap: break-word;
  line-height: 1.4;
  text-align: left;
  color: var(--text-color);
  text-decoration: none;
}
.copy-email:visited, .copy-email:active, .copy-email:focus {
  color: var(--text-color);
  text-decoration: none;
}
.copy-email:hover, .copy-email:focus {
  color: var(--secondary-color) !important;
  background: none;
  outline: none;
}
.copy-email.copied {
  color: var(--secondary-color) !important;
  background: none;
}

.email-copiado-msg {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 4px;
  font-weight: 500;
  opacity: 1;
  pointer-events: none;
  display: block;
  transition: color 0.3s;
  text-align: center;
  width: 100%;
}
.email-copiado-msg.copiado {
  color: #25d366;
  opacity: 1;
  transition: color 0.3s, opacity 0.3s;
}
.email-copiado-msg.hide {
  opacity: 0;
  transition: opacity 0.3s;
}

/* Página de Especificações */
.espec-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 3rem;
}

.espec-item {
  background: rgba(51, 51, 51, 0.8);
  padding: 2rem;
  border-radius: 15px;
}

.espec-item h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.tabela-cores-img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin-top: 1rem;
}

.info-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.info-box h4 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.info-box p {
  color: var(--text-color-secondary);
  line-height: 1.7;
}

/* Página Portfólio */
.portfolio-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-color-secondary);
  max-width: 700px;
  margin: -2rem auto 3rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 60%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-overlay p {
  font-size: 1rem;
  color: var(--text-color-secondary);
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
  transform: translateY(0);
}

/* Footer */
footer {
  background: transparent;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-info p {
  color: var(--text-color-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-info .social-links {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
}

.footer-info .social-links a i {
  font-size: 1.8rem;
  color: var(--text-color-secondary);
  transition: var(--transition);
}

.footer-info .social-links a:hover i {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-color-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact p {
  color: var(--text-color-secondary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contact i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-color-muted);
  font-size: 0.9rem;
}


/* Botões Flutuantes */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}
.whatsapp-float:hover {
  background-color: #128c7e;
}

.home-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #333;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}
.home-float.show {
  opacity: 1;
  visibility: visible;
}
.home-float:hover {
    background-color: #444;
}

/* Botão de Orçamento da PÁGINA INICIAL */
.orcamento-float {
    position: fixed;
    bottom: 30px;
    right: 100px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}
.orcamento-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.orcamento-float:hover {
    background-color: #c0392b;
    transform: translateY(-5px);
}
.orcamento-float i { font-size: 1.2rem; }
.orcamento-float span { font-size: 1rem; font-weight: 500; }

/* Botão de Orçamento da PÁGINA PORTFÓLIO */
.portfolio-orcamento-float {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.portfolio-orcamento-float:hover {
    background-color: #c0392b;
    transform: translateX(-50%) translateY(-4px);
}
.portfolio-orcamento-float i { font-size: 1.3rem; }
.portfolio-orcamento-float span { font-weight: 500; font-size: 1.1rem; }


/* Animações */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Media Queries (Responsividade) --- */

@media (max-width: 992px) {
  .espec-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .orcamento-grid {
    grid-template-columns: 1fr;
  }
  .main-nav { padding: 0.8rem 1rem; }
  .logo h1 { font-size: 1.8rem; }
  .slogan { font-size: 0.75rem; }
  .portfolio-item img {
    /* ESTA FOI A ALTERAÇÃO PRINCIPAL PARA AS IMAGENS DO PORTFÓLIO */
    object-fit: cover; 
  }

  .mobile-menu-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1rem; padding: 0.5rem 0; }
  
  .hero-content h1 { font-size: 2.2rem; margin-bottom: 1rem; }
  .hero-content p { font-size: 1.1rem; margin-bottom: 2rem; }
  .hero-buttons { flex-direction: column; gap: 1rem; padding: 0 1rem; }
  .hero-buttons .cta-button { width: 100%; padding: 0.8rem 1.5rem; font-size: 1rem; }
  .hero-stats { flex-direction: column; align-items: center; gap: 1.5rem; margin-top: 2rem; }
  .hero-stat-item h3 { font-size: 1.6rem; }
  
  .container { padding: 3rem 1rem; }
  h2 { font-size: 2rem; margin-bottom: 2rem; }
  
  .depoimentos-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .depoimento-card { padding: 1.5rem; }
  .depoimento-texto p { font-size: 1rem; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-links a { padding-left: 0; }
  .footer-links a::before { display: none; }
  .footer-contact p, .footer-info .social-links { justify-content: center; }

  .whatsapp-float { width: 50px; height: 50px; font-size: 25px; bottom: 20px; right: 20px; }
  .home-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; left: 20px; }
  
  .orcamento-float { 
    right: 80px;
    width: 50px;
    height: 50px;
    bottom: 20px;
    padding: 0;
    justify-content: center;
  }
  .orcamento-float i { font-size: 1.3rem; margin: 0; }
  .orcamento-float span { display: none; }
  
  .portfolio-orcamento-float { 
    left: auto; 
    right: 20px; 
    transform: none; 
    width: 50px; 
    height: 50px; 
    bottom: 20px;
    justify-content: center; 
}
  .portfolio-orcamento-float span { display: none; }
  
  .portfolio-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

  .instagram-embed { height: 350px; }
  .instagram-embed iframe { height: 350px !important; }
}

@media (max-width: 600px) {
  .contato-info { text-align: center; }
  .info-item { flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 0.5rem; }
  .info-item div { width: 100%; text-align: left !important; }
  .contato-info .copy-email { text-align: left !important; width: 100%; word-break: break-all; font-size: 0.93rem; }
  .email-copiado-msg { text-align: center; width: 100%; display: block; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; gap: 1rem; }
  .instagram-embed { height: 300px; }
  .instagram-embed iframe { height: 300px !important; }
}
