:root {
--primary-color: #0c1b33;
--secondary-color: #1a365d;
--accent-color: #25d366;
/* WhatsApp Green */
--bg-color: #f8fafc;
/* Off-white */
--bg-card: #ffffff;
--text-dark: #1e293b;
--text-light: #64748b;
--text-white: #ffffff;
--border-color: #e2e8f0;

--font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

#produtos {
    scroll-margin-top: 120px;
}

/* Untitles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color)
}

.text-accent {
    color: var(--accent-color);
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3 ease;
    cursor: pointer;
    border: none;
    gap: 8px;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 27, 51, 0.2);
}

.btn-whatsapp {
    background-color: var(--accent-color);
    color: var(--text-white);
    border-radius: 50px;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    width: 100%;
}

.hero-slide {
    position: relative;
    display: flex !important;
    align-items: center;
    height: 100%;
    padding: 80px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Swiper overrides */
.swiper-pagination {
    z-index: 20 !important;
    bottom: 80px !important;
}

.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    z-index: 20 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

/* Contact Form (Floating) */
.contact-form-section {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding: 0 20px;
}

.form-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(12, 27, 51, 0,08);
    border: 1px solid rgba(255, 255, 255, 0.5)
}

.form-card h2 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 1.75rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(12, 27, 51, 0.1);
    background-color: var(--bg-card);
}

/* Benefits Bar */
.benefits {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 40px 0;
  margin-top: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  text-align: center;
}

.benefit-item i {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #a0aec0;
}

.benefit-item h3 {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Products Grid */
.products {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px
}

.product-card {
    background: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3 ease;
    border: 1px solid var(--border-color)
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(12, 27, 51, 0.1);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.logo-cury {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 8px;
    width: 50px;
    z-index: 2;
}

.product-content {
    padding: 24px;
}

.product-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.product-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.feature i {
    color: var(--primary-color);
}

.income-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 24px;
    background: var(--bg-color);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

/* Consult Profile Section */
.consultant-profile {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 80px 0;
}

.profile-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.profile-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.profile-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.profile-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cbd5e1;
}

/* Secondary Form */
.secondary-form-section {
    background-color: #0f172a;
    padding: 80px 0;
    color: var(--text-white);
}

.secondary-form-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.secondary-text {
    flex: 1;
}

.secondary-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.secondary-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.secondary-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.secondary-form .form-control::placeholder {
    color: #94a3b8;
}

.secondary-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--text-white);
}

/* Footer */
.footer {
    background-color: var(--bg-card);
    padding: 40px 0;
    border-top: 1px solid var(--border-color)
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-logos img {
    height: 40px;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.footer-logos img:hover {
    opacity: 1;
    filter: grayscale(0%)
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .secondary-form-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .profile-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .product-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .product-features {
        grid-template-columns: 1fr;
    }
}