#wwpp-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease-out;
}

.wwpp-image-column {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  min-height: 300px;
}

#wwpp-overlay.show { display: flex; }

#wwpp-popup {
    position: relative;
    max-width: 800px;
    width: 95%;
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    animation: slideUp 0.5s ease-out;
    box-shadow: none !important;
}

#wwpp-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  color: #444;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  padding: 0;
}

#wwpp-close svg {
  width: 26px;
  height: 26px;
  display: block;
}

#wwpp-close:hover {
  background: transparent;  
}

.wwpp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.wwpp-text-column {
    padding: 50px 40px;
    background: linear-gradient(135deg, #27b7ef, #e5324d);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wwpp-text-column h2 {
    font-size: 2.2rem;
    margin: 0 0 20px 0;
    color: #fce315;
}

.wwpp-text-column p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.wwpp-phone { font-size: 1.3rem; margin-top: 20px; }

.wwpp-form-column {
    padding: 50px 40px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#wwpp-form input, #wwpp-form select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 0.3rem !important;
  font-size: 0.9rem;
  transition: 0.3s;
  line-height: 1rem;
  color: #444;
  opacity: 1;
  height: auto;
}

#wwpp-form input:focus {
    outline: none;
    border-color: #27b7ef;
}

#wwpp-form button {
    background: #25D366;
    color: white;
    border: none;
    padding: 16px;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 0.3rem !important;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

#wwpp-form button:hover {
    background: #128C7E;
}

#wwpp-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 0.3rem !important;
    text-align: center;
    font-weight: 400;
    display:none;
}
.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 768px) {
    .wwpp-grid {
        grid-template-columns: 1fr;
    }
    .wwpp-text-column {
        padding: 40px 30px;
        text-align: center;
    }
    
}
@media (max-width: 600px) {
.wwpp-image-column {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  min-height: 300px;
  display: none;
}
#wwpp-popup { width: 96%; }
    .wwpp-form-column {
      padding: 20px 20px;
      background: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
}

@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes slideUp { from {transform:translateY(50px);opacity:0;} to {transform:translateY(0);opacity:1;} }