:root {
    --primary: #1a73e8;
    --primary-light: #e8f0fe;
    --secondary: #34a853;
    --dark: #202124;
    --light: #f8f9fa;
    --gray: #5f6368;
    --border: #dadce0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: white;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3 {
    font-weight: 500;
    line-height: 1.2;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #1765cc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

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

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

/* Header */
header {
    background-color: white;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
   
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
}
.logotcw {
    background: url(../imagens/logo.webp) 50% no-repeat;
    background-size: cover;
    height: 75px;
    width: 75px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.9)), 
                url(../imagens/businesswoman.webp);
                    
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

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

.hero h1 {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 30px;
}
.hero strong {
    font-size: 1.250;
    color:#0000cc;
}
/* Feature Video Section */
.feature-video-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.feature-video-section:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-video {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-video iframe {
    width: 100%;
    height: 315px;
    border: none;
}

.feature-text h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color:#0000cc;
}

.feature-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.feature-text li {
    margin-bottom: 10px;
}


/* Image + Text Sections */
.image-text-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.feature-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-img {
    height: 180px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.feature-content {
    padding: 25px;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color:#0000cc;
}

.feature-content p {
    color: var(--gray);
}

/* Image + Text Sections */
.image-text-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.image-half, .text-half {
    flex: 1;
}
.text-half h2 {
    color:#0000cc;
}

.image-half img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
}


/* CTA Section */
.cta {
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.cta h2, .cta p {
    color: white;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .image-text-section {
        flex-direction: column;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    .feature-video-section {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .feature-video-section:nth-child(even) {
        flex-direction: column;
    }
    .feature-video iframe {
        height: 250px;
    }
}