/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Tomorrow Regular';
  src: url('../fonts/tomorrow/Tomorrow-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Tomorrow Bold';
  src: url('../fonts/tomorrow/Tomorrow-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* @font-face {
  font-family: 'Agrandir';
  src: url('../fonts/agrandir/Agrandir-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
} */

@font-face {
  font-family: 'Agrandir GrandLight';
  src: url('../fonts/agrandir/Agrandir-GrandLight.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
    --primary-color: #0033a0;
    --secondary-color: #6a4c93;
    --light-bg: #e9f0f0;
    --dark-bg: #333;
    --text-color: #333;
    --light-text: #fff;
    --gradient-bg: linear-gradient(135deg, #4169E1 0%, #6a4c93 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 6rem;
}

h2 {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 20px;
}

.semibold {
    font-weight: 600;
  }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 1px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Tomorrow Regular';
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--light-bg);
}

section {
    padding: 80px 0;
}

/* Hero Section */
.hero {
    background: var(--gradient-bg);
    color: var(--light-text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* .hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/wave-pattern.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.2;
} */

.hero .logo{
    align-items: baseline;
}

.logo-container {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.logo-container img {
  height: 25px; /* ajuste conforme necessário */
  width: auto;
  margin-left: 20px;
  margin-top: 20px;
}

.hero-content {
    /* max-width: 600px; */
    display: flex;
    /* text-align: right; */
    align-items: center;
    /* position: relative; */
    z-index: 1;
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 100px; */
    /* flex-direction: row; */
    /* justify-content: space-between; */
}

.hero-about {
    /* max-width: 600px;
    margin-left: 100px;
    margin-right: 100px; */
    text-align: right;
}

.hero-about span {
  display: block;
  margin-bottom: 30px;
}

.title-call {
    width: 500px;
    font-family: 'Agrandir GrandLight', sans-serif;
    font-size: 4.0rem;
    align-items: center;
}

.highlight {
  display: inline-block;
  text-align: left;
}

.hero-icon {
    width: 500px;
    height: 500px;
    margin: 0 auto 20px;
}

.hero-icon img {
    width: 100%;
    height: 100%;
}

.hero-content h1 {
    margin-bottom: 30px;
}

/* About Section */
.about {
    background-color: var(--light-bg);
    position: relative;
}

.about h2 {
    font-family: 'Agrandir GrandLight';
}

.about p {
    font-family: 'Tomorrow Regular';
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    background-color: #fff;
    padding-bottom: 100px;
}

.services h2 {
    font-family: 'Agrandir GrandLight';
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 3px;
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3, .service-card p {
    padding: 0 20px;

}

.service-card h3 {
    margin-top: 20px;
    font-family: 'Tomorrow Bold';
}

.service-card p {
    padding-bottom: 20px;
    text-align: center;
    font-family: 'Tomorrow Regular';
}

/* Features Section */
.features {
    /* background-color: #dde4f5; */
    background-color: var(--light-bg);
    padding-bottom: 100px;
}

.features h2 {
    font-family: 'Agrandir GrandLight';
}

.features h3 {
    font-family: 'Tomorrow Bold';
}

.features p {
    
    font-family: 'Tomorrow Regular';
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-icon {
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

/* Quote Section */
.quote {
    background: var(--gradient-bg);
    color: var(--light-text);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/wave-pattern.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.2;
}

.quote-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.quote h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    font-family: 'Agrandir GrandLight';
}

.quote h3 {
    /* color: var(--light-bq); */
    color: var(--light-text);
    font-weight: lighter;
    font-family: 'Tomorrow Regular';
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
}

.testimonial-image {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials h2 {
    font-family: 'Agrandir GrandLight';
}

.testimonials p {
    font-family: 'Tomorrow Regular';
}

.testimonial-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 0;
    font-family: 'Tomorrow Bold';
}

/* Contact Section */
.contact {
    background: var(--light-bg);
    color: var(--light-text);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/wave-pattern.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.2;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact h2 {
    color: var(--primary-color);
    font-family: 'Agrandir GrandLight';
}

.contact p {
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto 30px;
    font-family: 'Tomorrow Regular';
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 50px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Tomorrow Bold';
}

.contact-btn {
    display: inline-block;
    background-color: var(--light-bg);
    border-width: 2px;
    border-radius: 1px;
    border-style: solid;
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Tomorrow Regular';
}

.contact-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.contact-social {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
}

.contact-social a {
    color: var(--primary-color);
    transition: opacity 0.3s ease;
}

.contact-social a:hover {
    opacity: 0.8;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  position: relative;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

/* .modal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  position: relative;
} */

/* Força o estilo do botão HubSpot */
#hubspotForm input[type="submit"],
#hubspotForm .hs-button,
.hs-button.primary.large {
  background-color: #675cd6 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 12px 24px !important;
  font-family: 'Tomorrow Regular', sans-serif !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  transition: background-color 0.3s ease !important;
}

#hubspotForm input[type="submit"]:hover,
#hubspotForm .hs-button:hover,
.hs-button.primary.large:hover {
  background-color: #574ac6 !important;
}

#formModal .hs-button,
#formModal input.hs-button.primary.large {
  background-color: #675cd6 !important;
  border-color: #675cd6 !important;
  color: #fff !important;
  font-family: 'Tomorrow Bold', sans-serif !important;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-content,
.close-btn {
  font-family: 'Tomorrow Regular', sans-serif;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .about .container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-content {
        align-content: center;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 100px;
        margin-top: 100px;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 500px;
    }

    .hero-about {
        /* max-width: 100px; */
        display: flex;
        flex-direction: column;
        max-width: 100%;
        margin-left: 0;
        text-align: right;
        align-items: center;
    }

    #hero-btn {
        /* margin-left: 25px; */
        width: 150px;
        padding: 10px 25px;
    }

    .hero-icon {
        display: none;
    }

    .title-call {
        max-width: 300px;
        font-size: 2rem;
        /* margin-left: 0;
        margin-right: 0px; */
        margin-bottom: 30px;
        /* align-items: center; */
        text-align: center;
        /* text-align: start;
        text-align: right; */
    }
    
    .logo {
        /* position: fixed; */
        top: 0;
        left: 0;
        /* align-content: center; */
    }
    
    .contact-info {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}
