:root {
    --texas-red: #BF0A30;
    --texas-blue: #002868;
    --texas-white: #FFFFFF;
    --texas-silver: #C0C0C0;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --success-green: #28a745;
    --warning-orange: #fd7e14;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--texas-white);
    overflow-x: hidden;
    position: relative;
}



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

/* Navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--texas-white);
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--texas-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--texas-red);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--texas-blue) 0%, var(--texas-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--texas-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-vision {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

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

.vision-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.vision-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

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

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

.btn-primary:hover {
    background: transparent;
    color: var(--texas-red);
    border-color: var(--texas-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--texas-white);
    border-color: var(--texas-white);
}

.btn-secondary:hover {
    background: var(--texas-white);
    color: var(--texas-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--texas-blue);
    border-color: var(--texas-blue);
}

.btn-outline:hover {
    background: var(--texas-blue);
    color: var(--texas-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--texas-blue);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--texas-red);
    border-radius: 2px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content h3 {
    color: var(--texas-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 2rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.certifications {
    margin-top: 2rem;
}

.certifications h4 {
    color: var(--texas-blue);
    margin-bottom: 1rem;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    background: var(--texas-red);
    color: var(--texas-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.leadership-card {
    background: var(--texas-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--texas-red);
}

.leadership-card h4 {
    color: var(--texas-blue);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--texas-white);
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: var(--texas-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--texas-red);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--texas-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.3rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--texas-red);
    font-weight: bold;
}

/* Sectors Section */
.sectors-section {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    z-index: 1;
}

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

