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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--primary-color);
    overflow-x: hidden;
    background-color: #ffffff;
}

:root {
    --primary-color: #262c38;
    --secondary-color: #f7af10;
    --accent-color: #f59107;
    --dark-color: #262c38;
    --light-color: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #3c404c;
    --gray-700: #262c38;
    --gray-800: #1a1f28;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --gradient-primary: linear-gradient(135deg, #262c38 0%, #3c404c 100%);
    --gradient-secondary: linear-gradient(135deg, #f7af10 0%, #f59107 100%);
    --gradient-accent: linear-gradient(135deg, #f59107 0%, #f7af10 100%);
    --shadow-sm: 0 1px 2px 0 rgba(38, 44, 56, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(38, 44, 56, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(38, 44, 56, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(38, 44, 56, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--gray-200);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('imagembannerdaniel.png') center/cover no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.8rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}



/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(247, 175, 16, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 145, 7, 0.05) 0%, transparent 50%);
}

.about-content {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text {
    width: 100%;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-text p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

.about-intro {
    margin-bottom: 2.5rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-bottom: 2.25rem;
}

.mission h3,
.vision h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission h3 i,
.vision h3 i {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.mission p,
.vision p {
    line-height: 1.6;
    color: var(--gray-600);
}

.about-experience {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.about-experience p {
    margin: 0;
    line-height: 1.6;
    color: var(--gray-700);
}

.about-experience strong {
    color: var(--primary-color);
}







/* Services Section */
.services {
    padding: 120px 0;
    background: var(--primary-color);
    color: white;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(247, 175, 16, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(245, 145, 7, 0.1) 0%, transparent 50%);
}

.services .section-title {
    color: white;
}

.services .section-title::after {
    background: var(--gradient-secondary);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    border: 1px solid rgba(247, 175, 16, 0.2);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-description {
    color: #666;
    line-height: 1.6;
}



/* Differentials Section */
.differentials {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    position: relative;
}

.differentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 20%, rgba(247, 175, 16, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 60% 80%, rgba(245, 145, 7, 0.1) 0%, transparent 50%);
}

.differentials .section-title {
    color: white;
}

.differentials .section-title::after {
    background: var(--gradient-secondary);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.differential-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(247, 175, 16, 0.2);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
}

.differential-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.differential-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.differential-icon i {
    font-size: 2rem;
    color: white;
}

.differential-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.differential-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Áreas de Atuação Section */
.areas-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    text-align: center;
}

.areas-section .section-title {
    margin-bottom: 15px;
}

.areas-section .section-subtitle {
    margin-bottom: 50px;
    color: var(--gray-600);
    font-size: 1.1rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.area-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(247, 175, 16, 0.1);
    width: 100%;
    max-width: 350px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(247, 175, 16, 0.2);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.area-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.area-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
    flex-grow: 1;
}

/* Especialistas em Lavanderias Section */
.laundry-experts-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
    color: white;
    text-align: center;
}

.laundry-experts-section .section-title {
    color: white;
    margin-bottom: 15px;
}

.laundry-experts-section .section-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 50px;
}

.laundry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.laundry-image {
    text-align: center;
}

.laundry-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(247, 175, 16, 0.3);
}

.laundry-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

/* New Horizontal Layout Styles */
.laundry-image-full {
    text-align: center;
    margin: 40px 0;
}

.laundry-img-horizontal {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(247, 175, 16, 0.3);
}

.laundry-features-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-top: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-item-horizontal:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-item-horizontal .feature-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.feature-item-horizontal .feature-text h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-item-horizontal .feature-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(247, 175, 16, 0.3);
}

.feature-text h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 1rem;
}

.integration-info {
    margin-top: 60px;
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, rgba(247, 175, 16, 0.15), rgba(247, 175, 16, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(247, 175, 16, 0.3);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.integration-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.integration-text i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Parceria Altus Section */
.altus-partnership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
    text-align: center;
}

.altus-partnership-section .section-title {
    margin-bottom: 15px;
}

.altus-partnership-section .section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-info {
    text-align: left;
}

.partnership-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 40px;
    text-align: justify;
}

.partnership-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(247, 175, 16, 0.15);
    background: rgba(247, 175, 16, 0.02);
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
}

.partnership-highlight {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 45px 35px;
    border-radius: 20px;
    margin-bottom: 35px;
    box-shadow: 0 15px 35px rgba(247, 175, 16, 0.25);
    width: 100%;
    max-width: 280px;
}

.highlight-box h3 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1;
}

.highlight-box p {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 500;
}

.highlight-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
    text-align: justify;
    max-width: 400px;
}

/* Principais Clientes Section */
.clients-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
    color: white;
    text-align: center;
}

.clients-section .section-title {
    color: white;
    margin-bottom: 20px;
}

.clients-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.client-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(247, 175, 16, 0.25);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 380px;
    text-align: left;
}

.client-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 50px rgba(247, 175, 16, 0.15);
    border-color: rgba(247, 175, 16, 0.4);
}

.client-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(247, 175, 16, 0.2);
}

