:root {
    --primary-color: #1D064A;      /* Roxo escuro - backgrounds escuros */
    --secondary-color: #FFF536;    /* Amarelo vivo - header, footer, destaques */
    --accent-color: #7B61FF;       /* Lavanda - elementos interativos */
    --light-bg: #FFF8B8;          /* Amarelo pálido - backgrounds claros */
    --highlight-color: #FF9900;    /* Laranja - calls-to-action */
    --white: #FFFFFF;              /* Branco puro */
    --dark-text: #1D064A;         /* Texto em fundos claros */
    --light-text: #FFFFFF;        /* Texto em fundos escuros */
    --dark-purple: #1D064A;
    --deeper-purple: #22174D;
    --bright-yellow: #FFF30A;
    --lighter-yellow: #FAFFBD;
    --black: #000000;
    --section1-title: #22174D;    /* Títulos da seção tipo 1 */
    --section1-bg: #FFF8B8;       /* Background da seção tipo 1 */
    --section1-text: #000000;     /* Texto da seção tipo 1 */
    --section1-card: #FAFFBD;     /* Cards da seção tipo 1 */
    
    --section2-title: #FFF30A;    /* Títulos da seção tipo 2 */
    --section2-bg: #1D064A;       /* Background da seção tipo 2 */
    --section2-card: #FFF8B8;     /* Cards da seção tipo 2 */
    --section2-text: #FFFFFF;     /* Texto da seção tipo 2 */
    --font-primary: 'Poppins', sans-serif;
}

