:root {
  --primary: #2e7d32;   /* Verde Oliva - cor principal */
  --secondary: #4B5366; /* Azul Acinzentado - cor secundária */
  --light: #f4f4f0;     /* Um tom claro neutro para contrastar */
  --dark: #2c2c2c;      /* Um cinza escuro ou preto suave */
  --white: #ffffff;     /* Branco */
  --gray: #e0e0e0;      /* Cinza claro para fundos ou seções secundárias */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: url('./img/UniMansões.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 100px 20px 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}


/* About Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    background-color: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}
/* Gallery Carousel */
.gallery-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.02);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 18px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(46, 125, 50, 0.7);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: rgba(46, 125, 50, 0.9);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background: rgba(75, 83, 102, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.current-slide {
    background: var(--primary);
    transform: scale(1.2);
}

/* Modal Zoom */
.modal-zoom {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.modal-content {
    display: block;
    margin: 50px auto;
    max-width: 90%;
    max-height: 80vh;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.5);}
    to {transform: scale(1);}
}

.close-zoom {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-zoom:hover {
    color: var(--secondary);
}

.caption {
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
}

/* Responsivo */
@media (max-width: 768px) {
    .gallery-carousel {
        height: 350px;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 70vh;
    }
}
/* Plans Section */
.plans {
    background-color: var(--gray);
}

.plans-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-button {
    padding: 12px 25px;
    background-color: var(--white);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.tab-button:hover {
    background-color: rgba(75, 83, 102, 0.1);
}

.tab-button.active {
    background-color: var(--primary);
    color: var(--white);
}

.plans-content {
    position: relative;
    min-height: 500px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-content.active {
    display: block;
}

.plan-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.plan-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    background-color: #f9f9f9;
    padding: 20px;
}

.plan-image img:hover {
    transform: scale(1.02);
}

.plan-info {
    padding: 25px;
}

.plan-info h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 22px;
}

.plan-info p {
    color: #666;
    margin-bottom: 20px;
}

.plan-features {
    list-style-type: none;
    margin-top: 15px;
}

.plan-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.plan-features li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Modal para Zoom das Plantas */
.modal-plan {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: zoomIn 0.3s;
}

.modal-plan-content {
    display: block;
    margin: 50px auto;
    max-width: 90%;
    max-height: 80vh;
    animation: zoom 0.3s;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.close-plan {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-plan:hover {
    color: var(--secondary);
}

.plan-caption {
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
}

/* Responsivo */
@media (max-width: 768px) {
    .plan-card {
        flex-direction: column;
    }
    
    .plan-image {
        height: 300px;
    }
    
    .tab-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .modal-plan-content {
        max-width: 95%;
        max-height: 70vh;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .plans-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 80%;
        margin: 5px 0;
    }
    
    .plan-image {
        height: 250px;
    }
}
@media (max-width: 480px) {
    .modal-plan-content {
        width: 90%;
        height: auto;
        max-height: 60vh;
        object-fit: contain;
    }

    .modal-plan {
        padding: 20px 0;
    }
}
@media (max-width: 768px) {
    .modal-plan-content {
        width: 90%;
        height: auto;
        max-height: 70vh;
        object-fit: contain;
        padding: 10px;
    }
}

/* Form Section */
.form-section {
    background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.9)), url('./img/churrasquiera.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.form-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.form-text {
    flex: 1;
}

.form-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-box {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.privacy-card {
    background-color: var(--light);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 14px;
}

.privacy-card a {
    color: var(--primary);
    text-decoration: none;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-links h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content,
    .form-container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

#video-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
  }
  
  .video-wrapper {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    display: block;
  }
/* Modal de Privacidade */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.privacy-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.privacy-modal h2 {
    color: var(--accent);
    margin-bottom: 20px;
    text-align: center;
}

.privacy-text {
    line-height: 1.6;
}

.privacy-text h3 {
    color: var(--primary);
    margin: 20px 0 10px;
    font-size: 18px;
}

.privacy-text p, .privacy-text ul {
    margin-bottom: 15px;
}

.privacy-text ul {
    padding-left: 20px;
}

.privacy-text li {
    margin-bottom: 5px;
}

.close-privacy {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-privacy:hover {
    color: var(--primary);
}

/* Responsivo */
@media (max-width: 768px) {
    .privacy-modal-content {
        width: 90%;
        margin: 10% auto;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-modal-content {
        width: 95%;
        margin: 15% auto;
        padding: 15px;
    }
}
/* Estilos para feedback do formulário */
.form-feedback {
    margin-top: 20px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-feedback.sending {
    display: block;
    background-color: #FFF3CD;
    color: #856404;
    border: 1px solid #FFEEBA;
}

.form-feedback.success {
    display: block;
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-feedback.error {
    display: block;
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.footer-links {
    text-align: center;
    margin-top: 20px;
}

.footer-links .social-icon {
    display: inline-block;
    margin-top: 10px;
    color: #C13584; /* cor do instagram */
    transition: color 0.3s, transform 0.3s;
}

.footer-links .social-icon:hover {
    color: #e1306c;
    transform: scale(1.1);
}
.privacy-link {
    margin-top: 15px;
    text-align: center;
  }
  
  .privacy-link a {
    font-size: 14px;
    color: #555;
    text-decoration: underline;
    cursor: pointer;
  }
  
  .privacy-link a:hover {
    color: #000;
  }
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    line-height: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .whatsapp-float {
      width: 54px;
      height: 54px;
      font-size: 24px;
      line-height: 54px;
      bottom: 15px;
      right: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 22px;
      line-height: 50px;
      bottom: 10px;
      right: 10px;
    }
  }
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      transform: scale(1.1);
      box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
  
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    line-height: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    
    /* Aqui aplica o pulsar */
    animation: pulse 2s infinite;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .whatsapp-float {
      width: 54px;
      height: 54px;
      font-size: 24px;
      line-height: 54px;
      bottom: 15px;
      right: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 22px;
      line-height: 50px;
      bottom: 10px;
      right: 10px;
    }
  }
  
  .saiba-mais-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.saiba-mais-btn {
    padding: 15px 30px;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    width: 200px;
    display: inline-block;
    transition: background-color 0.3s;
}

.saiba-mais-btn:hover {
    background-color: #256d27;
}