/* ============================================
   TERMOS DE USO - AQUAFLEX
   Prefixo: tu-
   ============================================ */

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

:root {
    --tu-white: #fff;
    --tu-black: #010f34;
    --tu-heading: #010f34;
    --tu-body: #788094;
    --tu-accent: #ff5500;
    --tu-blue: #2693FF;
    --tu-green: #28a745;
    --tu-gray: #f5f7fa;
    --tu-border: #ecf1f5;
    --tu-heading-font: "Outfit", sans-serif;
    --tu-body-font: "DM Sans", sans-serif;
}

body {
    font-family: var(--tu-body-font);
    color: var(--tu-body);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.tu-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 40px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #010f34 0%, #1a237e 50%, #010f34 100%);
}

.tu-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tu-animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 85, 0, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(38, 147, 255, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: tu-gradient-move 15s ease infinite;
}

@keyframes tu-gradient-move {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tu-geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tu-shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: tu-shape-float 20s infinite ease-in-out;
}

.tu-shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.tu-shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation-delay: 2s;
}

.tu-shape-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 70%;
    border-radius: 41% 59% 36% 64% / 68% 51% 49% 32%;
    animation-delay: 4s;
}

.tu-shape-4 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 50%;
    border-radius: 50%;
    animation-delay: 1s;
}

@keyframes tu-shape-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
        opacity: 0.6;
    }
}

.tu-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.tu-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 50px;
    color: var(--tu-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.tu-hero-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.3);
}

.tu-hero-badge i {
    font-size: 20px;
    color: var(--tu-accent);
}

.tu-hero-title {
    font-family: var(--tu-heading-font);
    font-size: 62px;
    font-weight: 800;
    color: var(--tu-white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.tu-gradient-text {
    background: linear-gradient(135deg, var(--tu-accent) 0%, var(--tu-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.tu-hero-description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 45px;
    font-weight: 400;
}

.tu-hero-features {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.tu-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.tu-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--tu-accent);
}

.tu-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--tu-accent), var(--tu-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--tu-white);
}

.tu-feature-item span {
    color: var(--tu-white);
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.tu-intro-section {
    padding: 80px 0;
    background: var(--tu-white);
}

.tu-intro-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.05), rgba(38, 147, 255, 0.05));
    border: 2px solid var(--tu-border);
    border-radius: 25px;
    padding: 45px;
    position: relative;
    overflow: hidden;
}

.tu-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.1), transparent);
    border-radius: 50%;
}

.tu-intro-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--tu-accent), var(--tu-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--tu-white);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.3);
}

.tu-intro-content h2 {
    font-family: var(--tu-heading-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--tu-heading);
    margin-bottom: 20px;
}

.tu-intro-content p {
    color: var(--tu-body);
    line-height: 1.8;
    margin-bottom: 15px;
}

.tu-intro-content p:last-child {
    margin: 0;
}

.tu-intro-content strong {
    color: var(--tu-heading);
    font-weight: 600;
}

/* ============================================
   QUICK ACCESS
   ============================================ */

.tu-quick-access {
    padding: 80px 0;
    background: var(--tu-gray);
}

.tu-section-title {
    font-family: var(--tu-heading-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--tu-heading);
    text-align: center;
    margin-bottom: 60px;
}

.tu-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tu-quick-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--tu-white);
    border: 2px solid var(--tu-border);
    border-radius: 20px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tu-quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.tu-quick-card:hover::before {
    left: 100%;
}

.tu-quick-card:hover {
    transform: translateY(-5px);
    border-color: var(--tu-accent);
    box-shadow: 0 15px 50px rgba(255, 85, 0, 0.2);
}

.tu-quick-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--tu-accent), var(--tu-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tu-heading-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--tu-white);
}

.tu-quick-content {
    flex: 1;
}

.tu-quick-content h3 {
    font-family: var(--tu-heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--tu-heading);
    margin: 0 0 5px 0;
}

.tu-quick-content p {
    font-size: 14px;
    color: var(--tu-body);
    margin: 0;
}

.tu-quick-arrow {
    font-size: 18px;
    color: var(--tu-accent);
    transition: transform 0.3s ease;
}

