/* ================================
   RESET BÁSICO E CONFIGURAÇÕES GERAIS
================================= */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    color: #333;
    background-color: #f5e6d0; /* bege suave */
}

/* Paleta baseada no site de exemplo:
   Tons neutros e terrosos */
:root {
    --cor-primaria: #a67c52;
    --cor-secundaria: #f7f2ed;
    --cor-texto: #333;
    --cor-botao: #a67c52;
    --cor-hover: #8b6944;
}

/* ================================
   SEÇÃO 0 - mobile
================================= */

.container {
  padding: 0 20px;
}

@media (max-width: 768px) {
    .sr-container,
    .gr-container,
    .servicos-landing {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}

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

h1 {
  font-size: clamp(28px, 5vw, 60px);
}

p {
  font-size: clamp(14px, 3.5vw, 18px);
}

.btn, .servico-btn, .gr-btn, .rodape-btn {
  width: 100%;
  max-width: 340px;
  margin: auto;
}

@media (max-width: 768px) {
  .footer-content {
    width: 90%;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-middle::before {
    display: none; /* remove o traço no mobile */
  }
}

@media (max-width: 600px) {
  .film-container {
    height: 55px;
  }
  .film-track img {
    height: 45px;
  }
  .film-track {
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .servico-card {
    width: 100%;
    max-width: 380px;
  }
}


/* ================================
   SEÇÃO 1 - HERO
================================= */
.hero {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 35%; /* Ajuste para mais ou menos "altura" do hero */
    background: url("Dados/01.svg") center/cover no-repeat;
    background-attachment: scroll; /* Evita bugs ao dar zoom */

}

/* Tablets */
@media (max-width: 992px) {
    .hero {
        height: 45vh;
    }
}

/* Mobile grande */
@media (max-width: 768px) {
    .hero {
        height: 40vh;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .hero {
        height: 35vh;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background: var(--cor-botao);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
    margin: 0.5rem 0;
}

.btn:hover {
    background: var(--cor-hover);
}

/* ==============================
   NOVA SESSÃO DE SERVIÇOS
============================== */

#servicos {
  /* background-image: url("Dados/SITE-RCN.png"); */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.servicos-landing {
    position: relative;
    display: flex;
    justify-content: space-around;
    padding: 120px 20px;
    min-height: 600px; /* para garantir espaço suficiente */
}


/* === CARDS AGORA MAIORES === */
.servico-card {
    width: 380px;                /* era 320px */
    padding: 40px 35px;          /* espaçamento interno maior */
    border-radius: 18px;
    background: #fffefb;
    font-family: 'Pangolin', cursive;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.servico-card canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: none;
    z-index: 0;
}

/* === TIPOGRAFIA AJUSTADA === */

.servico-top {
    font-size: 24px;
    font-weight: bold;
    color: #7b4a2a;
    margin-bottom: 20px;
}

/* TÍTULO 60px COMO PEDIU */
.servico-titulo {
    font-size: 60px;
    line-height: 1;
    color: #7b4a2a;
    margin-bottom: 25px;
    font-family: 'Pangolin', cursive;
}

.servico-desc {
    font-size: 18px;
    color: #7b4a2a;
    line-height: 1.5;
    margin-bottom: 30px;
    font-family: 'Pangolin', cursive;
}

/* Botão maior e integrado */
.servico-btn {
    background: #c57a2a;
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 30px;
    text-align: center;
    width: 100%;           /* integração visual com o card */
    display: block;
    margin-top: auto;      /* gruda o botão na parte de baixo */
    transition: 0.2s;
}

.servico-btn:hover {
    background: #8a541d;
}

.servico-center {
    max-width: 420px;
    text-align: center;
    font-size: 28px;
    color: #6b4a33;
    line-height: 1.5;
    font-family: 'Pangolin', cursive;

    /* NOVOS AJUSTES PARA CENTRALIZAÇÃO REAL */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

/* ==============================
   BORDA DESENHADA ANIMADA
============================== */
.servico-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    
    border: 3px solid #c57a2a;
    border-radius: inherit;

    opacity: 0;

    /* ESSENCIAL: respeita o border-radius na máscara */
    clip-path: inset(0 100% 0 0 round 14px);

    transform: scale(0.9);

    transition:
        clip-path 1.2s ease,
        opacity .4s ease,
        transform .4s ease;
}

/* QUANDO O CARD ENTRA NA TELA */
.servico-card.animar::before {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 14px);
    transform: scale(1);
}

/* Responsivo */
@media (max-width: 900px) {
    .servicos-landing {
        flex-direction: column;
        align-items: center;
    }

    .servico-center {
        width: 100%;
        max-width: 400px;
        margin: 20px 0;
    }
}


/* =====================================
   SESSÃO PORTFÓLIO - GESTÃO DE REDES
===================================== */

.gestao-redes {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(to right, #f5e6d0 40%, transparent 100%);
}

.gr-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 8%;
}

/* ===== LADO ESQUERDO ===== */

.gr-texto h3 {
    font-family: 'Pangolin', cursive;
    font-size: 32px;
    color: #8b5a39;
    margin-bottom: 10px;
}

.gr-texto h1 {
    font-family: 'Pangolin', cursive;
    font-size: 70px;
    line-height: 1;
    color: #c57a2a;
    margin-bottom: 20px;
}

.gr-texto p {
    font-size: 20px;
    line-height: 1.4;
    color: #5c4a3b;
    max-width: 420px;
    margin-bottom: 35px;
}

/* ===== BOTÃO ===== */

.gr-btn {
    display: inline-block;
    background: #c57a2a;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    transition: 0.25s;
    font-family: 'Pangolin', cursive;
}

.gr-btn:hover {
    background: #8a541d;
}

/* ===== LADO DIREITO (IMAGEM) ===== */

.gr-img {
    width: 55%;
    height: 500px;
    background-image: url("Dados/imagem-gestao.png"); /* sua imagem aqui */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 900px) {
    .gr-container {
        flex-direction: column;
        text-align: center;
    }

    .gr-texto h1 {
        font-size: 50px;
    }

    .gr-img {
        width: 100%;
        height: 380px;
    }
}


/* ============================
   RODAPÉ HERO ESTILO PREMIUM
============================ */

.rodape-hero {
    background: #9a5230; /* marrom puxando pro terroso igual ao da imagem */
    padding: 120px 8%;
    width: 100%;
    text-align: center;
    color: white;
    position: relative;
}

/* Texto superior */
.rodape-top {
    font-size: 20px;
    opacity: 0.9;
    font-family: 'Pangolin', cursive;
}

/* Título principal */
.rodape-titulo {
    font-size: 40px;
    line-height: 1.3;
    margin: 20px 0 10px;
    font-family: 'Pangolin', cursive;
}

/* Palavra grande “História” */
.rodape-historia {
    display: block;
    font-size: 85px;
    font-family: 'Pangolin', cursive;
    margin-top: 15px;
}

/* Texto descritivo */
.rodape-desc {
    font-size: 18px;
    line-height: 1.5;
    margin: 25px 0 40px;
}

/* Botão */
.rodape-btn {
    display: inline-block;
    background: #d98a43;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Pangolin', cursive;
}

.rodape-btn:hover {
    background: #8a541d;
}

/* ============================
   RESPONSIVO
============================ */

@media (max-width: 900px) {

    .rodape-hero {
        padding: 90px 5%;
    }

    .rodape-historia {
        font-size: 55px;
    }

    .rodape-titulo {
        font-size: 28px;
    }
}

/* ===============================
   SEÇÃO SOBRE RHAYSSA
================================ */

.sobre-rhayssa {
    width: 100%;
    padding: 90px 8%;
    background: #f5e6d0; /* marrom igual a imagem */
    display: flex;
    justify-content: center;
}

.sr-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* ===== TEXTO ===== */

.sr-texto {
    width: 50%;
    color: #c57a2a;
}

.sr-titulo {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
}

.sr-paragrafo {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 500px;
}

.sr-assinatura {
    display: block;
    font-size: 18px;
    margin-top: 25px;
    opacity: 0.9;
}

/* ===== IMAGEM ===== */

.sr-imagem {
    width: 45%;
    display: flex;
    justify-content: center;
}

.sr-imagem img {
    width: 100%;
    max-width: 430px;
    border-radius: 20px;
    object-fit: cover;
}

/* ===== RESPONSIVO ===== */

@media (max-width: 900px) {

    .sr-container {
        flex-direction: column;
        text-align: center;
    }

    .sr-texto {
        width: 100%;
    }

    .sr-imagem {
        width: 100%;
    }

    .sr-titulo {
        font-size: 45px;
    }
}

/* === FUNDO COM RCN === */
.fundo-rcn {
     overflow: hidden; /* impede vazamento das letras */
}

/* Letras gigantes */
.fundo-rcn::before {
    content: "RCN";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 35vw; /* tamanho gigante responsivo */
    font-weight: 900;
    font-family: Arial, sans-serif; /* fonte simples, forte */

    color: transparent; /* sem preenchimento */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08); /* só contorno */
    text-stroke: 1px rgba(255, 255, 255, 0.08); /* compatibilidade */

    pointer-events: none; /* não atrapalha clique */
    z-index: 0;
}

/* garante que conteúdo fica por cima das letras */
.fundo-rcn > * {
    position: relative;
    z-index: 2;
}

button,
.btn,
a[class*="btn"],
.botao,
button a,
a.botao {
    font-family: 'IBM Plex Sans', sans-serif !important;
}

.film-container {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  background: #f7ebdb;
}

.film-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 70px;
  height: 100%;
  will-change: transform;
}

.film-track img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

@font-face {
  font-family: "Easman Grotesque";
  src: url("fonts/EasmanGrotesque.ttf");
}

.footer-middle {
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  color: #c2680a;
}

/* TRAÇO VERTICAL ENTRE "SIGA NAS REDES" E O MEIO */
.footer-middle::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    height: 100%;
    width: 4px;
    background: #9a5230;
    opacity: 1;
}

.footer-middle p {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
}

.footer {
  width: 100%;
  background: #fff9f2;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.footer-content {
  width: 25%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-left h2 {
  font-family: "Easman Grotesque", sans-serif;
  color: #9b5529;
  font-size: 24px;
  line-height: 1.2;
}

.footer-icon-esq {
  width: 95px;
}

.footer-right {
  text-align: left;
  color: #9b5529;
  font-family: "Easman Grotesque", sans-serif;
}

.footer-right p {
  margin: 2px 0;
  font-size: 14px;
}

.social-icons {
  margin-top: 8px;
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}




