* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 50px;
    height: 105px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    margin-top: 5px;
}

.logo span {
    font-size: 26px;
    font-weight: 600;
}

.logo span .grande {
    color: #1a2331;
}

.logo span .destaque {
    color: #e96598;
}

.menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.menu a {
    color: #1a2331;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #e96598;
  transform: translateX(-50%);
  transition: 0.3s;
}

.menu a:hover::after {
  width: 50%;
}

.menu a:hover {
  color: #e96598;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  gap: 170px;
  background-color: #fff;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 84px;
  line-height: 1.1;
  font-weight: 700;
  color: #1a1a1a;
}

.hero h1 span {
  color: rgb(233, 101, 152);
}

.hero p {
  font-size: 24px;
  margin: 10px 0 40px;
  padding-left: 5px;
  color: #555;
}

.primary {
  background-color: rgb(233, 101, 152);
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 24px;
  text-decoration: none !important;
  transition: 0.3s ease;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 101, 152, 0.3);
}

.hero-image img {
  width: 580px !important;
  border-radius: 20px;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.6);
}

.problem {
  padding: 100px 70px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.tag {
  display: inline-block;
  color: rgb(233, 101, 152);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.problem h2 {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  max-width: 100%;
}

.problem .description {
  font-size: 20px;
  color: #1a2331;
  line-height: 1.4;
  max-width: 620px;
}

.problem-cards {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}

.card {
  flex: 1;
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  cursor: pointer;
}

.icon {
  width: 50px;
  height: 50px;
  background-color: #e96598;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.card h3 {
  font-size: 28px;
  color: #1a2331;
  margin-bottom: 14px;
}

.card p {
  font-size: 18px;
  color: #1a2331;
  line-height: 1.4;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(233, 101, 152, 0.6);
}

.card:hover .icon {
  color: #fff;
  transform: scale(1.1);
}

.solution {
  background-color: rgb(3, 30, 20);
  padding: 100px 70px;
  color: #fff;
}

.solution-container {
  max-width: 1200px;
  margin: 0 auto;
}

.solution-tag {
  color: rgb(233, 101, 152);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.solution-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin: 10px 0 20px;
}

.solution-description {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.4;
  color: #bababa;
  margin-bottom: 50px;
}

.solution-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.solution-card {
  flex: 1;
  min-width: 300px;
  padding: 50px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.solution-card h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 14px;
}

.solution-card p {
  font-size: 18px;
  color: #bababa;
  line-height: 1.3;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(233, 101, 152, 0.6);
}

.solution-icon {
  font-size: 24px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.solution-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.solution-card:hover .solution-icon {
  transform: scale(1.01);
}

.solution-cta {
  margin-top: 100px;
  padding: 70px 60px;
  border-radius: 30px;
  text-align: center;
  background: #e96598;
}

.cta-title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
}

.cta-text {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: #ffe3ee;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.solution-btn-primary {
  background: #fff;
  color: #e96598;
  border-radius: 30px;
  padding: 18px 48px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none !important;
  transition: 0.3s;
}

.solution-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.solution-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 18px;
  border-radius: 30px;
  text-decoration: none !important;
  padding: 18px 48px;
  cursor: pointer;
  transition: 0.3s;
}

.solution-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.partnership {
    background: rgb(3, 30, 20);
    padding: 60px 80px;
    overflow: hidden;
}

.partnership-text .partnership-tag {
    color: rgb(233, 101, 152);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.partnership-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.partnership-text {
    max-width: 600px;
}

.partnership-text h2 span {
    color: rgb(233, 101, 152);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
}

.partnership-text h2 {
    color: white;
    font-size: 48px;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    max-width: 600px;
}

.partnership-text p {
    color: rgba(255,255,255,0.75);
    font-size: 20px;
    line-height: 1.5;
}

.partnership-logo img {
    width: 600px;
}

.contact {
    padding: 120px 80px;
    background-color: white;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.contact-left {
    flex: 1;
}

.tag {
    color: rgb(233, 101, 152);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5;
}

.contact-left h2 {
    font-size: 52px;
    color: #1a1a1a;
    margin-top: 10px;
}

.contact-desc {
    margin-top: 25px;
    font-size: 22px;
    line-height: 1.4;
    color: #666;
    max-width: 550px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.contact-cards a {
    text-decoration: none;
}

.contact-card {
    width: 100%;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(255, 79, 163, 0.15);
}

.contact-card .icon {
    transform: translateY(+10px);
}

.contact-card .icon img {
    width: 58px;
}

.contact-card h3 {
    font-size: 24px;
    color: #1a1a1a;
}

.contact-card span {
    color: #777;
}


.feedback-card {
    flex: 1;
    padding: 45px;
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.08);
    background-color: white;
    box-shadow: 0 20px 50px rgba(255, 79, 163, 0.08);
}

.feedback-tag {
    color: rgb(233, 101, 152);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.feedback-card h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 35px;
}

.feedback-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback-card input,.feedback-card select,.feedback-card textarea {
    width: 100%;
    padding: 18px 22px;
    border-radius: 16px;
    background-color: #f9f9f9;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 17px;
    outline: none;
    transition: 0.3s;
}

.feedback-card textarea {
    resize: none;
    height: 160px;
}

.feedback-card input:focus,.feedback-card select:focus,.feedback-card textarea:focus {
    border-color: rgb(233, 101, 152);
    box-shadow: 0 0 0 4px rgba(255, 79, 163, 0.1);
}

.feedback-card button {
    margin-top: 10px;
    height: 60px;
    border: none;
    border-radius: 999px;
    background-color: rgb(233, 101, 152);
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.feedback-card button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 79, 163, 0.25);
}

.footer {
    background-color: rgb(3, 30, 20);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 10px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 100px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.footer-logo .pink {
    color: #e96598;
}

.footer-text {
    color: #9a9a9a;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    text-decoration: none;
    color: #d1d1d1;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #e96598;
}

@media (max-width: 1200px) {

    .hero {
        gap: 40px;
        padding: 60px 30px;
    }

    .hero h1 {
        font-size: 68px;
    }

    .hero p {
        font-size: 24px;
    }

    .hero-image img {
        width: 100%;
        max-width: 450px;
    }

    .primary {
        font-size: 22px;
    }

}

@media (max-width: 1024px) {

    .navbar {
        padding: 0 30px;
    }

    .menu {
        gap: 25px;
    }

    .menu a {
        font-size: 17px;
    }

    .hero {
        gap: 65px;
        padding: 70px 40px;
        align-items: center;
    }

    .hero-content {
        max-width: 420px;
    }

    .hero h1 {
        font-size: 60px;
    }

    .hero p {
        font-size: 22px;
    }

    .hero .primary {
        font-size: 20px;
    }

    .hero-image img {
        width: 420px;
    }

    .problem, .solution, .partnership, .contact {
        padding: 80px 40px;
    }

    .problem h2, .solution-title, .partnership-text h2, .contact-left h2 {
        font-size: 42px;
    }

    .problem-cards {
        flex-direction: column;
    }

    .solution-cards {
        display: grid;
        grid-template-columns: 1fr;
    }

    .solution-cta {
        padding: 60px 40px;
    }

    .partnership-content {
        flex-direction: column;
        text-align: center;
    }

    .partnership-logo img {
        width: 380px;
    }

    .contact-wrapper {
        flex-direction: column;
    }

}

@media (max-width: 900px) {

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 60px 30px;
    }

    .hero-content {
        order: 2;
        max-width: 100%;
    }

    .hero-image {
        order: 1;
    }

    .hero-image img {
        width: 100%;
        max-width: 500px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero p {
        font-size: 22px;
        padding-left: 0;
    }

    .hero .primary {
        font-size: 20px;
    }

}

@media (max-width: 768px) {

    .navbar {
        height: auto;
        padding: 18px 20px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .logo img {
        height: 70px;
    }

    .logo span {
        font-size: 22px;
    }

    .menu {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 50px 20px;
        gap: 30px;
        text-align: center;
    }

    .hero-image {
        order: 1;
    }

    .hero-content {
        order: 2;
    }

    .hero-image img {
        width: 100%;
        max-width: 420px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero p {
        font-size: 21px;
        padding-left: 0;
    }

    .primary {
        width: 100%;
        font-size: 20px;
        padding: 16px;
    }

    .problem, .solution, .partnership, .contact {
        padding: 70px 20px;
    }

    .problem h2, .solution-title, .partnership-text h2, .contact-left h2, .cta-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .problem .description, .solution-description, .partnership-text p, .contact-desc, .cta-text {
        font-size: 17px;
    }

    .problem-cards, .solution-cards, .cta-buttons, .contact-wrapper {
        flex-direction: column;
    }

    .card, .solution-card, .feedback-card {
        padding: 30px;
    }

    .solution-cta {
        padding: 45px 25px;
    }

    .solution-btn-primary, .solution-btn-secondary {
        width: 100%;
    }

    .partnership-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .partnership-logo img {
        width: 100%;
        max-width: 300px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-card h3 {
        font-size: 20px;
    }

    .footer {
        padding: 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media (max-width: 480px) {

    .hero {
        padding: 40px 20px;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
    }

    .hero-content {
        max-width: 100%;
    }

}