.tu-quick-card:hover .tu-quick-arrow {
    transform: translateX(5px);
}

/* ============================================
   TERMS SECTIONS
   ============================================ */

.tu-terms-section {
    padding: 80px 0;
    background: var(--tu-white);
    scroll-margin-top: 80px;
}

.tu-terms-section:nth-child(even) {
    background: var(--tu-gray);
}

.tu-terms-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}

.tu-terms-badge {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--tu-accent), var(--tu-blue));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tu-heading-font);
    font-size: 28px;
    font-weight: 800;
    color: var(--tu-white);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.3);
}

.tu-terms-header h2 {
    font-family: var(--tu-heading-font);
    font-size: 38px;
    font-weight: 700;
    color: var(--tu-heading);
    margin: 0 0 8px 0;
}

.tu-terms-header p {
    color: var(--tu-body);
    margin: 0;
    font-size: 16px;
}

/* Terms Content Cards */
.tu-terms-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tu-terms-card {
    display: flex;
    gap: 25px;
    background: var(--tu-white);
    border: 2px solid var(--tu-border);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.tu-terms-card:hover {
    border-color: var(--tu-accent);
    box-shadow: 0 10px 40px rgba(255, 85, 0, 0.15);
    transform: translateX(5px);
}

.tu-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--tu-accent), var(--tu-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--tu-white);
}

.tu-card-body h3 {
    font-family: var(--tu-heading-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--tu-heading);
    margin: 0 0 15px 0;
}

.tu-card-body p {
    color: var(--tu-body);
    line-height: 1.8;
    margin-bottom: 15px;
}

.tu-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tu-card-body li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    color: var(--tu-body);
    line-height: 1.7;
}

.tu-card-body li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--tu-accent);
}

.tu-card-body strong {
    color: var(--tu-heading);
    font-weight: 600;
}

/* ============================================
   SERVICES GRID
   ============================================ */

.tu-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.tu-service-card {
    background: var(--tu-white);
    border: 2px solid var(--tu-border);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
}

.tu-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--tu-blue);
    box-shadow: 0 15px 50px rgba(38, 147, 255, 0.2);
}

.tu-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--tu-blue), var(--tu-accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--tu-white);
    transition: transform 0.4s ease;
}

.tu-service-card:hover .tu-service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.tu-service-card h3 {
    font-family: var(--tu-heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--tu-heading);
    margin: 0 0 12px 0;
}

.tu-service-card p {
    color: var(--tu-body);
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

.tu-service-note {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, rgba(38, 147, 255, 0.05), rgba(255, 85, 0, 0.05));
    border-left: 4px solid var(--tu-blue);
    padding: 30px;
    border-radius: 15px;
}

.tu-note-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--tu-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--tu-white);
}

.tu-note-content h4 {
    font-family: var(--tu-heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--tu-heading);
    margin: 0 0 15px 0;
}

.tu-note-content p {
    color: var(--tu-body);
    line-height: 1.8;
    margin-bottom: 10px;
}

.tu-note-content p:last-child {
    margin: 0;
}

.tu-note-content strong {
    color: var(--tu-heading);
    font-weight: 600;
}

/* ============================================
   RESPONSIBILITIES
   ============================================ */

.tu-responsibility-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.tu-responsibility-column {
    background: var(--tu-white);
    border: 2px solid var(--tu-border);
    border-radius: 20px;
    overflow: hidden;
}

.tu-responsibility-header {
    padding: 25px;
    color: var(--tu-white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.tu-user-header {
    background: linear-gradient(135deg, var(--tu-blue), #1565c0);
}

.tu-company-header {
    background: linear-gradient(135deg, var(--tu-accent), #d84315);
}

.tu-responsibility-header i {
    font-size: 28px;
}

.tu-responsibility-header h3 {
    font-family: var(--tu-heading-font);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.tu-responsibility-list {
    padding: 25px;
}

.tu-responsibility-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--tu-border);
}

.tu-responsibility-item:last-child {
    border-bottom: none;
}

.tu-responsibility-item i {
    font-size: 18px;
    color: var(--tu-green);
    margin-top: 2px;
}

.tu-responsibility-item p {
    color: var(--tu-body);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.tu-process-timeline {
    position: relative;
    padding: 40px 0;
}

.tu-process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--tu-accent), var(--tu-blue));
}

.tu-process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 40px;
}