.client-header h3 {
    color: var(--secondary-color);
    font-size: 1.9rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.client-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 8px 20px rgba(247, 175, 16, 0.3);
    flex-shrink: 0;
}

.client-content p {
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: linear-gradient(135deg, rgba(247, 175, 16, 0.25), rgba(247, 175, 16, 0.15));
    color: var(--secondary-color);
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(247, 175, 16, 0.4);
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, rgba(247, 175, 16, 0.35), rgba(247, 175, 16, 0.25));
    transform: scale(1.05);
}

.clients-footer {
    text-align: center;
    margin-top: 60px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(247, 175, 16, 0.15), rgba(247, 175, 16, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(247, 175, 16, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-text i {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.footer-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.footer-text i {
    margin-right: 15px;
    font-size: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(247, 175, 16, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(245, 145, 7, 0.08) 0%, transparent 50%);
}

.contact-content {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}



.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-100);
    position: relative;
    width: 100%;
    max-width: 600px;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.3rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--gray-100);
    color: var(--primary-color);
    box-shadow: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(38, 44, 56, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(247, 175, 16, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.6;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-links a {
    width: 55px;
    height: 55px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    font-size: 1.4rem;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
    }

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

    .nav-link {
        padding: 1.2rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--gray-200);
        width: 85%;
        margin: 0 auto;
        color: var(--primary-color);
    }

    .hero-container {
        text-align: center;
        padding: 2rem 20px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        min-width: 200px;
        text-align: center;
    }



    .about-content {
        padding: 0 20px;
        text-align: left;
    }

    .about-text {
        width: 100%;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: left;
    }

    .about-intro {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .about-intro p {
        font-size: 1rem;
    }

    .about-experience {
        padding: 1rem;
        text-align: left;
    }



    .services-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Áreas de Atuação - Mobile */
    .areas-section {
        padding: 50px 0;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
        padding: 0 20px;
    }

    .area-card {
        padding: 30px 20px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .area-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .area-card h3 {
        font-size: 1.3rem;
    }
    
    .area-card p {
        font-size: 0.95rem;
    }

    /* Especialistas em Lavanderias - Mobile */
    .laundry-experts-section {
        padding: 50px 0;
    }
    
    .laundry-experts-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .laundry-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 35px;
    }

    .laundry-img {
        height: 280px;
    }
    
    .laundry-features {
        gap: 20px;
    }

    .feature-item {
        gap: 20px;
        padding: 18px;
        margin: 0 10px;
    }
    
    .feature-item:hover {
        transform: translateX(5px);
    }

    .feature-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .feature-text h4 {
        font-size: 1.15rem;
        line-height: 1.4;
    }

    /* Mobile styles for horizontal layout */
    .laundry-image-full {
        margin: 30px 0;
        padding: 0 20px;
    }

    .laundry-img-horizontal {
        max-width: 100%;
        height: auto;
    }

    .laundry-features-horizontal {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        padding: 0 20px;
    }

    .feature-item-horizontal {
        padding: 25px 15px;
    }

    .feature-item-horizontal .feature-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .feature-item-horizontal .feature-text h4 {
        font-size: 1.1rem;
    }

    .feature-item-horizontal .feature-text p {
        font-size: 0.9rem;
    }
    
    .feature-text p {
        font-size: 0.95rem;
    }
    
    .integration-info {
        margin-top: 40px;
        padding: 25px 20px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .integration-text {
        font-size: 1rem;
    }

    /* Parceria Altus - Mobile */
    .altus-partnership-section {
        padding: 60px 0;
    }
    
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .partnership-info {
        text-align: center;
        padding: 0 20px;
    }
    
    .partnership-description {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 35px;
    }
    
    .partnership-benefits {
        gap: 15px;
    }
    
    .benefit-item {
        padding: 15px 18px;
        margin: 0 10px;
    }
    
    .benefit-item:hover {
        transform: translateX(5px);
    }
    
    .benefit-item i {
        font-size: 1.3rem;
        width: 25px;
    }
    
    .benefit-item span {
        font-size: 0.95rem;
    }
    
    .partnership-highlight {
        padding: 0 20px;
    }

    .highlight-box {
        padding: 35px 25px;
        max-width: 250px;
        margin-bottom: 25px;
    }

    .highlight-box h3 {
        font-size: 2.8rem;
    }
    
    .highlight-box p {
        font-size: 1.2rem;
    }
    
    .highlight-text {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }

    /* Principais Clientes - Mobile */
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
        padding: 0 15px;
    }

    .client-card {
        padding: 30px 25px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .client-card:hover {
        transform: translateY(-5px);
    }

    .client-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .client-header h3 {
        font-size: 1.6rem;
    }

    .client-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .client-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .client-tags {
        gap: 8px;
    }
    
    .tag {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .clients-footer {
        margin-top: 40px;
        padding: 25px 20px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .footer-text {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-text i {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 2rem;
        max-width: 100%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }


    .service-card,
    .differential-card {
        margin: 0 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 80px;
}