/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

/* Logo ajustado */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: bold;
}

.logo-icon {
  width: 210px;
  height: 50px;
  object-fit: contain;
  object-position: center;
  max-width: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
  .logo-icon {
    width: 180px;
    height: 40px;
  }

  .header-container {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 150px;
    height: 35px;
  }
}

nav {
  display: none;
}

@media (min-width: 768px) {
  nav {
    display: flex;
    gap: 24px;
  }

  nav a {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
  }

  nav a:hover {
    color: #0070f3;
  }
}

.social-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #25d366;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

.instagram-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.instagram-btn:hover {
  opacity: 0.9;
}

.btn-text {
  display: none;
}

@media (min-width: 640px) {
  .btn-text {
    display: inline;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 300px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 15px;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  margin-top: 24px;
  max-width: 28rem;
  font-size: 1.125rem;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.primary-btn {
  background-color: #eab308;
  color: black;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.primary-btn:hover {
  background-color: #ca8a04;
}

.outline-btn {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.outline-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Services Section */
.services {
  padding: 64px 0;
  background-color: #f9fafb;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service Link Styles com Imagens de Fundo */
.service-link {
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  position: relative;
}

.service-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card {
  position: relative;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Imagens de fundo específicas para cada serviço */
.service-padrao .service-card {
  background-image: url("imagens/17.jpg");
}

.service-projetos .service-card {
  background-image: url("imagens/img-projeto.png");
}

.service-luminotecnico .service-card {
  background-image: url("imagens/1.jpg");
}

.service-carregadores .service-card {
  background-image: url("imagens/20.jpg");
}

.service-manutencao .service-card {
  background-image: url("imagens/um-eletricista-masculino-trabalha-em-um-quadro-de-distribuicao-com-um-cabo-de-conexao-eletrico.jpg");
}

.service-emergencia .service-card {
  background-image: url("imagens/agente-de-call-center-feliz-usando-fone-de-ouvido-enquanto-conversa-com-clientes-e-trabalha-no-escritorio.jpg");
}

/* Overlay cinza claro */
.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.504) 0%, rgba(240, 240, 240, 0.477) 80%);
  transition: all 0.3s ease;
}

.service-link:hover .service-overlay {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.426) 0%, rgba(240, 240, 240, 0.377) 80%);
}

/* Conteúdo do serviço */
.service-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.service-icon {
  margin-bottom: 16px;
  color: #eab308;
  font-size: 3rem;
  transition: transform 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.service-link:hover .service-icon {
  transform: scale(1.2);
}

.service-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: #1f2937;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.service-link:hover .service-title {
  color: #eab308;
}

.service-description {
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* About Section */
.about {
  padding: 64px 0;
}

.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-image-container {
  position: relative;
  height: 400px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.about-text {
  color: #6b7280;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-icon {
  color: #eab308;
}

.feature-text {
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 64px 0;
  background-color: #f9fafb;
}

.testimonials-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background-color: white;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 16px;
  font-style: italic;
  color: #6b7280;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-letter {
  color: #6b7280;
  font-weight: bold;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 500;
}

.author-role {
  font-size: 0.875rem;
  color: #6b7280;
}

/* CTA Sections - Design Profissional com Paleta Alternada */

/* CTA 1 - Amarelo */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

/* CTA 2 - Vermelho */
.cta2 {
  padding: 80px 0;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  position: relative;
  overflow: hidden;
}

.cta2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
  opacity: 0.3;
}

/* CTA 3 - Cinza */
.cta3 {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff);
  position: relative;
  overflow: hidden;
}

.cta3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain3" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain3)"/></svg>');
  opacity: 0.3;
}

/* CTA 4 - Amarelo */
.cta4 {
  padding: 80px 0;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  position: relative;
  overflow: hidden;
}

.cta4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain4" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain4)"/></svg>');
  opacity: 0.3;
}

/* CTA 5 - Vermelho */
.cta5 {
  padding: 80px 0;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  position: relative;
  overflow: hidden;
}

.cta5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain5" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain5)"/></svg>');
  opacity: 0.3;
}

/* Estilos comuns para todas as CTAs */
.cta-container,
.cta2 .cta-container,
.cta3 .cta-container,
.cta4 .cta-container,
.cta5 .cta-container,
.cta6 .cta-container {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Títulos das CTAs */
.cta-title,
.cta4 .cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.cta2 .cta-title,
.cta5 .cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.cta3 .cta-title2,
.cta6 .cta-title2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1f2937;
  line-height: 1.2;
}