.tu-process-step:last-child {
    margin-bottom: 0;
}

.tu-step-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tu-accent), var(--tu-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tu-heading-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--tu-white);
    box-shadow: 0 5px 20px rgba(255, 85, 0, 0.4);
}

.tu-step-content {
    background: var(--tu-white);
    border: 2px solid var(--tu-border);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.tu-step-content:hover {
    border-color: var(--tu-accent);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.15);
    transform: translateX(5px);
}

.tu-step-content h3 {
    font-family: var(--tu-heading-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--tu-heading);
    margin: 0 0 10px 0;
}

.tu-step-content p {
    color: var(--tu-body);
    line-height: 1.7;
    margin: 0;
}

.tu-orcamento-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tu-orcamento-card {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.05), rgba(38, 147, 255, 0.05));
    border: 2px solid var(--tu-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.tu-orcamento-card:hover {
    border-color: var(--tu-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.15);
}

.tu-orcamento-card i {
    font-size: 40px;
    color: var(--tu-accent);
    margin-bottom: 15px;
}

.tu-orcamento-card h4 {
    font-family: var(--tu-heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--tu-heading);
    margin: 0 0 12px 0;
}

.tu-orcamento-card p {
    color: var(--tu-body);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   GARANTIAS
   ============================================ */

.tu-garantia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tu-garantia-positive,
.tu-garantia-negative {
    background: var(--tu-white);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--tu-border);
}

.tu-garantia-header {
    padding: 25px;
    color: var(--tu-white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.tu-garantia-positive .tu-garantia-header {
    background: linear-gradient(135deg, var(--tu-green), #1e8e3e);
}

.tu-garantia-negative .tu-garantia-header {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.tu-garantia-header i {
    font-size: 28px;
}

.tu-garantia-header h3 {
    font-family: var(--tu-heading-font);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.tu-garantia-list {
    padding: 25px;
    list-style: none;
    margin: 0;
}

.tu-garantia-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: var(--tu-body);
    line-height: 1.7;
}

.tu-garantia-list li:last-child {
    margin-bottom: 0;
}

.tu-garantia-positive .tu-garantia-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--tu-green);
}

.tu-garantia-negative .tu-garantia-list li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #dc3545;
}

.tu-garantia-alert {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 25px;
    border-radius: 15px;
}

.tu-garantia-alert i {
    font-size: 28px;
    color: #ffc107;
    margin-top: 2px;
}

.tu-garantia-alert h4 {
    font-family: var(--tu-heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--tu-heading);
    margin: 0 0 10px 0;
}

.tu-garantia-alert p {
    color: var(--tu-body);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   INTELLECTUAL PROPERTY
   ============================================ */

.tu-ip-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.tu-ip-card {
    background: var(--tu-white);
    border: 2px solid var(--tu-border);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
}

.tu-ip-card:hover {
    transform: translateY(-8px);
    border-color: var(--tu-accent);
    box-shadow: 0 15px 50px rgba(255, 85, 0, 0.2);
}

.tu-ip-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--tu-accent), var(--tu-blue));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--tu-white);
    transition: transform 0.4s ease;
}

.tu-ip-card:hover .tu-ip-icon {
    transform: scale(1.1) rotate(5deg);
}

.tu-ip-card h3 {
    font-family: var(--tu-heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--tu-heading);
    margin: 0 0 15px 0;
}

.tu-ip-card p {
    color: var(--tu-body);
    line-height: 1.8;
    margin: 0;
}

.tu-ip-card strong {
    color: var(--tu-heading);
}

/* ============================================
   ADDITIONAL SECTION
   ============================================ */

.tu-additional-section {
    padding: 80px 0;
    background: var(--tu-white);
}

