/* ====================================== */
/* contact.css */
/* REDEPESSOAL - CONTACT PREMIUM UI */
/* ====================================== */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{

  --primary: #ff7b00;

  --primary-light: #ff9d3f;

  --secondary: #121212;

  --accent: #ffb067;

  --white: #ffffff;

  --light: #fff7f0;

  --text: #1e293b;

  --muted: #64748b;

  --border: #ffe0c2;

  --gradient:
    linear-gradient(135deg,
    #ff7b00,
    #ff9d3f);

  --shadow:
    0 10px 40px rgba(255,123,0,0.10);

  --shadow-hover:
    0 25px 60px rgba(255,123,0,0.18);
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: 'Inter', sans-serif;

  background:
    linear-gradient(to bottom,
    #fffaf5,
    #ffffff);

  color: var(--text);

  overflow-x: hidden;
}

.container{
  width: 95%;
  max-width: 1400px;
  margin: auto;
}

/* ====================================== */
/* HERO */
/* ====================================== */

.contact-hero{
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(rgba(15,15,15,0.88),
    rgba(15,15,15,0.92)),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=2070&auto=format&fit=crop');

  background-size: cover;
  background-position: center;
}

.hero-overlay{
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top right,
    rgba(255,123,0,0.28),
    transparent 35%);
}

/* FLOATING */

.floating-circle{
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.floating-circle.one{
  width: 300px;
  height: 300px;

  background: rgba(255,123,0,0.25);

  top: -80px;
  right: -50px;
}

.floating-circle.two{
  width: 220px;
  height: 220px;

  background: rgba(255,160,80,0.18);

  bottom: -50px;
  left: -50px;
}

/* HERO CONTENT */

.hero-content{
  position: relative;
  z-index: 10;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;

  gap: 60px;

  align-items: center;

  padding: 120px 0;
}

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 24px;

  border-radius: 999px;

  background:
    rgba(255,123,0,0.15);

  border:
    1px solid rgba(255,160,80,0.20);

  color: #fff3e8;

  margin-bottom: 25px;
}

.hero-left h1{
  font-size: clamp(3rem,6vw,6rem);

  line-height: 1.05;

  color: white;

  margin-bottom: 30px;
}

.hero-left p{
  color: rgba(255,255,255,0.80);

  font-size: 1.1rem;

  line-height: 1.9;

  margin-bottom: 40px;

  max-width: 700px;
}

/* BUTTONS */

.hero-buttons{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline{
  text-decoration: none;

  padding: 16px 32px;

  border-radius: 18px;

  font-weight: 600;

  transition: 0.3s ease;

  border: none;

  cursor: pointer;
}

.btn-primary{
  background: var(--gradient);
  color: white;
}

.btn-primary:hover{
  transform: translateY(-4px);

  box-shadow:
    0 15px 40px rgba(255,123,0,0.35);
}

.btn-secondary{
  background:
    rgba(255,123,0,0.10);

  border:
    1px solid rgba(255,160,80,0.20);

  color: white;
}

.btn-secondary:hover{
  background:
    rgba(255,123,0,0.18);
}

.btn-outline{
  border:
    2px solid rgba(255,160,80,0.20);

  color: white;
}

.btn-outline:hover{
  background:
    rgba(255,123,0,0.10);
}

/* HERO CARD */

.hero-card{
  padding: 40px;

  border-radius: 35px;

  background:
    rgba(255,255,255,0.06);

  border:
    1px solid rgba(255,160,80,0.15);

  backdrop-filter: blur(18px);

  box-shadow:
    0 20px 60px rgba(255,123,0,0.18);
}

.card-top{
  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(255,255,255,0.85);

  margin-bottom: 25px;
}

.online-dot{
  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: #ff7b00;

  box-shadow:
    0 0 15px #ff7b00;
}

.hero-card h3{
  color: white;

  font-size: 2rem;

  margin-bottom: 18px;
}

.hero-card p{
  color: rgba(255,255,255,0.75);

  line-height: 1.8;

  margin-bottom: 35px;
}

/* MINI STATS */

.mini-stats{
  display: flex;
  gap: 20px;
}

.mini-stats div{
  flex: 1;

  background:
    rgba(255,255,255,0.05);

  border-radius: 20px;

  padding: 20px;

  text-align: center;
}

.mini-stats strong{
  display: block;

  color: white;

  font-size: 1.3rem;

  margin-bottom: 8px;
}

.mini-stats span{
  color: rgba(255,255,255,0.70);
}

/* ====================================== */
/* SECTIONS */
/* ====================================== */

.contact-section,
.social-section,
.form-section,
.faq-section,
.cta-section{
  padding: 120px 0;
}

.section-header{
  text-align: center;

  max-width: 850px;

  margin: auto auto 70px;
}

.section-badge{
  display: inline-block;

  padding: 10px 20px;

  border-radius: 999px;

  background: #fff1e6;

  border:
    1px solid #ffd7b0;

  color: #ff7b00;

  font-size: 0.9rem;
  font-weight: 700;

  margin-bottom: 25px;
}

.section-header h2{
  font-size: clamp(2rem,4vw,4rem);

  margin-bottom: 25px;
}

.section-header p{
  color: var(--muted);

  line-height: 1.9;
}

/* ====================================== */
/* CONTACT GRID */
/* ====================================== */

.contact-grid{
  display: grid;

  grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

  gap: 25px;
}

.contact-card{
  background: white;

  border-radius: 32px;

  padding: 40px;

  border:
    1px solid rgba(255,123,0,0.08);

  box-shadow: var(--shadow);

  transition: 0.4s ease;
}

.contact-card:hover{
  transform: translateY(-8px);

  box-shadow: var(--shadow-hover);
}

.contact-icon{
  width: 80px;
  height: 80px;

  border-radius: 24px;

  background: var(--gradient);

  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.8rem;

  margin-bottom: 25px;

  box-shadow:
    0 15px 35px rgba(255,123,0,0.22);
}

.contact-card h3{
  margin-bottom: 15px;
}

.contact-card p{
  color: var(--muted);

  line-height: 1.8;

  margin-bottom: 25px;
}

.contact-card a{
  text-decoration: none;

  color: #ff7b00;

  font-weight: 700;
}

/* ====================================== */
/* SOCIAL */
/* ====================================== */

.social-grid{
  display: grid;

  grid-template-columns:
    repeat(auto-fit,minmax(180px,1fr));

  gap: 20px;
}

.social-card{
  background: white;

  border-radius: 28px;

  padding: 35px 25px;

  text-decoration: none;

  color: var(--text);

  border:
    1px solid rgba(255,123,0,0.08);

  box-shadow: var(--shadow);

  text-align: center;

  transition: 0.4s ease;
}

.social-card:hover{
  transform: translateY(-8px);

  box-shadow: var(--shadow-hover);
}

.social-card i{
  width: 75px;
  height: 75px;

  border-radius: 22px;

  background: var(--gradient);

  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto auto 20px;

  font-size: 1.8rem;
}

.social-card span{
  font-weight: 600;
}

/* ====================================== */
/* FORM */
/* ====================================== */

.form-wrapper{
  background: white;

  border-radius: 40px;

  padding: 60px;

  box-shadow: var(--shadow);

  border:
    1px solid rgba(255,123,0,0.08);

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 60px;
}

.form-left h2{
  font-size: clamp(2rem,4vw,3.5rem);

  margin-bottom: 25px;
}

.form-left p{
  color: var(--muted);

  line-height: 1.9;
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.input-group{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group label{
  font-weight: 600;
}

.input-group input,
.input-group textarea{
  width: 100%;

  border:
    1px solid rgba(255,123,0,0.12);

  background: #fffaf5;

  border-radius: 18px;

  padding: 18px 20px;

  font-family: inherit;

  font-size: 1rem;

  outline: none;

  transition: 0.3s ease;
}

.input-group textarea{
  min-height: 180px;
  resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus{
  border-color: #ff7b00;

  box-shadow:
    0 0 0 5px rgba(255,123,0,0.10);
}

.submit-btn{
  width: fit-content;
}

/* ====================================== */
/* FAQ */
/* ====================================== */

.faq-grid{
  display: grid;

  grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

  gap: 25px;
}

.faq-card{
  background: white;

  border-radius: 30px;

  padding: 35px;

  border:
    1px solid rgba(255,123,0,0.08);

  box-shadow: var(--shadow);

  transition: 0.4s ease;
}

.faq-card:hover{
  transform: translateY(-6px);

  box-shadow: var(--shadow-hover);
}

.faq-card h3{
  margin-bottom: 18px;
}

.faq-card p{
  color: var(--muted);

  line-height: 1.8;
}

/* ====================================== */
/* CTA */
/* ====================================== */

.cta-box{
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(135deg,
    #121212,
    #1d1d1d);

  border-radius: 40px;

  padding: 80px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-box::before{
  content: '';

  position: absolute;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background:
    rgba(255,123,0,0.20);

  top: -120px;
  right: -120px;

  filter: blur(40px);
}

.cta-content{
  position: relative;
  z-index: 2;
}

.cta-content h2{
  color: white;

  font-size: clamp(2rem,4vw,4rem);

  line-height: 1.1;

  margin-bottom: 25px;
}

.cta-content p{
  color: rgba(255,255,255,0.75);

  line-height: 1.9;

  max-width: 650px;
}

.cta-buttons{
  position: relative;
  z-index: 2;

  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ====================================== */
/* SCROLL TOP */
/* ====================================== */

.scroll-top{
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 60px;
  height: 60px;

  border: none;

  border-radius: 20px;

  background: var(--gradient);

  color: white;

  cursor: pointer;

  font-size: 1.2rem;

  opacity: 0;
  visibility: hidden;

  transform: translateY(20px);

  transition: 0.3s ease;

  z-index: 999;

  box-shadow:
    0 15px 40px rgba(255,123,0,0.35);
}

.scroll-top.show{
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}
.text-counter{
  display: block;

  text-align: right;

  margin-top: 10px;

  color: #64748b;

  font-size: 0.9rem;
}

/* ====================================== */
/* RESPONSIVO */
/* ====================================== */

@media(max-width:1100px){

  .hero-content,
  .form-wrapper{
    grid-template-columns: 1fr;
  }

  .cta-box{
    flex-direction: column;
    align-items: flex-start;
  }

}

@media(max-width:768px){

  .hero-content{
    padding: 120px 0 80px;
  }

  .hero-left h1{
    font-size: 3rem;
  }

  .hero-card,
  .contact-card,
  .faq-card,
  .form-wrapper{
    padding: 30px;
  }

  .mini-stats{
    flex-direction: column;
  }

  .cta-box{
    padding: 40px 30px;
  }

}

.container-logo{
  position: absolute;
  top: 7px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container-logo a{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 66;
}

.container-logo a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(min-width:768px){

  .container-logo a{
  width: 80px;
  height: 80px;
 
}

}