/* ====================================== */
/* about.css */
/* REDEPESSOAL - ORANGE 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);

  --gradient-dark:
    linear-gradient(135deg,
    #ff6a00,
    #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 */
/* ====================================== */

.about-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-1516321318423-f06f85e504b3?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.30),
    transparent 35%);
}

/* ====================================== */
/* FLOATING CIRCLES */
/* ====================================== */

.floating-circle{
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.floating-circle.one{
  width: 300px;
  height: 300px;

  background: rgba(255,123,0,0.28);

  top: -80px;
  right: -50px;
}

.floating-circle.two{
  width: 250px;
  height: 250px;

  background: rgba(255,170,80,0.20);

  bottom: -60px;
  left: -60px;
}

.floating-circle.three{
  width: 180px;
  height: 180px;

  background: rgba(255,140,0,0.15);

  top: 50%;
  right: 25%;
}

/* ====================================== */
/* 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.25);

  color: #fff3e8;

  margin-bottom: 30px;
}

.hero-left h1{
  font-size: clamp(3rem, 6vw, 6rem);

  line-height: 1.05;

  color: white;

  margin-bottom: 30px;

  max-width: 850px;
}

.hero-left p{
  color: rgba(255,255,255,0.80);

  font-size: 1.1rem;

  line-height: 1.9;

  max-width: 700px;

  margin-bottom: 40px;
}

/* ====================================== */
/* 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;
}

.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,180,120,0.20);

  color: white;
}

.btn-outline:hover{
  background:
    rgba(255,123,0,0.12);
}

/* ====================================== */
/* HERO CARD */
/* ====================================== */

.hero-card{
  position: relative;

  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.8);

  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.78);

  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);

  padding: 18px;

  border-radius: 18px;

  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.75);
}

/* ====================================== */
/* ABOUT SECTION */
/* ====================================== */

.about-section{
  padding: 120px 0;
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;
}

.image-card{
  position: relative;
}

.image-glow{
  position: absolute;

  inset: -30px;

  background:
    radial-gradient(circle,
    rgba(255,123,0,0.22),
    transparent 70%);

  z-index: -1;
}

.image-card img{
  width: 100%;

  border-radius: 35px;

  box-shadow: var(--shadow);
}

.section-badge{
  display: inline-block;

  padding: 10px 20px;

  border-radius: 999px;

  background: #fff1e6;

  color: #ff7b00;

  border:
    1px solid #ffd2a8;

  font-size: 0.9rem;
  font-weight: 700;

  margin-bottom: 25px;
}

.about-text h2{
  font-size: clamp(2rem,4vw,4rem);

  line-height: 1.1;

  margin-bottom: 30px;
}

.about-text p{
  color: var(--muted);

  line-height: 1.9;

  margin-bottom: 20px;
}

/* ====================================== */
/* FEATURES */
/* ====================================== */

.about-features{
  margin-top: 40px;

  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item{
  display: flex;
  gap: 20px;

  align-items: flex-start;
}

.feature-item i{
  width: 65px;
  height: 65px;

  border-radius: 18px;

  background:
    linear-gradient(135deg,
    #fff1e6,
    #ffe4cc);

  color: #ff7b00;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;

  flex-shrink: 0;
}

.feature-item h4{
  margin-bottom: 8px;
}

.feature-item p{
  margin: 0;
}

/* ====================================== */
/* STATS */
/* ====================================== */

.stats-section{
  padding-bottom: 120px;
}

.stats-grid{
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(240px,1fr));

  gap: 25px;
}

.stat-card{
  background: white;

  border-radius: 30px;

  padding: 40px;

  text-align: center;

  box-shadow: var(--shadow);

  transition: 0.4s ease;

  border:
    1px solid rgba(255,123,0,0.08);
}

.stat-card:hover{
  transform: translateY(-10px);

  box-shadow: var(--shadow-hover);
}

.stat-card i{
  width: 80px;
  height: 80px;

  border-radius: 22px;

  background:
    linear-gradient(135deg,
    #fff1e6,
    #ffe6d1);

  color: #ff7b00;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto auto 25px;

  font-size: 1.8rem;
}

.stat-card h3{
  font-size: 2.3rem;

  margin-bottom: 10px;
}

.stat-card p{
  color: var(--muted);
}

/* ====================================== */
/* VALUES */
/* ====================================== */

.values-section{
  padding: 120px 0;

  background: white;
}

.section-header{
  text-align: center;

  max-width: 850px;

  margin: auto auto 70px;
}

.section-header h2{
  font-size: clamp(2rem,4vw,4rem);

  margin-bottom: 25px;
}

.section-header p{
  color: var(--muted);

  line-height: 1.9;
}

.values-grid{
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px,1fr));

  gap: 30px;
}

.value-card{
  background: white;

  border:
    1px solid rgba(255,123,0,0.08);

  border-radius: 32px;

  padding: 40px;

  transition: 0.4s ease;
}

.value-card:hover{
  transform: translateY(-8px);

  box-shadow:
    0 20px 50px rgba(255,123,0,0.12);

  border-color:
    rgba(255,123,0,0.15);
}

.value-icon{
  width: 80px;
  height: 80px;

  border-radius: 24px;

  background:
    linear-gradient(135deg,
    #ff7b00,
    #ff9d3f);

  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.25);
}

.value-card h3{
  margin-bottom: 18px;
}

.value-card p{
  color: var(--muted);

  line-height: 1.8;
}

/* ====================================== */
/* CTA */
/* ====================================== */

.cta-section{
  padding: 120px 0;
}

.cta-box{
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(135deg,
    #121212,
    #1d1d1d);

  border:
    1px solid rgba(255,123,0,0.10);

  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.78);

  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:
    linear-gradient(135deg,
    #ff7b00,
    #ff9d3f);

  color: white;

  cursor: pointer;

  font-size: 1.2rem;

  z-index: 999;

  opacity: 0;
  visibility: hidden;

  transform: translateY(20px);

  transition: 0.3s ease;

  box-shadow:
    0 15px 40px rgba(255,123,0,0.35);
}

.scroll-top.show{
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

/* ====================================== */
/* RESPONSIVO */
/* ====================================== */

@media(max-width: 1100px){

  .hero-content,
  .about-grid{
    grid-template-columns: 1fr;
  }

  .hero-right{
    width: 100%;
  }

  .cta-box{
    flex-direction: column;
    align-items: flex-start;
  }

}

@media(max-width: 768px){

  .about-hero{
    min-height: auto;
  }

  .hero-content{
    padding: 120px 0 80px;
  }

  .hero-left h1{
    font-size: 3rem;
  }

  .hero-card,
  .value-card,
  .stat-card{
    padding: 30px;
  }

  .cta-box{
    padding: 40px 30px;
  }

  .mini-stats{
    flex-direction: column;
  }

}

.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;
 
}

}