.tu-additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.tu-additional-card {
    background: var(--tu-white);
    border: 2px solid var(--tu-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.tu-additional-card:hover {
    border-color: var(--tu-blue);
    box-shadow: 0 10px 40px rgba(38, 147, 255, 0.15);
    transform: translateY(-5px);
}

.tu-additional-card h3 {
    font-family: var(--tu-heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--tu-heading);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tu-additional-card h3 i {
    color: var(--tu-accent);
}

.tu-additional-card p {
    color: var(--tu-body);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   COMPANY SECTION
   ============================================ */

.tu-company-section {
    padding: 80px 0;
    background: var(--tu-gray);
}

.tu-company-box {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    background: var(--tu-white);
    border: 2px solid var(--tu-border);
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tu-company-logo {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--tu-accent), var(--tu-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--tu-white);
}

.tu-company-info h3 {
    font-family: var(--tu-heading-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--tu-heading);
    margin: 0 0 25px 0;
}

.tu-company-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tu-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tu-detail-item strong {
    font-family: var(--tu-heading-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--tu-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tu-detail-item span {
    font-size: 16px;
    color: var(--tu-heading);
    font-weight: 500;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.tu-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--tu-heading) 0%, #1a237e 100%);
}

.tu-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 85, 0, 0.15) 0%, transparent 70%);
    animation: tu-pulse 10s ease-in-out infinite;
}

@keyframes tu-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.tu-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.tu-cta-icon {
    font-size: 60px;
    color: var(--tu-white);
    margin-bottom: 25px;
}

.tu-cta-content h2 {
    font-family: var(--tu-heading-font);
    font-size: 44px;
    font-weight: 800;
    color: var(--tu-white);
    margin: 0 0 20px 0;
}

.tu-cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tu-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tu-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--tu-heading-font);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.tu-btn:hover::before {
    left: 100%;
}

.tu-btn-whatsapp {
    background: var(--tu-green);
    color: var(--tu-white);
}

.tu-btn-whatsapp:hover {
    background: #22903d;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5);
    color: var(--tu-white);
}

.tu-btn-phone {
    background: var(--tu-white);
    color: var(--tu-heading);
}

.tu-btn-phone:hover {
    background: var(--tu-accent);
    color: var(--tu-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .tu-hero-title {
        font-size: 48px;
    }
    
    .tu-section-title {
        font-size: 36px;
    }
    
    .tu-terms-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tu-terms-header h2 {
        font-size: 32px;
    }
    
    .tu-responsibility-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tu-garantia-grid {
        grid-template-columns: 1fr;
    }
    
    .tu-company-box {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .tu-hero {
        min-height: auto;
        padding: 60px 0 40px 0;
    }
    
    .tu-hero-title {
        font-size: 38px;
    }
    
    .tu-hero-features {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .tu-intro-card {
        flex-direction: column;
        padding: 30px;
    }
    
    .tu-quick-grid {
        grid-template-columns: 1fr;
    }
    
    .tu-section-title {
        font-size: 30px;
    }
    
    .tu-terms-section {
        padding: 60px 0;
    }
    
    .tu-terms-header h2 {
        font-size: 28px;
    }
    
    .tu-terms-card {
        flex-direction: column;
        padding: 25px;
    }
    
    .tu-services-grid {
        grid-template-columns: 1fr;
    }
    
    .tu-service-note {
        flex-direction: column;
    }
    
    .tu-process-timeline::before {
        left: 15px;
    }
    
    .tu-process-step {
        padding-left: 70px;
    }
    
    .tu-step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .tu-orcamento-cards {
        grid-template-columns: 1fr;
    }
    
    .tu-ip-content {
        grid-template-columns: 1fr;
    }
    
    .tu-additional-grid {
        grid-template-columns: 1fr;
    }
    
    .tu-company-box {
        flex-direction: column;
        padding: 25px;
    }
    
    .tu-cta-section {
        padding: 80px 0;
    }
    
    .tu-cta-content h2 {
        font-size: 32px;
    }
    
    .tu-cta-buttons {
        flex-direction: column;
    }
    
    .tu-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tu-hero-title {
        font-size: 32px;
    }
    
    .tu-section-title {
        font-size: 26px;
    }
    
    .tu-terms-header h2 {
        font-size: 24px;
    }
    
    .tu-cta-content h2 {
        font-size: 28px;
    }
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--tu-accent), var(--tu-blue));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--tu-blue), var(--tu-accent));
}