/*
Theme Name: T&D Cleaning Service
Theme URI: https://alk.com.br
Author: Alk Comunicação
Author URI: https://alk.com.br
Description: T&D Cleaning Service
Requires at least: 6.8.1
Tested up to: 6.8.1
Requires PHP: 7.4 ou superior
Version: 1.0
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body{
    background-color: #fff;
    font-family: "Momo Trust Sans", sans-serif;
     margin: 0 !important;
     padding: 0 !important;
     overflow-x: hidden;
     scroll-behavior: smooth;
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
  z-index: 999;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  color: #2a82ff;
}

.dropdown {
  position: relative;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid #2983FD;
  border-bottom: 2px solid #2983FD;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: 6px;
  margin-top: 2px;
  transition: transform 0.3s;
}

.dropdown:hover .chevron {
  transform: rotate(225deg);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  display: none;
  list-style: none;
  padding: 10px 0;
  min-width: 180px;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: #333;
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

nav img{
    width: 180px;
    height: auto;
    
}

.container{
    width: 85%;
    margin: 0 auto;
}

footer{
    background-color: #1960CC;
    padding: 80px 0;
}

.footer-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin:  0 auto;
    gap: 60px;
    width: 900px;
    margin: 0 auto;
}

.w-50{
    width: auto;
    margin: 0 auto;
}

.w-50 h3{
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.w-50 p{
    color: #fff;
    font-size: 1.2rem;
    width: 80%;
    
}

.w-50 i{
    font-size: 1.5rem;
    color: rgb(255, 187, 0);
    margin-right: 15px;
}

.w-50 h2{
    color: rgb(255, 187, 0);
    margin: 15px auto;
    display: inline-block;
}

section.signature{
    background-color: #063464;
    color: #fff;
    padding: 55px;
    margin: 0 auto;
    text-align: center;
}

/* Estilo geral do formulário Contact Form 7 */
.wpcf7 form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Inter', 'Poppins', sans-serif;
}

/* Títulos e rótulos */
.wpcf7 form p strong {
  display: block;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

/* Inputs e textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  transition: all 0.3s ease;
  font-size: 15px;
  line-height: 1.6; /* aumenta o espaçamento entre linhas */
  margin-bottom: 16px; /* espaço entre campos */
}

/* Textarea: sem resize manual */
.wpcf7 textarea {
  resize: none;
  min-height: 120px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #1C8E88;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(28,142,136,0.15);
}

/* Checkbox e radio */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  margin-right: 8px;
  transform: scale(1.1);
}

/* Botão principal */
.wpcf7 input[type="submit"] {
  background: #1960CC;
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  letter-spacing: 0.5px;
}

.wpcf7 input[type="submit"]:hover {
  background: #154fa6;
}

/* Mensagens de sucesso/erro */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #e6f7f5;
  border: 1px solid #1C8E88;
  color: #1C8E88;
}

.wpcf7 form.invalid .wpcf7-response-output {
  background: #fff3f3;
  border: 1px solid #e74c3c;
  color: #e74c3c;
}


/*media queries - responsivo*/

@media (max-width: 992px) {
  nav {
    padding: 25px 0;
  }

  .nav-content {
    justify-content: center;
  }

  .btn-nav {
    display: none;
  }

  nav img {
    width: 150px;
  }

    .footer-wrapper {
    width: 100%;
    gap: 40px;
    padding: 0 30px;
  }

  .w-50 p {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 30px;
  }

  .w-50 {
    width: 100%;
    text-align: center;
  }

  .w-50 h3 {
    font-size: 1.3rem;
  }

  .w-50 p {
    font-size: 1rem;
    width: 90%;
    margin: 0 auto;
  }

  .w-50 i {
    margin-right: 8px;
  }

  footer {
    padding: 60px 0;
  }
  .w-50 img{
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 220px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
  }
}