/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #dc2626;
    --light-red: #fef2f2;
    --text-dark: #171717;
    --text-light: #737373;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 0.2rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo-img {
    width: 60px;
    height: 75px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: 0;
}

.logo-text span {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}


.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    padding: 0;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-social {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.nav-social .social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-300);
}

.nav-social .social-link:hover {
    color: var(--white);
    border-color: var(--primary-red);
}

.nav-social .social-link:nth-child(1):hover {
    background: #1877f2;
    border-color: #1877f2;
}

.nav-social .social-link:nth-child(2):hover {
    background: #25d366;
    border-color: #25d366;
}

.nav-social .social-link i {
    font-size: 1rem;
}

.budget-btn {
    background: var(--primary-red);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.budget-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 900px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
    position: relative;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-btn.prev {
    left: 2rem;
}

.carousel-btn.next {
    right: 2rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-text h2 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: #b91c1c;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Services Overview */
.services-overview {
    padding: 4rem 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.service-card h1 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.service-buttons .btn-primary,
.service-buttons .btn-secondary {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.service-card h2 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.service-card h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 2rem 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.feature-item:hover {
    transform: translateY(-10px);
}

/* Gradiente Vermelho Suave - Card 1 */
.feature-item:nth-child(1) {
    background: linear-gradient(135deg, #ffebee 0%, #fff5f5 50%, #ffffff 100%);
}

/* Gradiente Azul Suave - Card 2 */
.feature-item:nth-child(2) {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 50%, #ffffff 100%);
}

/* Gradiente Amarelo Suave - Card 3 */
.feature-item:nth-child(3) {
    background: linear-gradient(135deg, #fffde7 0%, #fffef5 50%, #ffffff 100%);
}

/* Gradiente Rosa/Vinho Suave - Card 4 */
.feature-item:nth-child(4) {
    background: linear-gradient(135deg, #fce4ec 0%, #fff0f5 50%, #ffffff 100%);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-number {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Gradiente Vermelho - Card 1 */
.feature-item:nth-child(1) .feature-number {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 50%, #e57373 100%);
}

/* Gradiente Azul - Card 2 */
.feature-item:nth-child(2) .feature-number {
    background: linear-gradient(135deg, #bbdefb 0%, #90caf9 50%, #64b5f6 100%);
}

/* Gradiente Amarelo - Card 3 */
.feature-item:nth-child(3) .feature-number {
    background: linear-gradient(135deg, #fff9c4 0%, #fff176 50%, #ffeb3b 100%);
}

/* Gradiente Vinho - Card 4 */
.feature-item:nth-child(4) .feature-number {
    background: linear-gradient(135deg, #f8bbd0 0%, #f06292 50%, #ec407a 100%);
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    max-width: 280px;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: var(--white);
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-red);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.about-services {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    align-items: stretch;
}

.about-service {
    text-align: left;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 15px;
    flex: 1;
    min-width: 0;
}

.about-service h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-service p {
    color: var(--text-light);
    line-height: 1.6;
}

.explore-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
    padding: 3rem 0;
    background: linear-gradient(180deg, #e3f2fd 0%, #f5f9ff 50%, #ffffff 100%);
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-red);
}

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

.service-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-item.highlighted {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.3);
    border: 3px solid var(--primary-red);
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--gray-50);
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.about-content {
    max-width: 1150px;
    margin: 0 auto;
}

.about-main {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0;
    text-align: justify;
}

.about-logo {
    flex: 0 0 250px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo img {
    width: auto;
    height: 270px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.explore-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.explore-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Mission, Vision, Values */
.mission-vision-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.mvv-card {
    background: var(--white);
    padding: 1.8rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: center;
    hyphens: auto;
    position: relative;
    overflow: hidden;
}

/* Gradiente Azul - Objectivo */
.mvv-card:nth-child(1) {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    border-color: #90caf9;
}

.mvv-card:nth-child(1) .mvv-icon {
    background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
}

.mvv-card:nth-child(1) h3 {
    color: #1565c0;
}

.mvv-card:nth-child(1):hover {
    border-color: #42a5f5;
}

/* Gradiente Vermelho - Visão */
.mvv-card:nth-child(2) {
    background: linear-gradient(135deg, #ffebee 0%, #ffffff 100%);
    border-color: #ef5350;
}

.mvv-card:nth-child(2) .mvv-icon {
    background: linear-gradient(135deg, #ef5350 0%, #d32f2f 100%);
}

.mvv-card:nth-child(2) h3 {
    color: #c62828;
}

.mvv-card:nth-child(2):hover {
    border-color: #ef5350;
}

/* Gradiente Amarelo - Missão */
.mvv-card:nth-child(3) {
    background: linear-gradient(135deg, #fff9c4 0%, #ffffff 100%);
    border-color: #ffd54f;
}

.mvv-card:nth-child(3) .mvv-icon {
    background: linear-gradient(135deg, #ffd54f 0%, #fbc02d 100%);
}

.mvv-card:nth-child(3) h3 {
    color: #f57f17;
}

.mvv-card:nth-child(3):hover {
    border-color: #ffd54f;
}

/* Gradiente Laranja - Valores */
.mvv-card:nth-child(4) {
    background: linear-gradient(135deg, #ffe0b2 0%, #ffffff 100%);
    border-color: #ffb74d;
}

.mvv-card:nth-child(4) .mvv-icon {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.mvv-card:nth-child(4) h3 {
    color: #e65100;
}

.mvv-card:nth-child(4):hover {
    border-color: #ff9800;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.mvv-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1);
}

.mvv-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    text-align: justify;
    text-align-last: left;
    font-size: 0.9rem;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.values-list {
    list-style: none;
    padding: 0 1rem;
    text-align: left;
    margin-top: 0.8rem;
}

.values-list li {
    color: var(--text-light);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.values-list li:before {
    content: "✓";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .mission-vision-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-main {
        flex-direction: column;
        text-align: center;
    }
    
    .about-logo {
        flex: none;
        order: -1;
        margin-bottom: 1.5rem;
    }
    
    .about-logo img {
        height: 150px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    .mission-vision-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile Extra Small - Logo ainda menor e mais responsivo */
@media (max-width: 480px) {
    .about-logo {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .about-logo img {
        height: 120px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: linear-gradient(180deg, #e3f2fd 0%, #f5f9ff 50%, #ffffff 100%);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-dark);
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-list li {
    color: var(--text-light);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.service-list li:before {
    content: "•";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-buttons {
    display: flex;
    justify-content: center;
}

.service-buttons .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
}

.services-center-btn {
    text-align: center;
    margin-top: 3rem;
}

.services-center-btn .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    display: inline-block;
}

/* Why Us Section */
.why-us {
    padding: 3rem 0;
    background: var(--white);
}

.why-us h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.why-us > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.why-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Budget Section */
.budget {
    padding: 3rem 0;
    background: var(--gradient-red);
    color: var(--white);
    text-align: center;
}

.budget h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.budget > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.budget-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: left;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-red);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--gray-50);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.contact-info h3,
.contact-services h3,
.contact-links h3,
.newsletter h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-services ul,
.contact-links ul {
    list-style: none;
}

.contact-services li,
.contact-links li {
    margin-bottom: 0.5rem;
}

.contact-services li {
    color: var(--text-light);
}

.contact-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--primary-red);
}

.newsletter p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--gray-200);
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-red);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Why Us Section */
.why-us {
    padding: 4rem 0;
    background: var(--gray-50);
}

.why-us h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.why-us p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.why-item:hover .why-icon {
    background: #b91c1c;
    transform: scale(1.1);
}

.why-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-logo p {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.footer-section p {
    margin: 0.5rem 0;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-red);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    color: var(--primary-red);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-600);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .features {
        padding: 1.5rem 0;
    }
    
    .about {
        padding: 2rem 0;
    }
    
    .services {
        padding: 2rem 0;
    }
    
    .why-us {
        padding: 2rem 0;
    }
    
    .budget {
        padding: 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        align-items: center;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-social {
        display: none;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-carousel {
        height: 70vh;
        max-height: 700px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }

    .carousel-nav {
        padding: 0 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-indicators {
        bottom: 0.5rem;
    }
    
    .carousel-indicators .indicator {
        width: 8px;
        height: 8px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 0.75rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .service-buttons .btn-primary,
    .service-buttons .btn-secondary {
        flex: none;
        width: 100%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-services {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-service {
        padding: 1.5rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 1rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-carousel {
        height: 70vh;
        max-height: 700px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .service-card h1 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .features {
        padding: 1rem 0;
    }
    
    .about {
        padding: 1.5rem 0;
    }
    
    .services {
        padding: 1.5rem 0;
    }
    
    .why-us {
        padding: 1.5rem 0;
    }
    
    .budget {
        padding: 1.5rem 0;
    }

    .hero-carousel {
        height: 65vh;
        max-height: 650px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card h1 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .service-buttons {
        gap: 0.5rem;
    }
    
    .service-buttons .btn-primary,
    .service-buttons .btn-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .about-service {
        padding: 1rem;
    }
    
    .about-service h3 {
        font-size: 1.1rem;
    }
    
    .about-service p {
        font-size: 0.85rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-indicators .indicator {
        width: 6px;
        height: 6px;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-text span {
        font-size: 0.75rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.whatsapp-float i {
    color: white;
    font-size: 24px;
}

/* Scroll Buttons (Setas para cima e baixo) */
.scroll-buttons {
    position: fixed;
    bottom: 20px;
    right: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-btn:hover {
    background: #b91c1c;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.scroll-btn i {
    color: white;
    font-size: 22px;
}

/* Responsive WhatsApp & Scroll */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    .scroll-buttons {
        right: 75px;
        bottom: 15px;
        gap: 8px;
    }
    
    .scroll-btn {
        width: 45px;
        height: 45px;
    }
    
    .scroll-btn i {
        font-size: 20px;
    }
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}