/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 20% 50%, rgba(122, 14, 176, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(239, 0, 100, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 40% 80%, rgba(255, 103, 20, 0.06) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Igual às imagens */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 103, 20, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-logo {
    flex: 1;
}

.logo {
    height: 60px;
    width: auto;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: #ef0064;
}

.btn-login {
    padding: 8px 20px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #7a0eb0, #ef0064, #ff6714);
    background-clip: padding-box;
    border-radius: 20px;
    position: relative;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #7a0eb0, #ef0064, #ff6714);
    border-radius: 20px;
    z-index: -1;
}

.btn-login:hover {
    background: linear-gradient(135deg, #ef0064, #ff6714);
    color: #000 !important;
}

/* Hero Section - Slide 1 exato como na imagem */
.hero-slide {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #0d0015 0%, #000000 70%);
    display: flex;
    align-items: center;
    padding: 80px 0 0 0;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(122, 14, 176, 0.6) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(239, 0, 100, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(255, 103, 20, 0.3) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
}

.highlight-orange {
    background: linear-gradient(45deg, #ef0064, #ff6714);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-red {
    background: linear-gradient(45deg, #7a0eb0, #ef0064, #ff6714);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(122, 14, 176, 0.3);
}

.hero-details {
    margin-bottom: 40px;
}

.hero-details p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.btn-saiba-mais {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(45deg, #7a0eb0, #ef0064);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 15px rgba(122, 14, 176, 0.3);
}

.btn-saiba-mais:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(122, 14, 176, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.btn-cta-principal {
    display: inline-block;
    padding: 16px 35px;
    background: linear-gradient(135deg, #ff6714, #ef0064, #7a0eb0);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 20px rgba(255, 103, 20, 0.4);
    animation: pulse-cta 2s infinite;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.btn-cta-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 103, 20, 0.6);
    animation: none;
    background: linear-gradient(135deg, #ff6714, #ef0064, #7a0eb0);
}

@keyframes pulse-cta {
    0% { box-shadow: 0 5px 20px rgba(255, 103, 20, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(255, 103, 20, 0.7); }
    100% { box-shadow: 0 5px 20px rgba(255, 103, 20, 0.4); }
}

.hero-main-image {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Python Info Section - Slide 2 exato como na imagem */
.python-info-slide {
    background: linear-gradient(135deg, #000000 0%, #0d0015 30%, #000000 70%, #0d0015 100%);
    padding: 100px 0;
    position: relative;
}

.python-info-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(123, 44, 191, 0.2) 0%, transparent 50%);
}

.python-info-slide h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, #ff6714, #ef0064, #7a0eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ctp-inline-logo {
    height: 80px;
    width: auto;
    vertical-align: middle;
    margin-left: 20px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.python-description {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.python-description p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 60px auto;
    position: relative;
    z-index: 1;
}

.benefit {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6714;
}

.partners-section {
    position: relative;
    z-index: 1;
    margin-top: 80px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.partner-logo {
    background: transparent;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255, 103, 20, 0.2);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 103, 20, 0.5);
    box-shadow: 0 10px 25px rgba(255, 103, 20, 0.3);
}

.partner-img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.tech-showcase {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tech-showcase h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff6714, #ef0064, #7a0eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 15px;
    border: 2px solid rgba(255, 103, 20, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    border-color: rgba(255, 103, 20, 0.6);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 103, 20, 0.4);
}

.tech-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(255, 103, 20, 0.3));
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.tech-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6714;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Python do Zero Mod 1 - Slide 3 */
.python-zero-mod1 {
    background: linear-gradient(135deg, #000000 0%, #0d0015 20%, #000000 50%, #0d0015 80%, #000000 100%);
    padding: 100px 0;
    position: relative;
}

.python-zero-mod1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 103, 20, 0.2) 0%, transparent 50%);
}

.mod-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mod-header h2 {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
}

.mod-badge {
    background: linear-gradient(45deg, #7a0eb0, #ef0064);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: lowercase;
}

.mod-content {
    display: grid;
    grid-template-columns: 1fr auto 300px;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.mod-description p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.mod-description h3 {
    font-size: 1.4rem;
    color: #ff6714;
    margin: 20px 0 15px 0;
    font-weight: 700;
}

.course-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.course-features li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.duration-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 103, 20, 0.3);
    width: 300px;
    justify-self: end;
}

.duration-box h4 {
    font-size: 1.3rem;
    color: #ff6714;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.date-range {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.schedule {
    color: #ff6714;
    font-weight: 700;
    margin-bottom: 10px;
}

.time {
    color: #e0e0e0;
    margin-bottom: 20px;
}

.btn-ementa {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #7a0eb0, #ef0064);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-ementa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.4);
}

.python-logo-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.python-monitor {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(123, 44, 191, 0.3);
    text-align: center;
}

.python-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.programming-text {
    display: block;
    font-size: 1rem;
    color: #e0e0e0;
}

.guarantee-text {
    text-align: center;
    font-style: italic;
    color: #ff6714;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Python do Zero Mod 2 - Slide 4 */
.python-zero-mod2 {
    background: linear-gradient(135deg, #000000 0%, #0d0015 30%, #000000 70%, #0d0015 100%);
    padding: 100px 0;
    position: relative;
}

.python-zero-mod2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(123, 44, 191, 0.2) 0%, transparent 50%);
}

.mod2-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mod2-header h2 {
    font-size: 4rem;
    font-weight: 900;
    margin: 0;
}

.mod2-badge {
    background: linear-gradient(45deg, #7a0eb0, #ef0064);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.2rem;
}

.mod2-content {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.mod2-left p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.duration-box2 {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 103, 20, 0.3);
    width: 300px;
    margin-top: 20px;
}

.duration-box2 h4 {
    font-size: 1.2rem;
    color: #ff6714;
    margin-bottom: 15px;
    font-weight: 700;
}

.btn-ementa2 {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #7a0eb0, #ef0064, #ff6714);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.btn-ementa2::before {
    display: none;
}

.btn-ementa2:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(122, 14, 176, 0.4);
}

.spotify-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}

.phone-mockup {
    width: 180px;
    height: 380px;
    background: #000;
    border-radius: 25px;
    padding: 5px;
    border: 2px solid #333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.phone-2 {
    margin-top: 20px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #191414 0%, #121212 100%);
    border-radius: 20px;
    padding: 15px;
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.spotify-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.spotify-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: #1db954;
}

.now-playing-section {
    margin-bottom: 20px;
}

.now-playing-text {
    text-align: center;
    font-size: 0.7rem;
    color: #b3b3b3;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.playlist-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #1db954;
    justify-content: center;
}

.playlist-icon {
    color: #1db954;
}

.album-art-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.album-art {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.album-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #7b2cbf, #1db954);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.song-info {
    text-align: center;
}

.song-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.artist-name {
    font-size: 0.8rem;
    color: #b3b3b3;
}

.player-controls {
    margin-bottom: 15px;
}

.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.control-btn {
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;
}

.control-btn:hover {
    color: #1db954;
}

.play-btn {
    font-size: 1.5rem;
    color: #1db954;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: #404040;
    border-radius: 2px;
    margin-bottom: 8px;
    position: relative;
}

.progress-fill {
    width: 35%;
    height: 100%;
    background: #1db954;
    border-radius: 2px;
}

.time-stamps {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #b3b3b3;
}

.bottom-tabs {
    display: flex;
    justify-content: space-around;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #404040;
}

.tab {
    font-size: 0.7rem;
    color: #b3b3b3;
    padding: 5px;
    cursor: pointer;
}

.tab.active {
    color: #1db954;
}

/* Second phone - Playlist view */
.playlist-view {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.playlist-header {
    text-align: center;
    margin-bottom: 20px;
}

.playlist-cover {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1db954, #1ed760);
    border-radius: 8px;
    margin: 0 auto 10px auto;
}

.playlist-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.song-list {
    flex: 1;
}

.song-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 5px;
    border-radius: 5px;
    transition: background 0.2s;
}

.song-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.song-cover {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #ff6b35, #7b2cbf);
    border-radius: 4px;
}

.song-details {
    flex: 1;
}

.song-name {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 500;
}

.artist {
    font-size: 0.7rem;
    color: #b3b3b3;
}

.play-icon {
    color: #1db954;
    font-size: 0.8rem;
}

/* Features Section - Slide 5 */
.features-slide {
    background: linear-gradient(135deg, #000000 0%, #0d0015 20%, #000000 50%, #0d0015 80%, #000000 100%);
    padding: 100px 0;
    position: relative;
}

.features-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 103, 20, 0.15) 0%, transparent 50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: left;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 2px solid rgba(255, 103, 20, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 103, 20, 0.1);
    border-color: #ff6714;
}

.feature-icon {
    font-size: 2rem;
    color: #ff6714;
    margin-bottom: 20px;
    font-weight: bold;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

/* Salary Section - Slide 6 */
.salary-slide {
    background: linear-gradient(135deg, #000000 0%, #0d0015 30%, #000000 70%, #0d0015 100%);
    padding: 100px 0;
    position: relative;
}

.salary-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 103, 20, 0.2) 0%, transparent 50%);
}

.salary-slide h2 {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, #ff6714, #ef0064, #7a0eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.salary-content {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.salary-text p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.salary-text strong {
    color: #ff6714;
    font-size: 1.6rem;
    font-weight: 800;
}

.contact-info {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(123, 44, 191, 0.3);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info p {
    margin-bottom: 15px;
    color: #e0e0e0;
    line-height: 1.6;
}

.contact-info strong {
    color: #ff6714;
    font-weight: 700;
}

/* Registration Section - Slide 7 */
.registration-slide {
    background: linear-gradient(135deg, #000000 0%, #0d0015 20%, #000000 50%, #0d0015 80%, #000000 100%);
    padding: 100px 0;
    position: relative;
}

.registration-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(123, 44, 191, 0.2) 0%, transparent 50%);
}

.registration-slide h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, #ff6714, #ef0064, #7a0eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 103, 20, 0.3);
    position: relative;
    z-index: 1;
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ff6714;
    font-size: 1.1rem;
}

.form-field input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus {
    outline: none;
    border-color: #ff6714;
    background: rgba(255, 255, 255, 0.15);
}

.btn-enviar {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #7a0eb0, #ef0064, #ff6714);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-enviar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(122, 14, 176, 0.4);
}

.form-disclaimer {
    text-align: center;
    font-style: italic;
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Ementa Section - Slides 8 e 9 */
.ementa-slide {
    background: linear-gradient(135deg, #000000 0%, #0d0015 30%, #000000 70%, #0d0015 100%);
    padding: 100px 0;
    position: relative;
}

.ementa-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(123, 44, 191, 0.2) 0%, transparent 50%);
}

.ementa-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.ementa-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff6714, #ef0064, #7a0eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ementa-badge {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6714;
    margin-bottom: 30px;
    display: block;
}

.module-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mod-tab {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 103, 20, 0.3);
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mod-tab.active {
    background: linear-gradient(45deg, #7a0eb0, #ef0064);
    color: #fff;
    border-color: #7a0eb0;
}

.mod-tab:hover {
    background: rgba(122, 14, 176, 0.2);
    border-color: #7a0eb0;
}

.ementa-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ementa-content:not(.active) {
    display: none;
}

.aula-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border-left: 4px solid #ff6714;
    transition: all 0.3s ease;
}

.aula-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.aula-num {
    font-weight: 700;
    color: #ff6714;
    font-size: 1.1rem;
    min-width: 80px;
}

.aula-desc {
    line-height: 1.6;
    color: #e0e0e0;
}

/* Responsivo para Tablet */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .partners-section {
        margin-top: 40px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        padding: 30px 10px;
    }
    
    .partner-img {
        height: 50px;
    }
    
    .tech-logos {
        gap: 30px;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
    }
    
    .tech-img {
        width: 45px;
        height: 45px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .mod-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mod2-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mod-header,
    .mod2-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .mod-header h2,
    .mod2-header h2 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .phone-mockup {
        width: 160px;
        height: 320px;
    }
    
    .spotify-phones {
        justify-content: center;
        gap: 15px;
        flex-direction: row;
    }
    
    .phone-2 {
        margin-top: 0;
    }
    
    .duration-box,
    .duration-box2 {
        width: 100%;
        justify-self: center;
    }
    
    .module-selector {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .mod-tab {
        width: 150px;
        text-align: center;
    }
    
    .aula-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .aula-num {
        min-width: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .btn-cta-principal {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
    
    /* Novos responsivos */
    .benefits-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .python-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .python-header h2 {
        font-size: 2.5rem;
    }
    
    .mod2-tech-stack {
        flex-direction: column;
        gap: 15px;
    }
    
    .mod2-tech-item {
        min-width: auto;
    }
    
    .tech-logos-stack {
        padding: 20px;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .social-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}

/* Responsivo para Mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-details p {
        font-size: 1.1rem;
    }
    
    .python-info-slide h2,
    .salary-slide h2,
    .ementa-header h2 {
        font-size: 2rem;
    }
    
    .ctp-inline-logo {
        height: 60px;
    }
    
    .logo {
        height: 50px;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .registration-form {
        padding: 30px 20px;
    }
    
    .duration-box,
    .duration-box2 {
        padding: 20px 15px;
        width: 100%;
    }
    
    .python-monitor {
        padding: 25px 15px;
    }
    
    .phone-mockup {
        width: 130px;
        height: 260px;
        padding: 4px;
    }
    
    .phone-screen {
        padding: 12px;
    }
    
    .spotify-phones {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }
    
    .album-art {
        width: 60px;
        height: 60px;
    }
    
    .playlist-cover {
        width: 50px;
        height: 50px;
    }
    
    .contact-info {
        padding: 25px 15px;
    }
    
    .ementa-badge {
        font-size: 1.5rem;
    }
    
    .btn-cta-principal {
        font-size: 1rem;
        padding: 14px 25px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px 10px;
    }
    
    .partner-img {
        height: 40px;
    }
    
    .tech-showcase h3 {
        font-size: 1.4rem;
    }
    
    .tech-logos {
        gap: 20px;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
    }
    
    .tech-img {
        width: 35px;
        height: 35px;
    }
    
    .tech-item span {
        font-size: 0.9rem;
    }
    
    /* Novos responsivos mobile */
    .benefits-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 40px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .python-header h2 {
        font-size: 2rem;
    }
    
    .benefit {
        padding: 12px 15px;
        font-size: 1.1rem;
    }
    
    .check-icon {
        width: 25px;
        height: 25px;
    }
    
    .tech-logos-stack {
        padding: 20px 15px;
    }
    
    .tech-logo-img {
        width: 45px;
        height: 45px;
    }
    
    .mod2-tech-stack {
        gap: 10px;
    }
    
    .mod2-tech-item {
        padding: 15px;
        min-width: 100px;
    }
    
    .mod2-tech-img {
        width: 40px;
        height: 40px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        min-width: auto;
        justify-content: flex-start;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 30%, #000000 70%, #0a0a0a 100%);
    padding: 80px 0 0 0;
    position: relative;
    border-top: 2px solid rgba(255, 103, 20, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(122, 14, 176, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 103, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    background: linear-gradient(45deg, #ff6714, #ef0064, #7a0eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-title {
    font-size: 1rem !important;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 15px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.footer-section p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff6714;
    transform: translateX(5px);
}

.contact-details {
    margin-bottom: 80px;
}

.contact-details p {
    margin-bottom: 20px;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-details p:last-child {
    margin-bottom: 50px;
}

.contact-details span {
    flex-shrink: 0;
}

.contact-details a {
    color: #ff6714;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #ef0064;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 103, 20, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 103, 20, 0.1);
    border-color: rgba(255, 103, 20, 0.5);
    transform: translateY(-2px);
}

.whatsapp:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.1);
}

.instagram:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float-btn svg {
    width: 28px;
    height: 28px;
}

@keyframes whatsapp-pulse {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.8);
        transform: scale(1.05);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float-btn svg {
        width: 25px;
        height: 25px;
    }
}

.linkedin:hover {
    border-color: #0077b5;
    background: rgba(0, 119, 181, 0.1);
}

.btn-footer-cta {
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(45deg, #ff6714, #ef0064, #7a0eb0);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 103, 20, 0.4);
    animation: pulse-footer 3s infinite;
}

.btn-footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 103, 20, 0.6);
    animation: none;
}

@keyframes pulse-footer {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 103, 20, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(255, 103, 20, 0.7); }
}

.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ff6714 20%, #ef0064 50%, #7a0eb0 80%, transparent 100%);
    margin-bottom: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 0;
}

.footer-bottom-content p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.footer-partners {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-partners span {
    color: #b3b3b3;
    font-size: 0.9rem;
    white-space: nowrap;
}

.partner-mini-logos {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.partner-mini-logos img {
    height: 25px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(1.2);
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.partner-mini-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-partners {
        flex-direction: column;
        gap: 15px;
    }
    
    .partner-mini-logos {
        justify-content: center;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .social-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 60px 0 0 0;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .partner-mini-logos img {
        height: 20px;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        min-width: auto;
    }
}

/* Flask agora é PNG sem fundo - não precisa de tratamento especial */



/* Aumentar logo do CTP em outros lugares */
.footer-section h3 img {
    height: 70px;
    width: auto;
}

/* Remover o ::before que estava causando problemas */
.btn-cta-principal::before {
    display: none;
}

.cta-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 103, 20, 0.2);
}

/* Salary Section - Benefits Cards */
.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px 25px;
    border-radius: 20px;
    border: 2px solid rgba(255, 103, 20, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 103, 20, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 103, 20, 0.6);
    box-shadow: 0 15px 35px rgba(255, 103, 20, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6714;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon svg {
    color: #ff6714;
    filter: drop-shadow(0 2px 4px rgba(255, 103, 20, 0.3));
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6714, #ef0064, #7a0eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-card p {
    color: #e0e0e0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Python Header Melhorado */
.python-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.python-header h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin: 0;
    background: linear-gradient(45deg, #ff6714, #ef0064, #7a0eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    background: linear-gradient(45deg, #00ff88, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Benefits List Melhorado */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto 60px auto;
    position: relative;
    z-index: 1;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateX(10px);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-text {
    color: #e0e0e0;
}

/* Tech Logos Stack - Módulo 1 */
.tech-logos-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 2px solid rgba(123, 44, 191, 0.3);
}

.tech-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 103, 20, 0.2);
}

.tech-logo-item:hover {
    transform: scale(1.05);
    border-color: rgba(255, 103, 20, 0.6);
    box-shadow: 0 8px 25px rgba(255, 103, 20, 0.4);
}

.tech-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Mod2 Tech Stack */
.mod2-tech-stack {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.mod2-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 2px solid rgba(255, 103, 20, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.mod2-tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 103, 20, 0.6);
    box-shadow: 0 10px 25px rgba(255, 103, 20, 0.3);
}

.mod2-tech-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.mod2-tech-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6714;
    text-align: center;
}

/* Feature Cards Melhorados */
.feature-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 25px;
    border: 2px solid rgba(255, 103, 20, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 103, 20, 0.1), rgba(239, 0, 100, 0.1), rgba(122, 14, 176, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 103, 20, 0.6);
    box-shadow: 0 20px 40px rgba(255, 103, 20, 0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6714, #ef0064, #7a0eb0);
    border-radius: 50%;
    color: #fff;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6714, #ef0064, #7a0eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #b3b3b3;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Social Links com SVGs */
.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e0e0e0;
    text-decoration: none;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 103, 20, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-link:hover {
    background: rgba(255, 103, 20, 0.1);
    border-color: rgba(255, 103, 20, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.whatsapp:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.1);
}

.instagram:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
} 