/* Reset e base */
body {
    background: var(--white);
    color: var (--dark-text);
    font-family: var(--font-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden; /* Previne scroll horizontal */
    width: 100%;
}

/* Header e Footer */
.header,
.footer {
    background: var(--secondary-color);
    color: var(--dark-text);
}

.main-nav a {
    color: var (--dark-text);
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* Seções com fundo escuro */
.section.bg-dark {
    background: var(--primary-color);
    color: var(--light-text);
}

/* Cards e elementos com fundo claro */
.service-card,
.contact-card,
.quote-form,
.text-content {
    background: var(--white);
    color: var(--dark-text);
}

/* Botões e elementos de destaque */
.btn-primary,
.btn-contact {
    background: var(--highlight-color);
    color: var(--white);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

/* Elementos de destaque */
.highlight-text {
    color: var(--accent-color);
}

.stat-number {
    color: var(--highlight-color);
}

.section-divider {
    background: var(--secondary-color);
}

/* Backgrounds alternativos */
.bg-light {
    background: var(--light-bg);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.5rem;
    min-width: 200px;
    height: 100%;
}

.company-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.5px;
    line-height: 1;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* Footer Styles */
.footer {
    padding: 1rem 0;
}

.footer .container {
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    width: 100%;
    position: relative;
    margin-top: 100px;
    line-height: 0;
    display: block;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.bg-light {
    background: var(--light-bg);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px; /* Reduzido de 1400px para melhor ajuste de 2 colunas */
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.services-grid.has-active {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.services-grid.has-active .service-card:not(.active) {
    transform: scale(0.95);
    opacity: 0.7;
}

.service-card {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.service-features span {
    background: rgba(var(--accent-color-rgb), 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.service-description {
    text-align: left;
    line-height: 1.8;
    margin: 2rem 0;
}

.service-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-contact {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.btn-contact:hover {
    transform: translateY(-3px);
    background: var(--accent-color);
    box-shadow: 0 8px 20px rgba(123, 97, 255, 0.4);
}

.service-header {
    padding: 2rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-header i {
    font-size: 3rem;
    color: var(--primary-color); /* Change icon color to purple */
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-header h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    border-radius: 2px;
}

.service-expand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 0;
    padding: 0.5rem;
    transition: var(--transition);
}

.service-content {
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 2rem;
    transition: all 0.5s ease;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-content ul {
    list-style: none;
    margin: 1rem 0;
}

.service-content li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-content li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.service-card.active {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
    min-height: 450px;
}

.service-card.active .service-expand i {
    transform: rotate(180deg);
}

.service-card.active .service-content {
    height: auto;
    opacity: 1;
    padding: 1rem 2rem 2rem;
    opacity: 1;
    max-height: 500px;
    padding: 2rem;
}

.service-card.active .service-header i {
    transform: translateY(-5px);
}

.service-card:not(.active) {
    cursor: pointer;
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Remover estes estilos */
/* .map {
    height: 400px;
    border-radius: 10px;
} */

/* Services Section */
.service-card {
    position: relative;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-link {
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}
/* Gallery Section */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Quote Form */
.quote-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var (--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--secondary-color-rgb), 0.1);
}

.dimensions-group small {
    display: block;
    color: #666;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.dimensions-inputs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.btn-submit {
    width: 100%;
    margin-top: 2rem;
    padding: 1.2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(29, 6, 74, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    background: var(--deeper-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 6, 74, 0.3);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit .spinner {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.gdpr-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
}

.gdpr-consent input[type="checkbox"] {
    margin-top: 0.3rem;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card a,
.contact-card p {
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    max-width: 100%; /* Garante que o email não ultrapasse o container */
    overflow-wrap: break-word; /* Permite quebra de palavras */
    word-wrap: break-word; /* Suporte para browsers mais antigos */
    hyphens: auto; /* Adiciona hifenização quando necessário */
    text-align: center;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

.contact-card .fa-whatsapp {
    color: #25D366;
    margin-right: 5px;
}

.contact-card .fa-instagram {
    color: #E1306C;
    margin-right: 5px;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info a {
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var (--secondary-color);
}

/* Quem Somos Section */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    margin: 1rem auto;
    border-radius: 2px;
}

.quem-somos-content {
    gap: 3rem;
    align-items: stretch;
    padding: 1rem 0;
}

.text-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    aspect-ratio: 16/10;
    margin-bottom: 0;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 2rem;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Image Grid */
.image-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    aspect-ratio: 16/9;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.grid-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.grid-image:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography Adjustments */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ...existing code... */

/* Services Banner */
.services-banner {
    width: 100%;
    height: auto;
    aspect-ratio: 1300/300; /* Adjust this ratio to match your image's dimensions */
    background-image: url('../img/4passos.avif');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 2rem 0;
    padding: 0;
}

/* ...existing code... */

.service-preview {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    opacity: 1;
    transition: var(--transition);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.btn-ver-mais {
    background: none;
    border: 2px solid var(--primary-color); /* Change border color to purple */
    color: var(--primary-color); /* Change text color to purple */
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    margin: 1.5rem auto 0;
    margin-top: auto;
    text-transform: uppercase;
}

.btn-ver-mais:hover {
    background: var(--primary-color); /* Change hover background to purple */
    color: var(--white); /* Change hover text color to white for better contrast */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 6, 74, 0.2); /* Adjust shadow color */
}

/* Remove or comment out the icon-related styles */
/* .btn-ver-mais i {
    transition: transform 0.3s ease;
} */

/* ...existing code... */

.service-card.active .service-preview {
    display: none;
}

.service-card.active .btn-ver-mais {
    display: none;
}

.service-content {
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
    padding: 2rem;
}

.service-card.active .service-content {
    display: block;
    opacity: 1;
}

/* ...existing code... */

/* Steps Hero Section */
.steps-hero {
    background: var(--section2-bg); /* Fundo roxo escuro */
    padding: 5rem 0 0; /* Remove bottom padding */
    margin: 0; /* Remove margin to connect with previous section */
    margin-top: -2rem; /* Remove gap between sections */
}

.steps-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.steps-headline {
    padding-right: 2rem;
}

.steps-headline h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--section2-title); /* Título em amarelo */
}

.steps-headline h2 span {
    font-weight: 700;
    color: var(--secondary-color); /* Change from highlight-color (orange) to bright yellow */
}

.steps-list {
    list-style: none;
    text-align: center;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    background: var(--section2-card); /* Cards em amarelo claro */
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    min-width: 50px;
    color: var(--primary-color); /* Change from secondary-color to primary-color */
}

.step-text {
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--primary-color); /* Texto em roxo escuro */
}

/* Adjust services section to connect with steps section */
#servicos {
    padding-bottom: 0; /* Remove bottom padding from services section */
    padding-bottom: 2rem; /* Reduce bottom padding */
}

/* ...existing code... */

/* Carousel Styles */
.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    min-height: 400px;
    max-height: 80vh;
    height: auto;
    aspect-ratio: 16/9;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    text-align: center;
}

/* ...existing code... */

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-button:hover {
    background: var(--white);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-dots {
    display: none; /* Oculta os dots do carrossel */
}

/* ...existing code... */

/* Carousel Styles */
.carousel-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    text-align: center;
}

.carousel-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.carousel-caption p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* ...existing code... */

/* ...existing code... */

/* Carousel Caption Styles */
.carousel-caption {
    background: rgba(29, 6, 74, 0.9); /* Fundo roxo escuro semi-transparente */
}

.carousel-caption h3,
.carousel-caption p {
    color: var(--white); /* Texto em branco para melhor legibilidade */
}

.carousel-caption h3 {
    color: var(--secondary-color); /* Título em amarelo */
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.carousel-caption p {
    color: var(--white) !important; /* Forçar texto branco */
    opacity: 1; /* Aumenta a opacidade para melhor legibilidade */
    font-weight: 500; /* Texto um pouco mais forte */
}

/* ...existing code... */

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ...existing code... */

/* ...existing code... */

.dimension-field {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.dimension-field input {
    text-align: center;
    padding: 0.8rem;
}

.dimension-field small {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

.dimensions-help {
    display: block;
    color: #666;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    text-align: center;
}

/* ...existing code... */

/* ...existing code... */

.mobile-menu {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu span {
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    transition: var(--transition);
}

.mobile-menu span:first-child {
    top: 0;
}

.mobile-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu span:last-child {
    bottom: 0;
}

.mobile-menu.active span:first-child {
    transform: rotate(45deg);
    top: 9px;
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:last-child {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* ...existing code... */

/* Ajustar cores de texto em fundos escuros */
.header .main-nav a,
.footer,
.carousel-caption,
.btn-contact,
.btn-secondary {
    color: var(--text-light);
}

/* Padrão para seções alternadas */
.section {
    padding: 5rem 0;
}

/* Primeira variação de seção */
.section-type-1 {
    background: var(--light-yellow);
}

.section-type-1 .section-header h2 {
    color: var(--deeper-purple);
}

.section-type-1 .text-content,
.section-type-1 p {
    color: var(--black);
}

.section-type-1 .service-card,
.section-type-1 .contact-card,
.section-type-1 .quote-form {
    background: var(--lighter-yellow);
}

/* Segunda variação de seção */
.section-type-2 {
    background: var(--dark-purple);
}

.section-type-2 .section-header h2 {
    color: var(--bright-yellow);
}

.section-type-2 .text-content,
.section-type-2 p {
    color: var(--dark-purple);
}

.section-type-2 .service-card,
.section-type-2 .contact-card,
.section-type-2 .quote-form {
    background: var(--light-yellow);
}

/* Ajustes específicos para manter consistência */
.service-card,
.contact-card,
.text-content {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ...existing code... */

/* Padrão de Seções */
.section-type-1 {
    background: var(--section1-bg);
}

.section-type-1 .section-header h2 {
    color: var(--section1-title);
}

.section-type-1 p,
.section-type-1 .text-content {
    color: var(--section1-text);
}

.section-type-1 .service-card,
.section-type-1 .contact-card,
.section-type-1 .quote-form,
.section-type-1 .text-content {
    background: var(--section1-card);
}

.section-type-2 {
    background: var(--section2-bg);
}

.section-type-2 .section-header h2 {
    color: var(--section2-title);
}

.section-type-2 p,
.section-type-2 .service-preview,
.section-type-2 .service-description {
    color: var(--section2-text);
}

.section-type-2 .service-card,
.section-type-2 .contact-card,
.section-type-2 .quote-form,
.section-type-2 .text-content {
    background: var(--section2-card);
}

/* Ajustes específicos para garantir legibilidade */
.service-card h3,
.contact-card h3 {
    color: var(--section1-title);
}

.stat-label {
    color: var(--section1-text);
}

/* ...existing code... */

/* Typography */
h1, h2, h3, h4, h5, h6,
.company-name,
.main-nav a,
.btn-contact,
.btn-secondary,
.btn-ver-mais,
.service-header h3,
.step-text,
.stat-number,
.stat-label,
.section-subtitle,
.form-group label,
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-primary);
}

/* ...existing code... */

/* Ajustes específicos para seção Quem Somos */
.quem-somos-content .btn-secondary {
    background: var(--highlight-color);
    color: var(--white);
}

.quem-somos-content .btn-secondary:hover {
    background: var(--accent-color);
    box-shadow: 0 6px 20px rgba(123, 97, 255, 0.4);
}

.stat-item {
    background: var(--section1-card);
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-item i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--section1-title);
    font-weight: 600;
}

/* ...existing code... */

/* Ajustes para os cards de serviços */
.section-type-2 .service-card {
    background: var(--section2-card);
}

.section-type-2 .service-header h3,
.section-type-2 .service-preview,
.section-type-2 .service-description,
.section-type-2 .service-content li {
    color: var(--primary-color); /* Cor roxa escura para melhor legibilidade */
}

.section-type-2 .service-features span {
    background: var(--light-bg);
    color: var(--primary-color);
}

.service-card .btn-contact {
    color: var(--white); /* Garante que o texto do botão seja sempre branco */
    background: var(--primary-color); /* Change button background to purple */
    box-shadow: 0 5px 15px rgba(29, 6, 74, 0.2); /* Adjust shadow color */
}

.service-card .btn-contact:hover {
    background: var(--deeper-purple); /* Change hover state to darker purple */
    box-shadow: 0 8px 20px rgba(29, 6, 74, 0.3);
}

/* ...existing code... */

/* ...existing code... */

.quem-somos-content .text-content {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-item {
    background: var(--section1-card);
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.quem-somos-content .btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.quem-somos-content .btn-secondary:hover {
    background: var(--deeper-purple);
    box-shadow: 0 6px 20px rgba(29, 6, 74, 0.3);
}

/* ...existing code... */

/* Contact Section Cards */
.contact-info {
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 6, 74, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(29, 6, 74, 0.15);
}

.contact-card i {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background: var(--section1-card);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.contact-card a,
.contact-card p {
    color: var(--dark-text);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    max-width: 100%; /* Garante que o email não ultrapasse o container */
    overflow-wrap: break-word; /* Permite quebra de palavras */
    word-wrap: break-word; /* Suporte para browsers mais antigos */
    hyphens: auto; /* Adiciona hifenização quando necessário */
    text-align: center;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Keep social media icons original colors but adjust size */
.contact-card .fa-whatsapp,
.contact-card .fa-instagram {
    background: none;
    width: auto;
    height: auto;
    display: inline;
    margin: 0 5px 0 0;
    font-size: 1.2rem;
}

/* ...existing code... */

/* ...existing code... */

.footer {
    padding: 1.5rem 0;
}

.footer-text {
    color: var(--dark-text);
    font-size: 1rem;
    font-weight: 500;
}

/* ...existing code... */

/* Section Dividers Colors */
.section-type-1 .section-divider {
    background: var(--primary-color); /* Purple divider for light sections */
}

.section-type-2 .section-divider {
    background: var(--secondary-color); /* Yellow divider for dark sections */
}

.footer .section-divider {
    background: var(--primary-color);
}

/* ...existing code... */

/* ...existing code... */

/* Quem Somos Page Styles */
.page-quemsomos {
    margin-top: 100px;
}

.historia-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.historia-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.valores-card {
    background: var(--section2-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.valores-card h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.valores-card p,
.valores-card ul {
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.valores-list ul {
    text-align: left;
    list-style: none;
}

.valores-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.valores-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Responsive adjustments for Quem Somos page */
@media (max-width: 768px) {
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .historia-content {
        padding: 1.5rem;
    }

    .valores-card {
        padding: 1.5rem;
    }
}

/* ...existing code... */

/* Section Dividers for Quem Somos Page */
.page-quemsomos .section-type-1 .section-divider {
    background: var(--primary-color); /* Purple divider for light sections */
    width: 120px; /* Make it slightly wider for page titles */
    height: 5px; /* Make it slightly thicker for better visibility */
}

.page-quemsomos .section-type-2 .valores-card .section-divider {
    background: var(--primary-color); /* Purple divider for card titles */
    width: 60px; /* Smaller width for card dividers */
    margin: 0.8rem auto;
}

/* ...existing code... */

/* Page Spacing Fixes */
.page-quemsomos {
    margin-top: 100px; /* Match header height */
}

.page-quemsomos .section-type-1 {
    padding-top: 3rem; /* Reduce top padding */
}

.page-quemsomos .section-type-2 {
    padding: 4rem 0 5rem; /* Adjust padding for better spacing */
}

.page-quemsomos .historia-content {
    margin-top: 2rem; /* Add some space after the title */
}

/* Fix any gap between sections */
.page-quemsomos .section + .section {
    margin-top: 0;
}

/* ...existing code... */

/* Quem Somos Page Styles */
.quemsomos-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(29, 6, 74, 0.8), rgba(29, 6, 74, 0.9)),
                url('../img/hero-quemsomos.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px; /* Reduce from 100px to match header height */
    position: relative;
}

.page-quemsomos {
    margin-top: 0; /* Remove top margin */
}

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.historia-timeline {
    position: relative;
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
    border-left: 3px solid var(--primary-color);
}

.timeline-item:last-child {
    border-left-color: transparent;
}

.year {
    position: absolute;
    left: -1.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 1rem;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.valores-card {
    text-align: center;
    padding: 3rem 2rem;
    transition: transform 0.3s ease;
}

.valores-card:hover {
    transform: translateY(-10px);
}

.valores-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    height: 80px;
    width: 80px;
    background: var(--section1-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.equipe-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.number-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.number-item .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.number-item .label {
    font-size: 1.1rem;
    color: var(--dark-text);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .historia-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .equipe-numbers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quemsomos-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .valores-card {
        padding: 2rem 1.5rem;
    }
}

/* ...existing code... */

.google-map {
    width: 100%;
    height: 450px;
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative; /* Add this */
    z-index: 1; /* Add this */
}

.map-info {
    padding: 0.5rem;
}

.map-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.map-info p {
    margin: 0.2rem 0;
    font-size: 0.9rem;
}