/* Descrições das CTAs */
.cta-description,
.cta4 .cta-description {
  margin-bottom: 32px;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
  font-weight: 400;
}

.cta2 .cta-description,
.cta5 .cta-description {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
  font-weight: 400;
}

.cta3 .cta-description1,
.cta6 .cta-description1 {
  margin-bottom: 32px;
  color: rgba(3, 3, 3, 0.95);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: justify;
  font-weight: 400;
}

/* Botões das CTAs */
.cta-buttons,
.cta2 .cta-buttons,
.cta3 .cta-buttons,
.cta4 .cta-buttons,
.cta5 .cta-buttons,
.cta6 .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Botões para CTAs amarelas */
.cta .cta-outline,
.cta4 .cta-outline {
  background-color: white;
  border: 2px solid white;
  color: #fbbf24;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta .cta-outline:hover,
.cta4 .cta-outline:hover {
  background-color: transparent;
  color: #fafafa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Botões para CTAs vermelhas */
.cta2 .cta-outline,
.cta5 .cta-outline {
  background-color: white;
  border: 2px solid white;
  color: #dc2626;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta2 .cta-outline:hover,
.cta5 .cta-outline:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Botões para CTAs cinzas */
.cta3 .cta-outline,
.cta6 .cta-outline {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  color: #fbbf24;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta3 .cta-outline:hover,
.cta6 .cta-outline:hover {
  background-color: transparent;
  color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsividade para CTAs */
@media (max-width: 768px) {
  .cta-title,
  .cta2 .cta-title,
  .cta3 .cta-title2,
  .cta4 .cta-title,
  .cta5 .cta-title,
  .cta6 .cta-title2 {
    font-size: 2rem;
  }

  .cta-description,
  .cta2 .cta-description,
  .cta3 .cta-description1,
  .cta4 .cta-description,
  .cta5 .cta-description,
  .cta6 .cta-description1 {
    font-size: 1rem;
    text-align: left;
  }

  .cta .cta-outline,
  .cta2 .cta-outline,
  .cta3 .cta-outline,
  .cta4 .cta-outline,
  .cta5 .cta-outline,
  .cta6 .cta-outline {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Responsividade para Services */
@media (max-width: 768px) {
  .service-link {
    height: 240px;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-description {
    font-size: 0.85rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .service-link {
    height: 200px;
  }

  .service-content {
    padding: 16px;
  }

  .service-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .service-description {
    font-size: 0.8rem;
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}

/* Footer */
footer {
  background-color: #111827;
  color: white;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  color: #eab308;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: bold;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: white;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #eab308;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.contact-icon {
  color: #eab308;
}

.contact-text {
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 32px;
  padding-top: 32px;
  text-align: center;
  color: #9ca3af;
}

/* Icons */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-item.active {
  opacity: 1;
  z-index: 1;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.carousel-control:hover {
  opacity: 1;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-indicator.active {
  background-color: white;
}

/* Botões Flutuantes no Lado Direito - Maiores e do Mesmo Tamanho */
.floating-social-buttons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.floating-whatsapp-btn,
.floating-instagram-btn {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp-btn:hover,
.floating-instagram-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Botão WhatsApp - Verde */
.floating-whatsapp-btn {
  background-color: #25d366;
}

.floating-whatsapp-btn:hover {
  background-color: #128c7e;
}

.floating-whatsapp-btn svg {
  fill: white;
  width: 40px;
  height: 40px;
}

/* Botão Instagram - Gradiente */
.floating-instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2742c5 50%, #cc2366 75%, #3b2a36ac 8000%);
}

.floating-instagram-btn:hover {
  opacity: 0.9;
}

.floating-instagram-btn svg {
  fill: white;
  width: 50px;
  height: 40px;
}

/* Responsividade para botões flutuantes */
@media (max-width: 768px) {
  .floating-social-buttons {
    right: 15px;
    gap: 15px;
  }

  .floating-whatsapp-btn,
  .floating-instagram-btn {
    width: 60px;
    height: 60px;
  }

  .floating-whatsapp-btn svg,
  .floating-instagram-btn svg {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .floating-social-buttons {
    right: 10px;
    gap: 12px;
  }

  .floating-whatsapp-btn,
  .floating-instagram-btn {
    width: 55px;
    height: 55px;
  }

  .floating-whatsapp-btn svg,
  .floating-instagram-btn svg {
    width: 30px;
    height: 30px;
  }
}