.sector-card {
    background: var(--texas-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.sector-card:hover {
    transform: translateY(-5px);
}

.sector-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.sector-card h3 {
    color: var(--texas-blue);
    margin-bottom: 1rem;
}

.sector-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sector-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.sector-features span {
    background: var(--texas-blue);
    color: var(--texas-white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Training Section */
.training-section {
    padding: 100px 0;
    background: var(--texas-white);
    position: relative;
    z-index: 1;
}

.training-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.training-info h3 {
    color: var(--texas-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.training-info p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.training-feature {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--texas-red);
}

.training-feature h4 {
    color: var(--texas-blue);
    margin-bottom: 0.5rem;
}

.training-feature p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

.training-goals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.goal-item {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 5px solid var(--texas-blue);
}

.goal-item h4 {
    color: var(--texas-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.goal-item p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    z-index: 1;
}

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

.impact-card {
    background: var(--texas-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-card h3 {
    color: var(--texas-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--texas-blue);
    color: var(--texas-white);
    position: relative;
    z-index: 1;
}

.contact-section .section-title {
    color: var(--texas-white);
}

.contact-section .section-title::after {
    background: var(--texas-red);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--texas-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-method p {
    margin: 0;
    opacity: 0.8;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--texas-white);
    box-shadow: 0 0 0 3px rgba(191, 10, 48, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--texas-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 h4 {
    color: var(--texas-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-section li {
    padding: 0.3rem 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section li:hover {
    opacity: 1;
    color: var(--texas-red);
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-vision {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid,
    .contact-content,
    .training-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .sectors-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .training-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

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

.service-card,
.sector-card,
.impact-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Texas Map Watermark - Versão Melhorada */
.texas-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    width: 80vw;
    max-width: 900px;
    height: 70vh;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 700"><path d="M200 350 L280 280 L380 250 L480 240 L580 245 L680 260 L780 290 L850 340 L890 400 L900 470 L885 540 L850 600 L800 650 L730 680 L650 700 L570 710 L490 715 L410 710 L330 690 L260 650 L210 590 L180 520 L175 450 L185 380 Z" fill="%23BF0A30" opacity="0.08" stroke="%23BF0A30" stroke-width="3"/><text x="500" y="450" font-family="Arial, sans-serif" font-size="60" font-weight="bold" fill="%23BF0A30" opacity="0.15" text-anchor="middle">TEXAS</text></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    animation: texasPulse 15s ease-in-out infinite;
}

@keyframes texasPulse {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(-8deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) rotate(-5deg) scale(1.1);
        opacity: 1;
    }
}

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

/* Navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--texas-white);
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--texas-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--texas-red);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--texas-blue) 0%, var(--texas-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--texas-white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-vision {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

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

.vision-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.vision-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

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

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

.btn-primary:hover {
    background: transparent;
    color: var(--texas-red);
    border-color: var(--texas-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--texas-white);
    border-color: var(--texas-white);
}

.btn-secondary:hover {
    background: var(--texas-white);
    color: var(--texas-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--texas-blue);
    border-color: var(--texas-blue);
}

.btn-outline:hover {
    background: var(--texas-blue);
    color: var(--texas-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--texas-blue);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--texas-red);
    border-radius: 2px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content h3 {
    color: var(--texas-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 2rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.certifications {
    margin-top: 2rem;
}

.certifications h4 {
    color: var(--texas-blue);
    margin-bottom: 1rem;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    background: var(--texas-red);
    color: var(--texas-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.leadership-card {
    background: var(--texas-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--texas-red);
}

.leadership-card h4 {
    color: var(--texas-blue);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--texas-white);
}

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

.service-card {
    background: var(--texas-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--texas-red);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--texas-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.3rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--texas-red);
    font-weight: bold;
}

/* Sectors Section */
.sectors-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.sector-card {
    background: var(--texas-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.sector-card:hover {
    transform: translateY(-5px);
}

.sector-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.sector-card h3 {
    color: var(--texas-blue);
    margin-bottom: 1rem;
}

.sector-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sector-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.sector-features span {
    background: var(--texas-blue);
    color: var(--texas-white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Training Section */
.training-section {
    padding: 100px 0;
    background: var(--texas-white);
}

.training-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.training-info h3 {
    color: var(--texas-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.training-info p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.training-feature {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--texas-red);
}

.training-feature h4 {
    color: var(--texas-blue);
    margin-bottom: 0.5rem;
}

.training-feature p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

.training-goals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.goal-item {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 5px solid var(--texas-blue);
}

.goal-item h4 {
    color: var(--texas-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.goal-item p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.impact-card {
    background: var(--texas-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-card h3 {
    color: var(--texas-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--texas-blue);
    color: var(--texas-white);
}

.contact-section .section-title {
    color: var(--texas-white);
}

.contact-section .section-title::after {
    background: var(--texas-red);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--texas-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-method p {
    margin: 0;
    opacity: 0.8;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--texas-white);
    box-shadow: 0 0 0 3px rgba(191, 10, 48, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--texas-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 h4 {
    color: var(--texas-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-section li {
    padding: 0.3rem 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--texas-white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 800"><path d="M200 350 L280 280 L380 250 L480 240 L580 245 L680 260 L780 290 L850 340 L890 400 L900 470 L885 540 L850 600 L800 650 L730 680 L650 700 L570 710 L490 715 L410 710 L330 690 L260 650 L210 590 L180 520 L175 450 L185 380 Z" fill="%23BF0A30" opacity="0.06"/></svg>');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70vw 70vh;
    pointer-events: none;
    z-index: 0;
}


/* Ensure all main content is above the watermark */
.hero-section,
.about-section,
.services-section,
.sectors-section,
#particles,
nav.fixed-nav {
    position: relative;
    z-index: 1;
}

/* 
Developer: Leandro Meyer Dal Cortivo
Role: Technical and Business Director (Founder)
Purpose: Informational site for a planned U.S. enterprise (not operational)
Contact: info@techhelpconsulting.com
*/

/* --- Compliance / Legal Notice Overrides --- */
.notice-banner{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1100;
  background:#fff7e6;
  color:#5c3800;
  border-bottom:1px solid #f0d3a6;
  padding:10px 16px;
  font-size:0.95rem;
  line-height:1.4;
  text-align:center;
}
.notice-banner strong{
  text-transform:uppercase;
  letter-spacing:0.02em;
  margin-right:0.35rem;
}

/* Push the fixed nav below the banner */
.fixed-nav{ top:48px !important; }

/* Ensure hero content isn't hidden behind fixed elements */
.hero-section{ padding-top:40px; }

/* Subtle hero disclaimer */
.hero-disclaimer{
  font-size:0.95rem;
  opacity:0.95;
  margin: -0.25rem auto 1.2rem;
  padding:10px 14px;
  background:rgba(255,255,255,0.12);
  border-left:3px solid rgba(0,0,0,0.15);
  border-radius:6px;
}

/* --- Print Styles --- */
@media print{
  @page{ margin:16mm; }
  html, body{ background:#ffffff !important; color:#000 !important; }
  *{ text-shadow:none !important; box-shadow:none !important; }

  .notice-banner{
    position:static !important;
    background:#ffffff !important;
    color:#000 !important;
    border:2px solid #000 !important;
    margin-bottom:8mm;
    padding:8px 12px;
    text-align:left;
  }

  /* Hide decorative/interactive elements */
  #particles,
  .fixed-nav,
  .hero-vision,
  .hero-buttons,
  .contact-form,
  .contact-methods{ display:none !important; }

  .hero-section{
    background:#ffffff !important;
    color:#000 !important;
    min-height:auto !important;
    padding:0 !important;
  }
  .hero-title, .hero-subtitle, .hero-disclaimer{ color:#000 !important; text-shadow:none !important; }

  .service-card,
  .sector-card,
  .impact-card,
  .leadership-card,
  .training-feature{ border:1px solid #000 !important; }

  .section-title{ color:#000 !important; }
  .btn{ border:1px solid #000 !important; background:none !important; color:#000 !important; }

  a[href^="http"]:after{ content:" (" attr(href) ")"; font-size:0.9em; }
}
