/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0a0e27;
    color: #ebebeb;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background: linear-gradient(135deg, #0a0e27 60%, #3cef9b 100%);
    padding: 3rem 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Logo no header */
.logo {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
}

/* Texto do header */
.header-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.header-text h1 {
    font-size: 2.5rem;
    color: #ebebeb;
    margin-bottom: 0.5rem;
}

.header-text p {
    font-size: 1.2rem;
    color: #ebebeb;
    margin-bottom: 2rem;
}

/* Botões padrão */
.btn-cta, .btn {
    background-color: #3cef9b;
    color: #0a0e27;
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-cta:hover, .btn:hover {
    background-color: #2ccf87;
}

/* Containers gerais */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero section */
.hero .container {
    padding: 2rem 1rem;
}

.hero .container > div:nth-child(2) img {
    display: block;
    margin: 0 auto;
}

/* Serviços */
.servicos h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #3cef9b;
}

.servicos .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.servicos .card {
    background-color: #1b1f39;
    color: #ebebeb;
    padding: 1.5rem;
    border-radius: 10px;
    flex: 1 1 250px;
    min-width: 250px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.servicos .card:hover {
    transform: translateY(-5px);
}

.servicos .card h3 {
    color: #3cef9b;
    margin-bottom: 0.5rem;
}

/* Elementor sections */
.elementor-section {
    padding: 2rem 1rem;
    background-color: #0a0e27;
    color: #ebebeb;
}

.elementor-section .elementor-heading-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #3cef9b;
}

.elementor-widget-text-editor {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #1b1f39;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    color: #ebebeb;
}

.elementor-widget-text-editor p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Equipe */
.equipe h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #3cef9b;
}

.equipe .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.equipe .card {
    background-color: #ebebeb;
    color: #0a0e27;
    padding: 1rem;
    border-radius: 10px;
    flex: 1 1 250px;
    min-width: 250px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.equipe .card:hover {
    transform: translateY(-5px);
}

.equipe .card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: block;
}

.equipe .card h3 {
    color: #0a0e27;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.equipe .card p {
    color: #333333;
    font-size: 0.95rem;
}

.equipe .card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.equipe .card a:hover img {
    transform: scale(1.03);
}

.equipe .card a:hover h3 {
    color: #3cef9b;
}

/* Planos */
.planos h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #3cef9b;
}

/* Carrossel */
.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    touch-action: pan-y;
}

.carousel-track img {
    min-width: 100%;
    object-fit: contain;
    padding: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: 0.5rem;
}

.carousel-btn.next {
    right: 0.5rem;
}

/* Seção particular */
.particular {
    background-color: #1b1f39;
    text-align: center;
    padding: 3rem 1rem;
    color: #ebebeb;
}

.particular .container {
    text-align: center;
    padding: 2rem 1rem;
}

.particular h2 {
    color: #3cef9b !important;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.particular p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ebebeb;
}

/* Contato */
.contato {
    background: #1b1f39 !important;
    padding: 3rem 1rem !important;
    color: #ebebeb;
}

.contato .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 0;
}

.contato .container > div {
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
    padding: 1rem;
    background-color: #2b2b2b;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.contato .container > div img {
    max-width: 180px;
    margin-bottom: 1rem;
}

.contato .container > div h2 {
    color: #3cef9b !important;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.contato .container > div .social-media-block .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.8rem;
}

.contato .container > div .social-media-block .social-icons a {
    color: #ebebeb !important;
    transition: color 0.3s ease;
}

.contato .container > div .social-media-block .social-icons a:hover {
    color: #3cef9b !important;
}

.contato .container > div .social-media-block .social-icons .fa-facebook-f { color: #3b5998; }
.contato .container > div .social-media-block .social-icons .fa-instagram { color: #E4405F; }
.contato .container > div .social-media-block .social-icons .fa-youtube { color: #FF0000; }

.contato .container > div ul {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    text-align: left;
}

.contato .container > div ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.contato .container > div ul li i {
    color: #3cef9b !important;
    margin-right: 0.5rem;
}

.contato .container > div iframe {
    width: 100% !important;
    height: 250px !important;
    border: none !important;
    border-radius: 10px !important;
}

.contato .container > div p.address {
    margin-top: 0.5rem;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.contato .container > div p.address i {
    color: #3cef9b !important;
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.2em;
}

/* Rodapé */
footer {
    background-color: #0a0e27;
    padding: 1.5rem 1rem;
    text-align: center;
    color: #ebebeb;
    border-top: 1px solid #1b1f39;
}

/* Botão whatsapp fixo */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* ------------------------------ */
/* Menu principal desktop */
.menu-principal {
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-weight: bold;
}

.menu-principal a {
  color: #ebebeb;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.menu-principal a:hover {
  background-color: #2ccf87;
}

/* Menu toggle (hamburger) - só aparece no mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 30px;
  height: 25px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background-color: #ebebeb;
  border-radius: 2px;
}

/* Menu mobile (escondido por padrão) */
.menu-mobile {
  display: none;
  flex-direction: column;
  background-color: #1b1f39;
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  padding-top: 5rem;
  padding-left: 2rem;
  box-shadow: -2px 0 8px rgba(0,0,0,0.5);
  z-index: 1000;
}

.menu-mobile a {
  color: #ebebeb;
  padding: 1rem 0;
  text-decoration: none;
  font-size: 1.2rem;
  border-bottom: 1px solid #2ccf87;
}

/* Quando o menu estiver aberto */
.menu-open .menu-mobile {
  display: flex;
}

/* Esconde o menu principal no mobile */
@media (max-width: 768px) {
  .menu-principal {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .logo {
        position: static;
        transform: none;
        margin-bottom: 1rem;
    }

    header {
        padding-top: 2rem;
    }

    .header-text h1 {
        font-size: 1.8rem;
    }

    .btn-cta, .btn {
        font-size: 0.95rem;
    }

    .model-card img {
        max-width: 100%;
    }

    .cta h2, .particular h2, .elementor-section .elementor-heading-title {
        font-size: 1.6rem;
    }

    .cta p, .particular p, .elementor-widget-text-editor p {
        font-size: 1rem;
    }

    .hero .container {
        gap: 1.5rem;
    }
    .hero .container > div:nth-child(2) img {
        max-width: 80%;
    }

    /* Manter ajuste para mobile da seção contato se for necessário */
    .contato .container > div {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .contato .container > div ul {
        text-align: center;
    }
    .contato .container > div ul li {
        justify-content: center;
    }
    .contato .container > div p.address {
        justify-content: center;
        text-align: center;
    }
    .contato .container > div p.address i {
        margin-right: 0.3rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 200px;
    }

    .header-text h1 {
        font-size: 1.6rem;
    }

    .header-text p {
        font-size: 1rem;
    }

    .btn-cta, .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.4rem;
    }

    .model-card {
        flex: 1 1 80%;
    }

    .whatsapp {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .whatsapp img {
        width: 30px;
        height: 30px;
    }

    .cta h2, .particular h2, .elementor-section .elementor-heading-title {
        font-size: 1.4rem;
    }

    .cta p, .particular p, .elementor-widget-text-editor p {
        font-size: 0.95rem;
    }

    .hero .container > div:nth-child(2) img {
        max-width: 100%;
    }
    .contato .container > div h2 {
        font-size: 1.4rem;
    }
    .contato .container > div ul {
        font-size: 1rem;
    }
    .contato .container > div .social-media-block .social-icons {
        font-size: 1.5rem;
    }
}
